/* ============================================
   EMERIC TAXI — Design System v2.0
   Refonte SiteForge Pro — moderne-minimaliste
   Palette : bleu #0f3460, accent #e94560
   Typo : Plus Jakarta Sans
   Mobile-first, WCAG AA, 320–1920px
   ============================================ */

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Couleurs */
    --profond: #071a33;
    --base: #0f3460;
    --clair: #1a5296;
    --pale: #e8f0fe;
    --accent: #e94560;
    --accent-dark: #c73a52;
    --accent-light: #ff6b81;
    --creme: #f5f7fa;
    --blanc: #ffffff;
    --noir: #0a0e17;
    --gris-50: #f8f9fb;
    --gris-100: #f1f3f6;
    --gris-200: #e2e6ec;
    --gris-300: #d1d5dc;
    --gris-400: #9ca3af;
    --gris-500: #6b7280;
    --gris-600: #4b5563;
    --gris-700: #374151;
    --gris-800: #1f2937;
    --gris-900: #111827;

    /* Ombres */
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,.1), 0 4px 10px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
    --shadow-accent: 0 4px 15px rgba(233,69,96,.3);

    /* Rayons */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
    --duration: .3s;
    --duration-slow: .5s;

    /* Tailles */
    --header-h: 72px;
    --container: 1200px;
    --container-sm: 800px;
    --container-lg: 1400px;
}

/* --- BASE --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gris-800);
    background: var(--blanc);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--base); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

::selection {
    background: var(--base);
    color: var(--blanc);
}

/* --- CONTAINER --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--sm { max-width: var(--container-sm); }
.container--lg { max-width: var(--container-lg); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--noir);
    letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

.section__label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    margin-bottom: .75rem;
}

.section__label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section__title {
    margin-bottom: 1rem;
}

.section__intro {
    font-size: 1.1rem;
    color: var(--gris-600);
    max-width: 700px;
    line-height: 1.8;
}

.section__intro--center {
    text-align: center;
    margin: 0 auto 3rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg { flex-shrink: 0; }

.btn--primary {
    background: var(--accent);
    color: var(--blanc);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--blanc);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--base);
    color: var(--blanc);
    border-color: var(--base);
}
.btn--secondary:hover {
    background: var(--profond);
    border-color: var(--profond);
    color: var(--blanc);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--blanc);
    border-color: rgba(255,255,255,.4);
}
.btn--outline:hover {
    background: var(--blanc);
    color: var(--base);
    border-color: var(--blanc);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--base);
    border-color: var(--base);
}
.btn--outline-dark:hover {
    background: var(--base);
    color: var(--blanc);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn--sm {
    padding: .5rem 1.25rem;
    font-size: .85rem;
}

.btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 10000;
    transition: none;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    transition: all var(--duration) var(--ease);
    background: transparent;
}

.header--scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    z-index: 9991;
}

.header__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-weight: 800;
    font-size: .9rem;
}

.header__logo-text {
    font-size: 1.25rem;
    color: var(--blanc);
    font-weight: 300;
    letter-spacing: -.01em;
    transition: color var(--duration) var(--ease);
}
.header__logo-text strong {
    font-weight: 800;
}

.header--scrolled .header__logo-text { color: var(--noir); }

/* Nav */
.nav { display: flex; align-items: center; }

.nav__list {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav__link {
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}
.nav__link:hover,
.nav__link--active {
    color: var(--blanc);
    background: rgba(255,255,255,.12);
}

.header--scrolled .nav__link { color: var(--gris-700); }
.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
    color: var(--base);
    background: var(--pale);
}

/* Header CTA */
.header__cta {
    padding: .6rem 1.5rem;
    font-size: .85rem;
}

.header__phone {
    display: none;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    color: rgba(255,255,255,.9);
    transition: color var(--duration) var(--ease);
}
.header--scrolled .header__phone { color: var(--base); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 9991;
    padding: 10px;
    transition: all var(--duration) var(--ease);
}

