/* ─────────────────────────────────────────────
   Design System — Mobile-first
   Font: Inter · Primary: var(--color-primary) · Secondary: var(--color-primary-dark) · Accent: var(--color-accent)
   ───────────────────────────────────────────── */

/* === Theme Variables (overridden via inline :root in base.php) === */
:root {
    --color-primary: #2563EB;
    --color-primary-dark: #1E40AF;
    --color-primary-darker: #1d4ed8;
    --color-primary-light: #eff6ff;
    --color-primary-medium: #dbeafe;
    --color-primary-soft: #93c5fd;
    --color-primary-softer: #bfdbfe;
    --color-primary-vivid: #60a5fa;
    --color-primary-rgb: 37, 99, 235;
    --color-accent: #F59E0B;
    --color-accent-dark: #d97706;
    --color-accent-warm: #fbbf24;
    --color-accent-light: #fef3c7;
    --color-accent-deep: #92400e;
    --color-accent-rgb: 245, 158, 11;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
}

h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb),0.3);
}

.btn--accent {
    background-color: var(--color-accent);
    color: #1e293b;
}

.btn--accent:hover {
    background-color: var(--color-accent-dark);
    color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--color-accent-rgb),0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn--block {
    width: 100%;
}

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header--scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 800;
    font-size: 1.125rem;
    color: #0f172a;
    text-decoration: none;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.header__logo:hover {
    color: #0f172a;
}
.header__logo:hover .header__logo-icon {
    transform: scale(1.05);
}
.header__logo:hover .header__logo-accent {
    color: var(--color-primary-dark);
}

.header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--color-primary);
    border-radius: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s;
}

.header__logo-accent {
    color: var(--color-primary);
    transition: color 0.2s;
}

.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    gap: 1.5rem;
}

.header__nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s ease;
}

.header__nav-link:hover {
    color: var(--color-primary);
}

.header__actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.header__phone:hover {
    color: var(--color-primary-dark);
}

.header__phone-icon {
    font-size: 1rem;
}

.header__cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Hamburger */
.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.header__hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.header__nav.is-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
    padding: 2rem 1rem;
}

.header__nav.is-open .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.header__nav.is-open .header__nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid #e2e8f0;
}

/* === Hero === */
/* Hero background image (shared by .hero and .hero--home) */
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(30, 58, 95, 0.75) 100%);
    z-index: 0;
}

.hero {
    background: #0f172a;
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero__proof {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: rgba(254, 243, 199, 0.95);
    color: var(--color-accent-deep);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    max-width: 100%;
}

.hero__proof-star {
    color: var(--color-accent);
}

.hero__phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary-soft);
    font-size: 0.9375rem;
}

.hero__phone-link:hover {
    color: var(--color-primary-softer);
}

.hero__info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-primary-soft);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.hero__info-link:hover {
    color: var(--color-primary-softer);
}

/* === Section === */
.section {
    padding: 3rem 0;
}

.section--gray {
    background-color: #f8fafc;
}

.section__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #0f172a;
}