.hamburger:hover,
.hamburger:focus-visible {
    background: rgba(255,255,255,.25);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--blanc);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.header--scrolled .hamburger {
    background: var(--gris-100);
    border-color: var(--gris-200);
}
.header--scrolled .hamburger:hover { background: var(--gris-200); }
.header--scrolled .hamburger span { background: var(--noir); }

.hamburger--active {
    background: rgba(255,255,255,.2) !important;
    border-color: rgba(255,255,255,.3) !important;
}
.hamburger--active span { background: var(--blanc) !important; }
.hamburger--active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger--active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--profond);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.35);
}

/* Hero with logo instead of photo */
.hero__bg--logo {
    background: linear-gradient(135deg, var(--profond) 0%, var(--base) 40%, #163d6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg--logo .hero__logo-img {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 0 40px rgba(255,255,255,.15));
    opacity: .2;
}

@media (max-width: 767px) {
    .hero__bg--logo .hero__logo-img {
        width: 180px;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,26,51,.85) 0%, rgba(15,52,96,.6) 50%, rgba(7,26,51,.8) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 8rem 0 4rem;
    max-width: 750px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: rgba(233,69,96,.15);
    border: 1px solid rgba(233,69,96,.3);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,69,96,.2); }
    50% { box-shadow: 0 0 0 8px rgba(233,69,96,0); }
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero h1 {
    color: var(--blanc);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero h1 span { color: var(--accent-light); }

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blanc);
    line-height: 1;
    margin-bottom: .25rem;
}

.hero__stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    animation: scrollBounce 2s ease infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- MARQUEE --- */
.marquee {
    overflow: hidden;
    background: var(--base);
    padding: 1rem 0;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 0 2rem;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.marquee__dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- SECTIONS --- */
.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--gris-50);
}

.section--dark {
    background: var(--profond);
    color: var(--blanc);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--blanc); }
.section--dark .section__intro { color: rgba(255,255,255,.6); }
.section--dark .section__label { color: var(--accent-light); }

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__header .section__intro {
    margin: 1rem auto 0;
}

/* --- SERVICES GRID --- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gris-200);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__number {
    font-size: .75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: .05em;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--duration) var(--ease);
    color: var(--base);
}

.service-card:hover .service-card__icon {
    background: var(--base);
    color: var(--blanc);
}

.service-card h3 {
    margin-bottom: .75rem;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--gris-600);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--duration) var(--ease);
}
.service-card__link:hover { gap: .6rem; color: var(--accent-dark); }

/* --- ABOUT TEASER --- */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-teaser__img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.about-teaser__img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}

.about-teaser__img:hover img {
    transform: scale(1.03);
}

.about-teaser__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: var(--blanc);
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: var(--shadow-lg);
}

.about-teaser__qualities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.quality {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    background: var(--gris-50);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
}
.quality:hover { background: var(--pale); }

.quality__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--base);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality__text {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gris-800);
}

/* --- MÉTHODE / STEPS --- */
.method__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--gris-300);
}
.step:last-child::after { display: none; }

.step__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--base);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--duration) var(--ease);
}

.step:hover .step__number {
    background: var(--base);
    color: var(--blanc);
    transform: scale(1.1);
}

.step h3 { margin-bottom: .5rem; font-size: 1rem; }
.step p { font-size: .88rem; color: var(--gris-600); }

/* --- CHIFFRES CLÉS (Stats) --- */
.stats {
    padding: 5rem 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
}

.stat__number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--blanc);
    line-height: 1;
    margin-bottom: .5rem;
}

.stat__label {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}

.stat__divider {
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin: .75rem auto 0;
    border-radius: 2px;
}

/* --- TÉMOIGNAGES --- */
.testimonials__slider {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonials__track {
    display: flex;
    transition: transform .5s var(--ease);
}

.testimonial {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial__card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial__stars {
    display: flex;
    gap: .25rem;
    margin-bottom: 1.25rem;
    color: #f59e0b;
}

.testimonial__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gris-700);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
}

.testimonial__name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--noir);
}

.testimonial__location {
    font-size: .8rem;
    color: var(--gris-500);
}

.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem;
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gris-300);
    background: var(--blanc);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
    color: var(--gris-600);
}
.testimonials__btn:hover {
    border-color: var(--base);
    color: var(--base);
    background: var(--pale);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gris-300);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}
.testimonials__dot--active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* --- ZONE INTERVENTION --- */
.zone__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.zone__map-wrapper {
    background: var(--gris-50);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    border: 1px solid var(--gris-200);
}

.zone__map-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.zone__pulse {
    position: absolute;
    top: 45%;
    left: 48%;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    animation: zonePulse 2s ease infinite;
}

@keyframes zonePulse {
    0% { box-shadow: 0 0 0 0 rgba(233,69,96,.5); }
    100% { box-shadow: 0 0 0 30px rgba(233,69,96,0); }
}

.zone__cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.zone__city {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .75rem;
    font-size: .88rem;
    color: var(--gris-700);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}
.zone__city:hover {
    background: var(--pale);
    color: var(--base);
}

.zone__city-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.zone__city--main {
    font-weight: 700;
    color: var(--base);
}

/* --- GARANTIES BANDEAU --- */
.guarantees {
    background: var(--blanc);
    padding: 3rem 0;
    border-top: 1px solid var(--gris-200);
    border-bottom: 1px solid var(--gris-200);
}

.guarantees__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--gris-700);
}

.guarantee__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- CTA FINAL --- */
.cta-final {
    background: var(--accent);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.cta-final__content {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: var(--blanc);
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn--outline {
    border-color: var(--blanc);
    color: var(--blanc);
}
.cta-final .btn--outline:hover {
    background: var(--blanc);
    color: var(--accent);
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- CPAM SECTION --- */
.cpam__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

.cpam__text h3 {
    margin: 1.75rem 0 .75rem;
    color: var(--base);
}

.cpam__text p {
    color: var(--gris-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cpam__text ol,
.cpam__text ul {
    padding-left: 0;
    margin-bottom: 1.25rem;
}

.cpam__text ol { counter-reset: cpam; }
.cpam__text ol li {
    counter-increment: cpam;
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    line-height: 1.7;
    color: var(--gris-700);
}
.cpam__text ol li::before {
    content: counter(cpam);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--base);
    font-weight: 700;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .15rem;
}

.cpam__text ul li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .5rem;
    color: var(--gris-700);
    line-height: 1.7;
}
.cpam__text ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
}

.cpam__images {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cpam__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cpam__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cpam__badges img {
    border-radius: var(--radius);
    background: var(--blanc);
    padding: .5rem;
    box-shadow: var(--shadow-sm);
}

/* --- FORMULAIRE --- */
.form {
    max-width: 750px;
    margin: 2rem auto 0;
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form__group--full { grid-column: 1 / -1; }

.form__label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gris-700);
    margin-bottom: .4rem;
}

.form__input {
    width: 100%;
    padding: .85rem 1rem;
    font-family: inherit;
    font-size: .95rem;
    border: 1px solid var(--gris-300);
    border-radius: var(--radius);
    background: var(--blanc);
    color: var(--gris-900);
    transition: all var(--duration) var(--ease);
    outline: none;
}
.form__input:focus {
    border-color: var(--base);
    box-shadow: 0 0 0 3px rgba(15,52,96,.1);
}
.form__input::placeholder { color: var(--gris-400); }

.form__textarea { resize: vertical; min-height: 100px; }

.form__submit {
    width: 100%;
}

/* Form success */
.form--success {
    text-align: center;
    padding: 3rem;
    animation: fadeScale .5s var(--ease-bounce);
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
}

.form__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #10b981;
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* --- FOOTER --- */
.footer {
    background: var(--profond);
    color: rgba(255,255,255,.7);
    padding-top: 4rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {
    padding-right: 2rem;
}

.footer__logo-text {
    font-size: 1.3rem;
    color: var(--blanc);
    font-weight: 300;
    display: block;
    margin-bottom: .75rem;
}
.footer__logo-text strong { font-weight: 800; }

.footer__brand p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer__social {
    display: flex;
    gap: .5rem;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--duration) var(--ease);
}
.footer__social a:hover {
    background: var(--accent);
    color: var(--blanc);
}

.footer h4 {
    color: var(--blanc);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer__links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: all var(--duration) var(--ease);
}
.footer__links a:hover { color: var(--blanc); padding-left: 4px; }

.footer__contact a,
.footer__contact p {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    margin-bottom: .5rem;
    transition: color var(--duration) var(--ease);
}
.footer__contact a:hover { color: var(--blanc); }

/* Footer bottom */
.footer__bottom {
    padding: 1.5rem 0;
}

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.footer__bottom p,
.footer__bottom a {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}
.footer__bottom a:hover { color: rgba(255,255,255,.8); }

/* --- FLOATING ELEMENTS --- */
/* Sticky Call Mobile */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--blanc);
    padding: .85rem;
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    z-index: 900;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    z-index: 800;
    box-shadow: 0 4px 15px rgba(37,211,102,.4);
    transition: all var(--duration) var(--ease);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,.5);
    color: var(--blanc);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blanc);
    padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--duration) var(--ease);
    border-top: 2px solid var(--gris-200);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: .88rem;
    color: var(--gris-600);
    flex: 1;
    min-width: 250px;
}
.cookie-banner p a { text-decoration: underline; }