.section__subtitle {
    text-align: center;
    color: #64748b;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.section__intro {
    text-align: center;
    color: #475569;
    max-width: 720px;
    margin: -1rem auto 2rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* === Grids === */
.grid {
    display: grid;
    gap: 1rem;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

/* === Cards === */
.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card__emoji {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.card__desc {
    font-size: 0.875rem;
    color: #64748b;
}

.card__meta {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Region/Department/City Cards */
.region-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.region-card__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.region-card__content {
    min-width: 0;
}

.region-card__name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9375rem;
}

.region-card__count {
    font-size: 0.8125rem;
    color: #64748b;
}

/* === Cities List (collapsible) === */
.cities-list {
    position: relative;
}
.cities-list.is-collapsed {
    max-height: 680px;
    overflow: hidden;
}
.cities-list__fade {
    display: none;
}
.cities-list.is-collapsed .cities-list__fade {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

/* === Business Card === */
.biz-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.biz-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.biz-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.biz-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}

.biz-card__name a {
    color: #0f172a;
    text-decoration: none;
}

.biz-card__name a:hover {
    color: var(--color-primary);
}

.biz-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    flex-shrink: 0;
}

.biz-card__rating-star {
    color: var(--color-accent);
}

.biz-card__review-count {
    font-size: 0.85em;
    color: #666;
    font-weight: 400;
}

.biz-card__address {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.biz-card__distance {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-primary, #7c3aed);
    font-weight: 500;
}

.biz-card__hours {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.biz-card__status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
}

.biz-card__status--open {
    background-color: #dcfce7;
    color: #166534;
}

.biz-card__status--closed {
    background-color: #fee2e2;
    color: #991b1b;
}

.biz-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge--artisan {
    background-color: var(--color-primary-medium);
    color: var(--color-primary-dark);
}

.badge--garantie {
    background-color: #dcfce7;
    color: #166534;
}

.badge--showroom {
    background-color: var(--color-accent-light);
    color: var(--color-accent-deep);
}

.badge--franchise {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.badge--rge {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge--devis {
    background-color: #fef3c7;
    color: #92400e;
}

.badge--urgence {
    background-color: #fee2e2;
    color: #991b1b;
}

.biz-card__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.biz-card__fiche-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
}

.biz-card__fiche-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.biz-card__utils {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.biz-card__util {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s ease;
}

.biz-card__util:hover {
    color: var(--color-primary);
}

/* === Services Grid === */
.services-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-link:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.service-link--active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    pointer-events: none;
}

.service-link--active:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.service-link__emoji {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* === Service Page — Departments & Cities === */
.service-dept {
    margin-bottom: 1.5rem;
}
.service-dept__title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.service-dept__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.service-dept__title a:hover {
    color: var(--color-primary);
}
.service-dept__cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
}
.service-dept__city {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-dept__city-cp {
    color: #94a3b8;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.service-dept__city:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}
.service-dept__city:hover .service-dept__city-cp {
    color: rgba(255, 255, 255, 0.7);
}

/* === Search Location (Service Pages) === */
.search-location-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.search-location {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-location__wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 3rem;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-location__wrap:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.search-location__icon {
    flex-shrink: 0;
    color: #94a3b8;
    width: 20px;
    height: 20px;
}

.search-location__input {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
}

.search-location__input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-location__input:focus {
    outline: none;
}

.search-location__btn {
    flex-shrink: 0;
    border-radius: 2rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

.search-location__dropdown {
    position: absolute;
    top: calc(100% + 0.375rem);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    padding: 0.375rem;
}

.search-location__dropdown[hidden] {
    display: none;
}

/* === Region Accordion (Service Pages) === */
.region-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.region-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.region-accordion__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.15s ease;
}

.region-accordion__header::-webkit-details-marker {
    display: none;
}

.region-accordion__header:hover {
    background-color: #f8fafc;
}

.region-accordion__title {
    flex: 1;
    min-width: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.region-accordion__badges {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.region-accordion__badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.625rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.region-accordion__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.region-accordion__chevron::before {
    content: '▶';
}

.region-accordion[open] > .region-accordion__header .region-accordion__chevron {
    transform: rotate(90deg);
}

.region-accordion__body {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 639px) {
    .region-accordion__header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .region-accordion__title {
        flex-basis: calc(100% - 2.5rem);
        font-size: 1rem;
    }
    .region-accordion__chevron {
        margin-left: auto;
    }
    .region-accordion__badges {
        flex-basis: 100%;
    }
}

/* === Department Accordion (inside Region) === */
.dept-accordion {
    border: 1px solid #f1f5f9;
    border-radius: 0.5rem;
    overflow: hidden;
}

.dept-accordion__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.15s ease;
}

.dept-accordion__header::-webkit-details-marker {
    display: none;
}

.dept-accordion__header:hover {
    background-color: #f8fafc;
}

.dept-accordion__title {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.dept-accordion__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.dept-accordion__title a:hover {
    color: var(--color-primary);
}

.dept-accordion__badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #94a3b8;
    background: #f8fafc;
    padding: 0.1875rem 0.5rem;
    border-radius: 2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.dept-accordion__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.625rem;
    color: #cbd5e1;
    transition: transform 0.2s ease;
}

.dept-accordion__chevron::before {
    content: '▶';
}

.dept-accordion[open] > .dept-accordion__header .dept-accordion__chevron {
    transform: rotate(90deg);
}

.dept-accordion > .service-dept__cities {
    padding: 0.5rem 1rem 1rem;
}

/* === FAQ Accordion === */
.faq-list {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--color-primary);
}

.faq-item__answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
}

/* === Reassurance === */
.reassurance {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.reassurance__item {
    padding: 1.5rem;
}

.reassurance__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.reassurance__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.375rem;
}

.reassurance__text {
    font-size: 0.875rem;
    color: #64748b;
}

/* === Home Devis Section === */
.home-devis {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.home-devis__desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.home-devis__points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-devis__point {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #334155;
    font-weight: 500;
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 1rem 0;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb__item::before {
    content: '›';
    color: #cbd5e1;
}

.breadcrumb__item:first-child::before {
    content: '';
}

.breadcrumb__link {
    color: #64748b;
}

.breadcrumb__link:hover {
    color: var(--color-primary);
}

.breadcrumb__current {
    color: #0f172a;
    font-weight: 500;
}

/* === Service Intro (legacy) === */
.service-intro {
    background: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    color: #1e293b;
    line-height: 1.7;
}

/* === City About === */
.city-about {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 2rem 1.5rem;
    overflow: hidden;
}

.city-about__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.city-about__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.75rem;
}

.city-about__why {
    background: var(--color-primary-light);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.city-about__why-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.city-about__why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

.city-about__why-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1e293b;
}

.city-about__why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.city-about__why-icon--green { background: #dcfce7; }
.city-about__why-icon--primary { background: var(--color-primary-light); }
.city-about__why-icon--accent { background: #fff7ed; }
.city-about__why-icon--warning { background: #fef9c3; }

.city-about__steps {
    margin-top: 1.75rem;
}

.city-about__steps-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.city-about__steps .steps {
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .city-about {
        padding: 2.5rem 2.25rem;
    }

    .city-about__why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .city-about__why {
        padding: 1.5rem 1.75rem;
    }
}

/* === Hero Split Layout === */
.hero__split {
    display: grid;
    gap: 1.5rem;
}

.hero__content {
    text-align: center;
}

.hero__form {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__meta-item strong {
    color: #ffffff;
}

.hero__meta-icon {
    flex-shrink: 0;
}

.hero__reassurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero__reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

.hero__reassurance-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.hero__form-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.125rem;
    text-align: center;
}

.hero__form-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    text-align: center;
}

.hero__form-iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 0.5rem;
}

.hero__form-redirect {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* === CTA Sticky === */
.cta-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.cta-sticky__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    flex: 1;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.cta-sticky__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.75rem;
    background: var(--color-primary);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    text-decoration: none;
}

.cta-sticky__btn:hover {
    background: var(--color-primary-dark);
    color: #ffffff;
}

/* === Footer === */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    margin-bottom: 60px; /* Space for CTA sticky on mobile */
}

.footer__grid {
    display: grid;
    gap: 2rem;
}

.footer__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer__text {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #ffffff;
}

.footer__network {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.8125rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.footer__network-label {
    color: #64748b;
    margin-right: 0.25rem;
}
.footer__network a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer__network a:hover {
    color: #e2e8f0;
}
.footer__network-sep {
    color: #475569;
}
.footer__network + .footer__bottom {
    border-top: none;
    margin-top: 1rem;
    padding-top: 0;
}
.footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}

/* === 404 Page === */
.page-404 {
    text-align: center;
    padding: 4rem 0;
}

.page-404__title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.page-404__text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* === Business Detail Page === */
.biz-hero__badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.biz-hero__badges .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.biz-detail {
    display: grid;
    gap: 2rem;
}

.biz-detail__desc {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.biz-detail__info {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.biz-detail__info-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.biz-detail__info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.biz-detail__info-item strong {
    display: block;
    font-size: 0.8125rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.125rem;
}

.biz-detail__info-item p {
    font-size: 0.9375rem;
    color: #1e293b;
    margin: 0;
}

.biz-detail__cta-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.biz-detail__cta-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.biz-detail__cta-box p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.biz-detail__map {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* === Nearby Cities Links (maillage interne) === */
.nearby-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.nearby-links__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nearby-links__item::before {
    content: '→';
    color: #94a3b8;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.nearby-links__item:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    transform: translateX(4px);
}

.nearby-links__item:hover::before {
    color: var(--color-primary);
}

.nearby-links__distance {
    margin-left: auto;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #94a3b8;
    flex-shrink: 0;
}

/* === Legal Pages === */
.legal-content {
    padding: 2rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

/* ─────────────────────────────────────────────
   Tablet Breakpoint (768px)
   ───────────────────────────────────────────── */
@media (min-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero__split {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 2rem;
    }

    .hero__content {
        text-align: left;
        padding-top: 1rem;
    }

    .hero__reassurance {
        gap: 0.5rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero--business .biz-hero__badges {
        justify-content: flex-start;
    }

    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }

    .reassurance {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nearby-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-accordion__title {
        font-size: 1.25rem;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero -- Home (tablet) */
    .hero--home {
        padding: 7rem 0 7rem;
    }

    .hero--home__proof {
        font-size: 0.8125rem;
        padding: 0.5rem 1.125rem;
        margin-bottom: 1.5rem;
    }

    .hero--home__title {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero--home__title br {
        display: inline;
    }

    .hero--home__subtitle {
        font-size: 1.1875rem;
        margin-bottom: 2.5rem;
        max-width: 620px;
    }

    .hero--home__subtitle br {
        display: inline;
    }

    .hero--home__stats {
        margin-top: 2rem;
        gap: 2rem;
    }

    .hero--home__stat {
        font-size: 0.8125rem;
    }

    /* Search bar — horizontal pill on tablet+ */
    .search-bar {
        padding: 0.375rem;
        border-radius: 4rem;
        max-width: 720px;
    }

    .search-bar__fields {
        flex-direction: row;
        align-items: center;
    }

    .search-bar__field--service {
        flex: 1;
        min-width: 0;
    }

    .search-bar__field--service .search-bar__input-wrap {
        border-bottom: none;
        border-radius: 3rem;
        padding: 0.875rem 1.125rem;
        border-right: none;
    }

    .search-bar__divider {
        display: block;
        width: 1px;
        height: 1.75rem;
        background: rgba(255, 255, 255, 0.15);
        flex-shrink: 0;
    }

    .search-bar__field--location {
        flex: 1;
        min-width: 0;
    }

    .search-bar__field--location .search-bar__input-wrap {
        border-bottom: none;
        border-radius: 3rem;
        padding: 0.875rem 1rem;
    }

    .search-bar__input {
        font-size: 0.9375rem;
    }

    .search-bar__submit {
        width: auto;
        flex-shrink: 0;
        margin-top: 0;
        border-radius: 3rem;
        padding: 0.875rem 1.125rem;
    }

    .search-bar__submit-text {
        display: none;
    }

    .search-bar__dropdown {
        left: 0;
        right: 0;
        margin-top: 0.5rem;
    }

    .search-bar__dropdown--service {
        min-width: 300px;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

}

/* ─────────────────────────────────────────────
   Desktop Breakpoint (1024px)
   ───────────────────────────────────────────── */
@media (min-width: 1024px) {
    h1 { font-size: 2.75rem; }

    .home-devis {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .biz-detail {
        grid-template-columns: 1fr 320px;
    }

    .biz-detail__sidebar {
        position: sticky;
        top: 80px;
        align-self: start;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero__split {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.1875rem;
    }

    .hero__form {
        padding: 1.5rem;
    }

    /* Header desktop */
    .header__nav {
        display: flex;
    }

    .header__actions {
        display: flex;
    }

    .header__hamburger {
        display: none;
    }

    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Hide CTA sticky on desktop */
    .cta-sticky {
        display: none;
    }

    .footer {
        margin-bottom: 0;
    }

    /* Hero -- Home (desktop) */
    .hero--home {
        padding: 9rem 0 8.5rem;
    }

    .hero--home__inner {
        max-width: 900px;
    }

    .hero--home__proof {
        margin-bottom: 1.75rem;
        font-size: 0.875rem;
    }

    .hero--home__title {
        font-size: 5rem;
        letter-spacing: -0.035em;
        margin-bottom: 1.75rem;
        line-height: 1.08;
    }

    .hero--home__subtitle {
        font-size: 1.3125rem;
        max-width: 660px;
        margin-bottom: 3rem;
    }

    .hero--home__stats {
        margin-top: 2.25rem;
        gap: 2.5rem;
    }

    .hero--home__stat {
        font-size: 0.9375rem;
    }

    .search-bar {
        max-width: 800px;
        padding: 0.375rem 0.375rem 0.375rem 0.625rem;
    }

    .search-bar__field--service .search-bar__input-wrap,
    .search-bar__field--location .search-bar__input-wrap {
        padding: 1rem 1.25rem;
    }

    .search-bar__input {
        font-size: 1rem;
    }

    .search-bar__submit {
        padding: 1rem 2rem;
    }

    .search-bar__submit-text {
        display: inline;
    }

    .search-bar__dropdown--service {
        min-width: 340px;
    }

    .search-bar__dropdown--location {
        min-width: 380px;
    }
}

/* === Hero — Homepage Search Hub === */
.hero--home {
    background: #0f172a;
    padding: 6rem 0 5.5rem;
    position: relative;
    overflow: visible;
    text-align: center;
    z-index: 1;
}

.hero--home .hero__overlay {
    background: linear-gradient(170deg, rgba(5, 14, 31, 0.8) 0%, rgba(11, 26, 56, 0.75) 40%, rgba(26, 74, 138, 0.7) 70%, rgba(var(--color-primary-rgb),0.65) 100%);
}

.hero--home::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero--home__inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Social proof badge — above title */
.hero--home__proof {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.01em;
}

.hero--home__proof-star {
    color: var(--color-accent-warm);
    font-size: 0.875rem;
}

/* Title */
.hero--home__title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--color-primary-rgb),0.25);
}

.hero--home__title br {
    display: none;
}

.hero--home__title-accent {
    background: linear-gradient(135deg, var(--color-primary-vivid) 0%, #38bdf8 50%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero--home__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 560px;
}

.hero--home__subtitle br {
    display: none;
}

/* Stats row below search */
.hero--home__stats {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero--home__stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero--home__stat-icon {
    font-size: 0.875rem;
}

/* ============================
   Search Bar — Glassmorphism
   ============================ */
.search-bar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
    border-radius: 1rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem;
    width: 100%;
    max-width: 100%;
}

.search-bar__fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.search-bar__field {
    position: relative;
}

.search-bar__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.search-bar__divider {
    display: none;
}

/* Remove bottom border from last input-wrap before submit */
.search-bar__field--location .search-bar__input-wrap {
    border-bottom: none;
}

/* Icon shared style */
.search-bar__icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 20px;
}

/* Input wrap (shared by service + location) */
.search-bar__input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.15s ease;
    border-radius: 0;
}

.search-bar__input-wrap:focus-within {
    background: rgba(255, 255, 255, 0.08);
}

.search-bar__input {
    flex: 1;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.search-bar__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.search-bar__input:focus {
    outline: none;
}

/* Submit button */
.search-bar__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    font-family: inherit;
    cursor: pointer;
    background: var(--color-primary);
    color: #ffffff;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(var(--color-primary-rgb),0.4);
}

.search-bar__submit:hover {
    background: var(--color-primary-darker);
}

.search-bar__submit:active {
    background: var(--color-primary-dark);
    transform: scale(0.99);
}

.search-bar__submit-icon {
    flex-shrink: 0;
}

.search-bar__submit-text {
    display: inline;
}

/* ============================
   Search Dropdowns
   ============================ */
.search-bar__dropdown {
    position: absolute;
    top: calc(100%);
    left: -0.5rem;
    right: -0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    padding: 0.375rem;
    margin-top: 0.375rem;
}

.search-bar__dropdown[hidden] {
    display: none;
}

.search-bar__group-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.625rem 0.25rem;
}

.search-bar__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #1e293b;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.search-bar__option:hover,
.search-bar__option--active {
    background-color: #f1f5f9;
}

.search-bar__option--selected {
    background-color: var(--color-primary-light);
    font-weight: 600;
}

.search-bar__option--reset {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.25rem;
    padding-bottom: 0.625rem;
}

.search-bar__option-emoji {
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

.search-bar__option-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.search-bar__option-name {
    display: block;
    font-weight: 500;
}

.search-bar__option-meta {
    display: block;
    font-size: 0.6875rem;
    color: #94a3b8;
    margin-top: 0.0625rem;
}

.search-bar__option-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    flex-shrink: 0;
}

.search-bar__option-badge--city {
    background: var(--color-primary-medium);
    color: var(--color-primary-dark);
}

.search-bar__option-badge--dept {
    background: #dcfce7;
    color: #166534;
}

.search-bar__option-badge--region {
    background: var(--color-accent-light);
    color: var(--color-accent-deep);
}

.search-bar__no-results {
    padding: 1rem 0.625rem;
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* === Steps (Comment ça marche) === */
.steps {
    display: grid;
    gap: 1.25rem;
    text-align: center;
    counter-reset: step;
}

.steps__item {
    padding: 2rem 1.25rem 1.75rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
    position: relative;
}

.steps__item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
    transform: translateY(-3px);
}

.steps__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb),0.3);
}

.steps__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.steps__text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
}

/* === Utility === */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.4s ease both;
}

/* === Hero Compact (Expertises, Zones) === */
.hero--compact {
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.hero--compact .hero__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero--compact .hero__subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero--compact .hero__intro {
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* === Card Horizontal (Expertises services) === */
.card--horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
}

.card__emoji--large {
    font-size: 2.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 1;
}

.card--horizontal .card__body {
    flex: 1;
    min-width: 0;
}

.card--horizontal .card__title {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.card--horizontal .card__desc {
    margin-bottom: 0.75rem;
}

.card__cta {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.card--horizontal:hover .card__cta {
    color: var(--color-primary-dark);
}

/* === 404 Page === */
.page-404 {
    text-align: center;
    padding: 3rem 0;
}

.page-404__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-404__text {
    color: #64748b;
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero--compact {
        padding: 4rem 0 3rem;
    }

    .hero--compact .hero__title {
        font-size: 2.5rem;
    }

    .page-404__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero--compact .hero__title {
        font-size: 2.75rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