.cookie-banner__actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
}

/* --- BREADCRUMB --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--gris-500);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--gris-500); }
.breadcrumb a:hover { color: var(--base); }
.breadcrumb__sep { color: var(--gris-400); }

/* --- PAGE HERO (sub-pages) --- */
.page-hero {
    background: var(--profond);
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--blanc));
}

.page-hero h1 {
    color: var(--blanc);
    margin-bottom: .75rem;
}

.page-hero .section__intro {
    color: rgba(255,255,255,.65);
}

/* --- FAQ --- */
.faq__list {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.faq__item {
    border-bottom: 1px solid var(--gris-200);
}

.faq__question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gris-800);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--duration) var(--ease);
}
.faq__question:hover { color: var(--base); }

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--duration) var(--ease);
}

.faq__item--open .faq__icon { transform: rotate(45deg); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease);
}

.faq__answer p {
    padding-bottom: 1.25rem;
    color: var(--gris-600);
    line-height: 1.8;
    font-size: .95rem;
}

/* --- BLOG CARDS --- */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gris-200);
    transition: all var(--duration) var(--ease);
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card__img {
    height: 200px;
    overflow: hidden;
}
.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__body { padding: 1.5rem; }

.blog-card__tag {
    display: inline-block;
    padding: .2rem .6rem;
    background: var(--pale);
    color: var(--base);
    font-size: .72rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
}

.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card p { font-size: .88rem; color: var(--gris-600); line-height: 1.7; }

/* --- SERVICE DETAIL PAGE --- */
.service-detail__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.service-detail__sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.sidebar-card {
    background: var(--gris-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gris-200);
}

.sidebar-card h4 { margin-bottom: 1rem; }

.sidebar-card .btn { width: 100%; margin-bottom: .75rem; }

.service-detail__content h2 { margin: 2rem 0 1rem; color: var(--base); font-size: 1.5rem; }
.service-detail__content h3 { margin: 1.5rem 0 .75rem; }
.service-detail__content p { margin-bottom: 1rem; color: var(--gris-700); line-height: 1.8; }

.service-detail__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: var(--gris-50);
    border-radius: var(--radius);
}

.feature__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .8rem;
}

/* --- CONTACT PAGE --- */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact__card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gris-200);
    transition: all var(--duration) var(--ease);
}
.contact__card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact__card h3 { margin-bottom: .5rem; font-size: 1rem; }

.contact__link {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--base);
    display: block;
    margin-bottom: .25rem;
}

/* --- MENTIONS / LEGAL --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.legal-content h2 { margin: 2.5rem 0 1rem; color: var(--base); font-size: 1.4rem; }
.legal-content h3 { margin: 1.5rem 0 .75rem; }
.legal-content p { margin-bottom: 1rem; color: var(--gris-700); line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: .5rem; color: var(--gris-700); list-style: disc; }

/* --- 404 PAGE --- */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.page-404__code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--gris-200);
    line-height: 1;
}

.page-404 h1 {
    font-size: 1.75rem;
    margin: 1rem 0;
}

.page-404 p {
    color: var(--gris-600);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SITEMAP PAGE --- */
.sitemap__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.sitemap__column h3 {
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--accent);
    font-size: 1rem;
}

.sitemap__column ul { display: flex; flex-direction: column; gap: .5rem; }
.sitemap__column a {
    font-size: .92rem;
    color: var(--gris-600);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.sitemap__column a:hover { color: var(--base); }
.sitemap__column a::before {
    content: '→';
    color: var(--accent);
    font-size: .8rem;
}

/* --- ANIMATIONS --- */
/* Fade In */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.fade-in--d1 { transition-delay: .1s; }
.fade-in--d2 { transition-delay: .2s; }
.fade-in--d3 { transition-delay: .3s; }
.fade-in--d4 { transition-delay: .4s; }
.fade-in--d5 { transition-delay: .5s; }
.fade-in--d6 { transition-delay: .6s; }

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(.9);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.scale-in--visible {
    opacity: 1;
    transform: scale(1);
}

/* --- CITY PAGES --- */
.city-content h2 {
    font-size: 1.5rem;
    color: var(--base);
    margin-bottom: 1rem;
}

.city-content p {
    color: var(--gris-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.services-grid .service-card {
    text-decoration: none;
    color: inherit;
}

/* Breadcrumb section (sub-pages) */
.breadcrumb-section {
    padding-top: calc(var(--header-h) + 1rem);
    background: var(--profond);
}

.breadcrumb-section .breadcrumb {
    color: rgba(255,255,255,.5);
}
.breadcrumb-section .breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb-section .breadcrumb a:hover { color: rgba(255,255,255,.8); }

/* --- RESPONSIVE --- */

/* >= 768px */
@media (min-width: 768px) {
    .header__phone { display: flex; }
}

/* < 1024px */
@media (max-width: 1023px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-teaser__img img { height: 300px; }
    .method__grid { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .zone__content { grid-template-columns: 1fr; }
    .cpam__content { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .service-detail__grid { grid-template-columns: 1fr; }
    .service-detail__sidebar { position: static; }
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__grid { grid-template-columns: 1fr; }
    .sitemap__columns { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* < 768px : Mobile */
@media (max-width: 767px) {
    :root { --header-h: 64px; }

    .container { padding: 0 1rem; }
    .section { padding: 3.5rem 0; }

    /* Nav mobile overlay */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(160deg, var(--profond) 0%, var(--base) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .4s var(--ease), visibility .4s var(--ease);
        z-index: 9990;
    }
    .nav--open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav__list {
        flex-direction: column;
        gap: .25rem;
        width: 100%;
        max-width: 320px;
        padding: 0 1.5rem;
    }

    .nav__link {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem 1.5rem;
        color: rgba(255,255,255,.85);
        border-radius: var(--radius);
        text-align: center;
        letter-spacing: -.01em;
        transition: all var(--duration) var(--ease);
    }
    .nav__link:hover,
    .nav__link--active {
        color: var(--blanc);
        background: rgba(255,255,255,.12);
    }

    /* Mobile nav CTA */
    .nav::after {
        content: '07 63 65 84 27';
        display: block;
        margin-top: 1.5rem;
        padding: .75rem 2rem;
        background: var(--accent);
        color: var(--blanc);
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: var(--radius-full);
        text-align: center;
        letter-spacing: .02em;
    }

    .hamburger { display: flex; z-index: 9991; }
    .header__logo { z-index: 9991; }
    .nav--open ~ .header__cta { display: none; }

    .header__phone { display: none; }
    .header__cta--desktop { display: none; }

    /* Hero mobile */
    .hero { min-height: 85vh; }
    .hero__content { padding: 5.5rem 0 2.5rem; }
    .hero__badge { font-size: .7rem; padding: .35rem .75rem; margin-bottom: 1rem; }
    .hero__subtitle { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
    .hero__stats { gap: 1.25rem; flex-wrap: wrap; padding-top: 1.5rem; }
    .hero__stat-number { font-size: 1.4rem; }
    .hero__stat-label { font-size: .7rem; }
    .hero__scroll { display: none; }

    /* Page hero (sub-pages) */
    .page-hero { padding: 6rem 0 2rem; }
    .page-hero h1 { font-size: 1.5rem; line-height: 1.25; }
    .page-hero .hero__subtitle,
    .page-hero .section__intro { font-size: .95rem; }
    .page-hero .hero__badge { margin-bottom: .75rem; }

    /* Breadcrumb */
    .breadcrumb { font-size: .75rem; gap: .35rem; padding: .75rem 0; }
    .breadcrumb-section { padding-top: calc(var(--header-h) + .5rem); }

    /* Section headers */
    .section__header { margin-bottom: 2rem; }
    .section__label { font-size: .7rem; margin-bottom: .5rem; }
    .section__label::before { width: 20px; }
    .section__intro { font-size: .95rem; line-height: 1.7; }
    .section__title { font-size: 1.4rem; }

    /* Marquee */
    .marquee { padding: .75rem 0; }
    .marquee__item { font-size: .75rem; padding: 0 1.25rem; }

    /* Grids — all single column */
    .services__grid { grid-template-columns: 1fr; gap: 1rem; }
    .method__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer__brand { padding-right: 0; }
    .form__grid { grid-template-columns: 1fr; }
    .about-teaser__qualities { grid-template-columns: 1fr; }
    .zone__cities { grid-template-columns: 1fr; }
    .zone__content { gap: 2rem; }
    .cpam__content { gap: 2rem; }
    .cpam__badges { grid-template-columns: 1fr; }
    .service-detail__features { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .sitemap__columns { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; gap: 1rem; }

    /* Service cards mobile */
    .service-card { padding: 1.5rem; }
    .service-card__number { font-size: .7rem; margin-bottom: .75rem; }
    .service-card__icon { width: 42px; height: 42px; margin-bottom: 1rem; }
    .service-card h3 { font-size: 1rem; }
    .service-card p { font-size: .88rem; margin-bottom: 1rem; }

    /* About teaser */
    .about-teaser { gap: 2rem; }
    .about-teaser__img img { height: 220px; border-radius: var(--radius-lg); }
    .about-teaser__badge { bottom: 1rem; left: 1rem; padding: .5rem 1rem; font-size: .8rem; }
    .quality { padding: .6rem; }
    .quality__icon { width: 32px; height: 32px; }
    .quality__text { font-size: .8rem; }

    /* Steps / Méthode */
    .step { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
    .step::after { display: none; }
    .step__number { width: 48px; height: 48px; font-size: 1rem; flex-shrink: 0; margin: 0; }
    .step h3 { font-size: .95rem; margin-bottom: .25rem; }
    .step p { font-size: .85rem; }

    /* Stats */
    .stats { padding: 3rem 0; }
    .stat { padding: 1.25rem .5rem; }
    .stat__number { font-size: 2rem; }
    .stat__label { font-size: .75rem; }

    /* Testimonials */
    .testimonial__card { padding: 1.5rem; }
    .testimonial__text { font-size: .92rem; line-height: 1.7; }
    .testimonial__avatar { width: 40px; height: 40px; font-size: .8rem; }
    .testimonial__name { font-size: .88rem; }
    .testimonials__nav { gap: .5rem; margin-top: 1.25rem; }
    .testimonials__btn { width: 38px; height: 38px; }

    /* Zone */
    .zone__map-wrapper { padding: 1rem; border-radius: var(--radius-lg); }
    .zone__city { padding: .5rem .6rem; font-size: .85rem; }

    /* Guarantees */
    .guarantees { padding: 2rem 0; }
    .guarantees__grid { gap: 1rem; }
    .guarantee { font-size: .85rem; gap: .5rem; }
    .guarantee__icon { width: 36px; height: 36px; }

    /* CTA final */
    .cta-final { padding: 3rem 0; }
    .cta-final h2 { font-size: 1.4rem; }
    .cta-final p { font-size: .95rem; }

    /* CPAM */
    .cpam__text h3 { font-size: 1.1rem; margin-top: 1.25rem; }
    .cpam__text p { font-size: .9rem; line-height: 1.7; }
    .cpam__text ol li {
        font-size: .88rem;
        gap: .6rem;
        margin-bottom: .6rem;
        line-height: 1.65;
    }
    .cpam__text ol li::before {
        width: 24px;
        height: 24px;
        font-size: .7rem;
        margin-top: .2rem;
    }
    .cpam__text ul li {
        font-size: .88rem;
        gap: .4rem;
        line-height: 1.65;
    }
    .cpam__img { border-radius: var(--radius); }

    /* Contact cards */
    .contact__card { padding: 1.5rem; }
    .contact__icon { width: 48px; height: 48px; }
    .contact__link { font-size: 1rem; }

    /* Form */
    .form { margin-top: 1.5rem; }
    .form__input { padding: .75rem .85rem; font-size: .92rem; }
    .form__submit { font-size: .95rem; padding: .85rem 1.5rem; }

    /* Service detail */
    .service-detail__content h2 { font-size: 1.25rem; margin-top: 1.5rem; }
    .service-detail__content h3 { font-size: 1.05rem; }
    .service-detail__content p { font-size: .92rem; }
    .sidebar-card { padding: 1.5rem; }
    .feature { padding: .75rem; }

    /* Blog cards */
    .blog-card__img { height: 180px; }
    .blog-card__body { padding: 1.25rem; }
    .blog-card h3 { font-size: .95rem; }
    .blog-card p { font-size: .85rem; }

    /* City pages content */
    .city-content { font-size: .92rem; }
    .city-content h2 { font-size: 1.3rem; margin-bottom: .75rem; }
    .city-content p { margin-bottom: .85rem; line-height: 1.75; }
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    /* FAQ */
    .faq__question { font-size: .92rem; padding: 1rem 0; }
    .faq__answer p { font-size: .9rem; padding-bottom: 1rem; }
    .faq__list { margin-top: 1.5rem; }

    /* Legal */
    .legal-content { padding: 1.5rem 0 3rem; }
    .legal-content h2 { font-size: 1.2rem; margin-top: 2rem; }
    .legal-content p { font-size: .9rem; }

    /* 404 */
    .page-404__code { font-size: 5rem; }
    .page-404 h1 { font-size: 1.25rem; }

    /* Footer mobile */
    .footer { padding-top: 3rem; }
    .footer h4 { font-size: .8rem; margin-bottom: 1rem; }
    .footer__logo-text { font-size: 1.15rem; }
    .footer__brand p { font-size: .85rem; }
    .footer__links a { font-size: .85rem; }
    .footer__contact a,
    .footer__contact p { font-size: .85rem; }
    .footer__bottom { padding: 1.25rem 0; }
    .footer__bottom .container {
        flex-direction: column;
        text-align: center;
    }

    /* Sticky call CTA */
    .sticky-call { display: flex; font-size: .9rem; padding: .75rem; }
    .whatsapp-float { bottom: 4.5rem; right: 1rem; width: 50px; height: 50px; }

    /* Cookie banner mobile */
    .cookie-banner__inner { flex-direction: column; text-align: center; gap: 1rem; }
    .cookie-banner p { font-size: .82rem; min-width: auto; }
    .cookie-banner__actions { justify-content: center; }

    body { padding-bottom: 52px; }
}

/* < 480px : Small mobile */
@media (max-width: 479px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; text-align: center; }
    .hero__stats { gap: 1rem; }
    .hero__stat { min-width: 0; }
    .guarantees__grid { flex-direction: column; align-items: center; }
    .cta-final__actions { flex-direction: column; align-items: center; }
    .cta-final__actions .btn { width: 100%; text-align: center; }
    .stats__grid { gap: .5rem; }
    .stat__number { font-size: 1.6rem; }
    .stat__label { font-size: .7rem; }
    .about-teaser__img img { height: 180px; }
    .testimonial__card { padding: 1.25rem; }
    .zone__map-wrapper { padding: .75rem; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in { opacity: 1; transform: none; }
}
