:root {
            --green-950: #012619;
            --green-600: #1b6f50;
            --mint: #78BF9E;
            --cream: #E8E5DE;
            --white: #fbfaf6;
            --ink: #081a14;
            --muted: #66736d;
            --line: rgba(1, 38, 25, .12);
            --gold: #d9a441;
            --blue: #246bfe;
            --shadow: 0 24px 70px rgba(1, 38, 25, .14);
            --container: 1160px;
            --page-gutter: clamp(24px, 4vw, 48px);
            --section-space: clamp(72px, 8vw, 96px);
            --grid-gap: clamp(16px, 2vw, 22px);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--white);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .shell {
            width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
            margin: 0 auto;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(251, 250, 246, .88);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(18px);
            transition:
                background-color .35s cubic-bezier(.22, 1, .36, 1),
                border-color .35s cubic-bezier(.22, 1, .36, 1),
                box-shadow .35s cubic-bezier(.22, 1, .36, 1),
                backdrop-filter .35s cubic-bezier(.22, 1, .36, 1);
        }

        .home-page .topbar.header--hero {
            background: rgba(3, 36, 24, .96);
            border-bottom-color: rgba(120, 191, 158, .16);
            box-shadow: none;
        }

        .topbar.header--scrolled {
            background: rgba(251, 250, 246, .92);
            border-bottom-color: var(--line);
            box-shadow: 0 10px 30px rgba(1, 38, 25, .08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 24px;
        }

        .site-nav-toggle {
            position: fixed;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            color: var(--green-950);
            transition: color .35s ease;
        }

        .brand-mark {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            background: #f2f4ef;
            border-radius: 8px;
            overflow: hidden;
            padding: 2px;
            box-shadow: 0 5px 14px rgba(1, 38, 25, .1);
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

        .brand span:last-child {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: var(--green-600);
            transition: color .35s ease;
        }

        .home-page .topbar.header--hero .brand,
        .home-page .topbar.header--hero .brand span:last-child {
            color: var(--cream);
        }

        .home-page .topbar.header--hero .brand span:last-child span {
            color: var(--mint);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 14px;
            font-weight: 700;
            color: rgba(8, 26, 20, .72);
        }

        .nav-links a {
            transition: color .25s ease, opacity .25s ease;
        }

        .topbar a:focus-visible,
        .topbar label:focus-visible {
            outline: 3px solid var(--mint);
            outline-offset: 3px;
        }

        .home-page .topbar.header--hero .nav-links {
            color: rgba(232, 229, 222, .88);
        }

        .home-page .topbar.header--hero .nav-links a:hover {
            color: var(--mint);
        }

        .home-page .topbar.header--hero .nav-actions .btn-light {
            color: var(--cream);
            background: rgba(232, 229, 222, .1);
            border-color: rgba(232, 229, 222, .2);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 24px;
            flex: 1;
            min-width: 0;
        }

        .nav-menu-head,
        .site-nav-overlay,
        .nav-toggle-button {
            display: none;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 44px;
            padding: 0 18px;
            border: 1px solid transparent;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 800;
            transition: transform .2s ease, box-shadow .2s ease, background-color .3s ease, color .3s ease, border-color .3s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            color: var(--green-950);
            background: var(--mint);
            box-shadow: 0 16px 32px rgba(120, 191, 158, .28);
        }

        .btn-dark {
            color: var(--cream);
            background: var(--green-950);
        }

        .btn-light {
            color: var(--green-950);
            background: rgba(232, 229, 222, .88);
            border-color: rgba(232, 229, 222, .5);
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: calc(100svh - 86px);
            color: var(--cream);
            background:
                radial-gradient(circle at 74% 40%, rgba(120, 191, 158, .18), transparent 32%),
                linear-gradient(135deg, #062f22 0%, #032418 48%, #082f23 100%);
        }

        .header-state-sentinel {
            position: absolute;
            top: 24px;
            left: 0;
            width: 1px;
            height: 1px;
            pointer-events: none;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .09;
            background-image:
                linear-gradient(rgba(120, 191, 158, .18) 1px, transparent 1px),
                linear-gradient(90deg, rgba(120, 191, 158, .18) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
        }

        .hero-grid {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(420px, .78fr);
            align-items: center;
            gap: clamp(40px, 4.5vw, 72px);
            min-height: calc(100svh - 86px);
            padding: clamp(40px, 5vh, 60px) 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 8px 12px;
            border: 1px solid rgba(120, 191, 158, .28);
            border-radius: 999px;
            color: var(--mint);
            background: rgba(120, 191, 158, .08);
            font-size: 12px;
            font-weight: 800;
        }

        .eyebrow::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--mint);
            box-shadow: 0 0 0 6px rgba(120, 191, 158, .12);
        }

        h1,
        h2,
        h3,
        p {
            margin: 0;
        }

        h1 {
            max-width: 650px;
            font-size: clamp(42px, 4.8vw, 64px);
            line-height: 1;
            letter-spacing: 0;
            font-weight: 800;
        }

        h1 span {
            color: var(--mint);
        }

        .hero-text {
            margin-top: 18px;
            max-width: 580px;
            color: rgba(232, 229, 222, .78);
            font-size: 17px;
            line-height: 1.65;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .trust-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 24px;
            max-width: 590px;
        }

        .trust-pill {
            min-height: 68px;
            padding: 12px 14px;
            border: 1px solid rgba(232, 229, 222, .12);
            border-radius: 8px;
            background: rgba(232, 229, 222, .06);
        }

        .trust-pill strong {
            display: block;
            color: var(--mint);
            font-size: 22px;
        }

        .trust-pill span {
            color: rgba(232, 229, 222, .7);
            font-size: 12px;
            font-weight: 700;
        }

        .scan-card {
            position: relative;
            width: min(100%, 440px);
            justify-self: end;
            padding: 16px;
            border: 1px solid rgba(232, 229, 222, .14);
            border-radius: 8px;
            background:
                linear-gradient(180deg, rgba(232, 229, 222, .11), rgba(232, 229, 222, .045));
            box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
        }

        .scan-card::before {
            content: "";
            position: absolute;
            inset: 12px;
            border-radius: 8px;
            background: radial-gradient(circle at 50% 42%, rgba(232, 229, 222, .13), transparent 48%);
            pointer-events: none;
        }

        .scan-header {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 58px;
            padding: 10px 12px;
            color: rgba(232, 229, 222, .78);
            border: 1px solid rgba(232, 229, 222, .1);
            border-radius: 8px;
            background: rgba(1, 38, 25, .46);
            font-size: 12px;
            font-weight: 700;
        }

        .score {
            display: grid;
            place-items: center;
            width: 50px;
            height: 50px;
            color: var(--green-950);
            background: #a8d8bf;
            border-radius: 50%;
            font-size: 18px;
            font-weight: 800;
        }

        .car-stage {
            position: relative;
            display: grid;
            place-items: center;
            overflow: hidden;
            min-height: 300px;
            margin-top: 10px;
            border: 0;
            border-radius: 8px;
            background: transparent;
        }

        .scan-line {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 5%;
            width: 2px;
            background: rgba(168, 216, 191, .78);
            box-shadow: 0 0 20px rgba(168, 216, 191, .55);
            animation: scan 4s ease-in-out infinite;
            z-index: 3;
            pointer-events: none;
        }

        @keyframes scan {
            0%, 100% { left: 5%; opacity: .25; }
            50% { left: 95%; opacity: 1; }
        }

        /* Home animations stay opt-in so content is visible without JavaScript. */
        .js.home-page [data-animate] {
            opacity: 0;
            transition:
                opacity var(--animate-duration, 650ms) cubic-bezier(.22, 1, .36, 1),
                transform var(--animate-duration, 650ms) cubic-bezier(.22, 1, .36, 1);
            transition-delay: var(--animate-delay, 0ms);
            will-change: opacity, transform;
        }

        .js.home-page [data-animate="fade-up"] {
            transform: translate3d(0, 24px, 0);
        }

        .js.home-page [data-animate="fade-down"] {
            transform: translate3d(0, -14px, 0);
        }

        .js.home-page [data-animate="fade-left"] {
            transform: translate3d(28px, 0, 0) scale(.985);
        }

        .js.home-page [data-animate="fade-right"] {
            transform: translate3d(-28px, 0, 0) scale(.985);
        }

        .js.home-page [data-animate="scale-in"] {
            transform: translate3d(0, 12px, 0) scale(.97);
        }

        .js.home-page [data-animate].is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
            will-change: auto;
        }

        @media (prefers-reduced-motion: reduce) {
            .topbar,
            .topbar *,
            .js.home-page [data-animate],
            .js.home-page [data-animate].is-visible {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .scan-line {
                animation: none;
            }
        }

        @media (max-width: 767px) {
            .js.home-page [data-animate="fade-up"],
            .js.home-page [data-animate="scale-in"] {
                transform: translate3d(0, 14px, 0) scale(.985);
            }

            .js.home-page [data-animate="fade-left"],
            .js.home-page [data-animate="fade-right"] {
                transform: translate3d(0, 16px, 0) scale(.985);
            }

            .js.home-page [data-animate] {
                transition-delay: min(var(--animate-delay, 0ms), 180ms);
            }

            .js.home-page [data-animate].is-visible {
                transform: translate3d(0, 0, 0) scale(1);
            }
        }

        .car-svg {
            position: absolute;
            right: auto;
            top: 50%;
            transform: translateY(-50%);
            width: 70%;
            max-height: 320px;
            object-fit: contain;
            color: rgba(120, 191, 158, .9);
            filter:
                sepia(.22)
                saturate(.72)
                brightness(1.16)
                contrast(.92)
                drop-shadow(0 18px 30px rgba(232, 229, 222, .18));
            z-index: 2;
        }

        .hero-car-asset {
            position: relative;
            top: auto;
            right: auto;
            mix-blend-mode: normal;
            opacity: .72;
            left: auto;
            width: 70%;
            max-width: 100%;
            max-height: none;
            object-position: center;
            filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .16));
            transform: none;
        }

        .diagnostic-list {
            display: grid;
            gap: 8px;
            margin-top: 10px;
            position: relative;
            z-index: 2;
        }

        .diagnostic-row {
            display: grid;
            grid-template-columns: 16px 1fr auto;
            align-items: center;
            gap: 10px;
            padding: 10px 11px;
            color: rgba(232, 229, 222, .76);
            border: 1px solid rgba(232, 229, 222, .09);
            border-radius: 8px;
            background: rgba(1, 38, 25, .42);
            font-size: 12px;
            font-weight: 700;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--mint);
        }

        .warning {
            background: var(--gold);
        }

        @media (min-width: 1280px) {
            .hero-grid {
                width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
            }

            .scan-card {
                transform: translateX(-8px);
            }
        }

        @media (min-width: 1440px) {
            :root {
                --container: 1400px;
                --page-gutter: clamp(44px, 5vw, 84px);
                --section-space: clamp(88px, 7vw, 112px);
                --grid-gap: clamp(20px, 1.8vw, 28px);
            }

            .hero-grid {
                grid-template-columns: minmax(0, 1.05fr) minmax(440px, .76fr);
                gap: clamp(56px, 5vw, 88px);
                min-height: calc(100svh - 86px);
                padding-top: clamp(42px, 5vh, 60px);
                padding-bottom: clamp(42px, 5vh, 60px);
            }

            h1 {
                max-width: 670px;
                font-size: clamp(52px, 3.8vw, 68px);
                line-height: 1;
            }

            .hero-text {
                max-width: 610px;
                font-size: 17px;
                line-height: 1.65;
            }

            .hero-actions {
                margin-top: 26px;
            }

            .trust-row {
                max-width: 610px;
                gap: 12px;
                margin-top: 24px;
            }

            .scan-card {
                width: min(100%, 460px);
                padding: 16px;
                transform: none;
                box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
            }

            .scan-header {
                min-height: 64px;
                padding-inline: 16px;
                font-size: 13px;
            }

            .score {
                width: 54px;
                height: 54px;
                font-size: 20px;
            }

            .car-stage {
                min-height: 330px;
                margin-top: 14px;
            }

            .car-svg {            
                width: 70%;
                max-height: 350px;
            }

            .diagnostic-list {
                gap: 10px;
                margin-top: 12px;
            }

            .diagnostic-row {
                min-height: 48px;
                padding: 11px 14px;
                font-size: 13px;
            }

            .section-head {
                max-width: 820px;
                margin-bottom: 54px;
            }

            .section-head p {
                max-width: 760px;
                margin-inline: auto;
                font-size: 17px;
            }

            .stats {
                min-height: 118px;
                align-items: stretch;
            }

            .stat {
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 30px 22px;
            }

            .stat strong {
                font-size: 34px;
            }

            .service-grid,
            .pricing-grid,
            .testimonial-grid,
            .report-grid {
                gap: 28px;
            }

            .service {
                min-height: 250px;
                padding: 30px;
            }

            .process {
                max-width: 1080px;
                gap: 24px;
            }

            .step {
                grid-template-columns: 1fr 76px 1fr;
                gap: 26px;
            }

            .step-card {
                min-height: 116px;
                padding: 24px 28px;
            }

            .price,
            .testimonial {
                padding: 32px;
            }

            .intervention-section {
                padding-block: var(--section-space);
            }

            .intervention-layout {
                grid-template-columns: minmax(480px, .9fr) minmax(0, 1.1fr);
                gap: clamp(70px, 7vw, 112px);
            }

            .intervention-section .coverage-grid {
                gap: 20px;
            }

            .intervention-section .coverage {
                min-height: 132px;
                padding: 28px 32px;
            }

            .report-page {
                min-height: 350px;
                padding: 24px;
            }

            .cta-box {
                min-height: 220px;
                padding-block: 64px;
            }

            .footer-grid {
                gap: 56px;
            }
        }

        @media (min-width: 1800px) {
            :root {
                --container: 1480px;
            }

            .hero-grid {
                grid-template-columns: minmax(0, 1.05fr) 480px;
                gap: 88px;
            }
        }

        @media (max-width: 1180px) {
            :root {
                --container: 1040px;
                --page-gutter: clamp(22px, 3.5vw, 40px);
                --section-space: clamp(66px, 7vw, 84px);
            }

            .hero-grid {
                grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
            }

            h1 {
                font-size: clamp(42px, 6vw, 68px);
            }

            .scan-card {
                width: min(100%, 420px);
            }
        }

        .section {
            padding: var(--section-space) 0;
        }

        .section.alt {
            background: #f1f4ef;
        }

        .section-head {
            max-width: 700px;
            margin: 0 auto 42px;
            text-align: center;
        }

        .label {
            display: inline-flex;
            margin-bottom: 13px;
            padding: 7px 12px;
            border-radius: 999px;
            color: var(--green-950);
            background: rgba(120, 191, 158, .2);
            font-size: 12px;
            font-weight: 800;
        }

        h2 {
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.06;
            font-weight: 800;
            color: var(--green-950);
        }

        .section-head p {
            margin-top: 14px;
            color: var(--muted);
            line-height: 1.7;
        }

        .stats-band {
            transform: translateY(-1px);
            background: var(--cream);
            border-bottom: 1px solid var(--line);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(1, 38, 25, .1);
        }

        .stat {
            padding: 28px 16px;
            text-align: center;
            background: var(--cream);
        }

        .stat strong {
            display: block;
            color: var(--green-950);
            font-size: 30px;
            font-weight: 800;
        }

        .stat span {
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }

        .service {
            position: relative;
            min-height: clamp(210px, 18vw, 230px);
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 10px 40px rgba(1, 38, 25, .06);
            overflow: hidden;
        }

        .service::after {
            content: "";
            position: absolute;
            inset: auto 20px 0 20px;
            height: 4px;
            background: linear-gradient(90deg, var(--mint), transparent);
        }

        .icon {
            display: grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin-bottom: 22px;
            color: var(--green-950);
            background: rgba(120, 191, 158, .25);
            border-radius: 8px;
        }

        .service h3,
        .price h3,
        .testimonial h3 {
            font-size: 19px;
            font-weight: 800;
            color: var(--green-950);
        }

        .service p,
        .price p,
        .testimonial p {
            margin-top: 10px;
            color: var(--muted);
            line-height: 1.65;
        }

        .process {
            position: relative;
            display: grid;
            gap: 20px;
            max-width: 850px;
            margin: 0 auto;
        }

        .process::before {
            content: "";
            position: absolute;
            top: 20px;
            bottom: 20px;
            left: 50%;
            width: 2px;
            background: linear-gradient(var(--mint), rgba(120, 191, 158, .12));
        }

        .step {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 64px 1fr;
            align-items: center;
            gap: 18px;
        }

        .step:nth-child(even) .step-card {
            grid-column: 3;
        }

        .step-number {
            z-index: 2;
            grid-column: 2;
            grid-row: 1;
            display: grid;
            place-items: center;
            width: 46px;
            height: 46px;
            margin: 0 auto;
            color: var(--green-950);
            background: var(--mint);
            border: 6px solid #eef6f1;
            border-radius: 50%;
            font-weight: 800;
        }

        .step-card {
            grid-column: 1;
            grid-row: 1;
            padding: 20px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 16px 38px rgba(1, 38, 25, .08);
        }

        .step-card strong {
            display: block;
            color: var(--green-950);
            font-size: 18px;
            font-weight: 800;
        }

        .step-card span {
            display: block;
            margin-top: 8px;
            color: var(--muted);
            line-height: 1.6;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }

        .price {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 26px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
        }

        .price > .btn {
            align-self: flex-start;
            margin-top: auto;
        }

        .price.featured {
            color: var(--cream);
            background: var(--green-950);
            box-shadow: var(--shadow);
            transform: translateY(-14px);
        }

        .price.featured h3,
        .price.featured .amount {
            color: var(--cream);
        }

        .price.featured p,
        .price.featured li {
            color: rgba(232, 229, 222, .76);
        }

        .amount {
            margin: 22px 0;
            color: var(--green-950);
            font-size: 44px;
            font-weight: 800;
        }

        .amount small {
            font-size: 14px;
            color: var(--muted);
        }

        .price.featured .amount small {
            color: var(--mint);
        }

        .features {
            display: grid;
            gap: 12px;
            margin: 0 0 24px;
            padding: 0;
            list-style: none;
        }

        .features li {
            display: flex;
            gap: 10px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.45;
        }

        .features li::before {
            content: "";
            flex: 0 0 9px;
            width: 9px;
            height: 9px;
            margin-top: 6px;
            border-radius: 50%;
            background: var(--mint);
        }

        .intervention-section {
            position: relative;
            overflow: hidden;
            padding: 108px 0 98px;
            background:
                radial-gradient(circle at 18% 46%, rgba(120, 191, 158, .18), transparent 30%),
                linear-gradient(180deg, var(--white), #f7f7f1);
        }

        .intervention-head {
            margin-bottom: 28px;
        }

        .intervention-section .label {
            color: var(--green-950);
            background: rgba(120, 191, 158, .22);
            border: 1px solid rgba(120, 191, 158, .34);
        }

        .intervention-panel h2 {
            margin-top: 12px;
            color: var(--green-950);
            font-size: clamp(38px, 4.8vw, 64px);
            line-height: 1.02;
        }

        .intervention-panel > p {
            max-width: 720px;
            margin-top: 24px;
            color: var(--muted);
            font-size: 21px;
            line-height: 1.75;
        }

        .map-section {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            align-items: center;
            gap: clamp(36px, 5vw, 64px);
        }

        .intervention-layout {
            width: min(var(--container), 100%);
            margin: 0 auto;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
            gap: clamp(40px, 5vw, 64px);
        }

        .morocco {
            position: relative;
            min-height: 520px;
            display: grid;
            place-items: center;
        }

        .morocco::before {
            content: "";
            position: absolute;
            width: min(500px, 98%);
            aspect-ratio: 1;
            border-radius: 50%;
            background:
                radial-gradient(circle, rgba(120, 191, 158, .36), rgba(120, 191, 158, .13) 44%, transparent 72%);
            filter: blur(14px);
        }

        .map-shape {
            width: min(380px, 92%);
            color: var(--green-950);
            filter: drop-shadow(0 28px 42px rgba(1, 38, 25, .18));
        }

        .map-figure {
            position: relative;
            z-index: 1;
            width: min(540px, 100%);
            margin: 0;
            padding: clamp(14px, 2vw, 24px);
            border: 1px solid rgba(120, 191, 158, .3);
            border-radius: 8px;
            background: rgba(251, 250, 246, .86);
            box-shadow: 0 18px 38px rgba(1, 38, 25, .1);
        }

        .morocco-service-map {
            position: relative;
        }

        .coverage-map {
            display: block;
            width: 100%;
            height: auto;
        }

        .coverage-map-territory {
            filter: drop-shadow(0 16px 26px rgba(1, 38, 25, .12));
        }

        .coverage-map-city {
            cursor: pointer;
            outline: none;
        }

        .coverage-map-link {
            stroke: rgba(120, 191, 158, .8);
            stroke-width: 1.5;
            opacity: 0;
            transition: opacity .18s ease;
        }

        .coverage-map-ring {
            fill: rgba(120, 191, 158, .18);
            stroke: rgba(120, 191, 158, .68);
            stroke-width: 1.5;
            transform-box: fill-box;
            transform-origin: center;
        }

        .coverage-map-marker {
            fill: var(--mint);
            stroke: var(--white);
            stroke-width: 3;
            transform-box: fill-box;
            transform-origin: center;
        }

        .coverage-map-label {
            fill: var(--green-950);
            font-family: inherit;
            font-size: 20px;
            font-weight: 800;
            paint-order: stroke;
            stroke: rgba(251, 250, 246, .9);
            stroke-linejoin: round;
            stroke-width: 6px;
            opacity: 0;
            transition: opacity .18s ease;
        }

        .coverage-map-city:hover .coverage-map-ring,
        .coverage-map-city:focus .coverage-map-ring,
        .coverage-map-city.is-active .coverage-map-ring {
            fill: rgba(120, 191, 158, .4);
            stroke: var(--green-950);
            stroke-width: 2.5;
            transform: scale(1.28);
        }

        .coverage-map-city:hover .coverage-map-link,
        .coverage-map-city:focus .coverage-map-link,
        .coverage-map-city.is-active .coverage-map-link,
        .coverage-map-city:hover .coverage-map-label,
        .coverage-map-city:focus .coverage-map-label,
        .coverage-map-city.is-active .coverage-map-label {
            opacity: 1;
        }

        .coverage-map-city:hover .coverage-map-marker,
        .coverage-map-city:focus .coverage-map-marker,
        .coverage-map-city.is-active .coverage-map-marker {
            fill: var(--gold);
            transform: scale(1.3);
        }

        .coverage-map-city:focus .coverage-map-label,
        .coverage-map-city.is-active .coverage-map-label {
            fill: var(--green-600);
        }

        .coverage-map-status {
            margin: 8px 0 0;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
            text-align: center;
        }

        .map-debug .coverage-map {
            background-image:
                linear-gradient(rgba(120, 191, 158, .13) 1px, transparent 1px),
                linear-gradient(90deg, rgba(120, 191, 158, .13) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .coverage-map-debug-label {
            fill: var(--gold);
            font-family: monospace;
            font-size: 14px;
            font-weight: 700;
            paint-order: stroke;
            stroke: var(--green-950);
            stroke-width: 4px;
        }

        .morocco-service-map.map-ready .coverage-map-territory,
        .morocco-service-map.map-ready .coverage-map-city {
            opacity: 0;
        }

        .morocco-service-map.map-ready.is-visible .coverage-map-territory {
            animation: map-territory-in .7s ease-out both;
        }

        .morocco-service-map.map-ready.is-visible .coverage-map-city {
            animation: map-city-in .34s ease-out both;
            animation-delay: calc(.45s + (var(--city-index) * .055s));
        }

        @keyframes map-territory-in {
            from { opacity: 0; transform: translateY(12px) scale(.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes map-city-in {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .morocco-service-map.is-visible .coverage-map-ring {
            animation: map-ring-pulse 2.5s ease-out infinite;
        }

        @keyframes map-ring-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: .3; transform: scale(1.28); }
        }

        @media (prefers-reduced-motion: reduce) {
            .morocco-service-map *,
            .morocco-service-map *::before,
            .morocco-service-map *::after { animation: none !important; }
        }

        .map-credit {
            display: block;
            margin-top: 10px;
            color: var(--green-950);
            font-size: 11px;
            font-weight: 700;
            text-align: center;
        }

        .intervention-section .map-credit {
            display: none;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-top: 28px;
        }

        .coverage {
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
        }

        .coverage strong {
            display: block;
            color: var(--green-950);
            font-size: 28px;
            font-weight: 800;
        }

        .coverage span {
            color: var(--muted);
            font-weight: 700;
        }

        .cities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 26px;
        }

        .cities span {
            padding: 9px 12px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(232, 229, 222, .52);
            color: var(--green-950);
            font-size: 13px;
            font-weight: 800;
        }

        .intervention-panel {
            align-self: center;
        }

        .intervention-section .coverage-grid {
            margin-top: 34px;
            gap: 16px;
        }

        .intervention-section .coverage {
            min-height: 122px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            padding: 24px 28px;
            border-color: rgba(120, 191, 158, .26);
            background:
                linear-gradient(180deg, rgba(232, 229, 222, .76), rgba(251, 250, 246, .92));
            box-shadow:
                inset 0 0 0 1px rgba(255, 255, 255, .72),
                0 14px 34px rgba(1, 38, 25, .05);
        }

        .intervention-section .coverage strong {
            color: var(--green-950);
            font-size: 38px;
            line-height: 1;
        }

        .intervention-section .coverage span {
            color: var(--muted);
            margin-top: 7px;
            font-size: 16px;
        }

        .city-title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
            color: var(--green-600);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .city-title::before {
            content: "";
            width: 12px;
            height: 12px;
            border-radius: 50% 50% 50% 0;
            background: var(--mint);
            transform: rotate(-45deg);
        }

        .intervention-section .cities {
            gap: 10px;
            margin-top: 28px;
        }

        .intervention-section .cities span,
        .intervention-section .cities button {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border: 1px solid rgba(1, 38, 25, .16);
            border-radius: 999px;
            color: var(--green-950);
            background: rgba(232, 229, 222, .58);
            box-shadow: 0 8px 18px rgba(1, 38, 25, .04);
            font: inherit;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: background .18s ease, border-color .18s ease, transform .18s ease;
        }

        .intervention-section .cities span::before {
            content: none;
        }

        .intervention-section .cities button:hover,
        .intervention-section .cities button:focus-visible,
        .intervention-section .cities button.is-active {
            border-color: var(--green-600);
            background: var(--mint);
            outline: none;
            transform: translateY(-2px);
        }

        .intervention-cta {
            margin-top: 28px;
            color: var(--green-950);
            background: var(--mint);
            box-shadow: 0 18px 34px rgba(120, 191, 158, .32);
        }

        .intervention-shell {
            width: min(var(--container), 100%);
            margin: 0 auto;
        }

        .intervention-header {
            max-width: 1060px;
            margin: 0 auto 40px;
            text-align: center;
        }

        .intervention-header h2 {
            margin: 14px auto 0;
            color: var(--green-950);
            font-size: clamp(38px, 4.5vw, 62px);
            line-height: 1.05;
        }

        .intervention-header p {
            max-width: 940px;
            margin: 18px auto 0;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.7;
        }

        .intervention-showcase {
            display: grid;
            grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
            align-items: center;
            gap: clamp(36px, 5vw, 72px);
        }

        .intervention-showcase .morocco {
            min-height: 0;
        }

        .intervention-showcase .map-figure {
            width: min(100%, 540px);
            margin-inline: auto;
            padding: clamp(12px, 1.8vw, 20px);
            background: rgba(251, 250, 246, .72);
        }

        .intervention-showcase .intervention-panel {
            width: 100%;
        }

        .intervention-showcase .coverage-grid {
            margin: 0;
            gap: 14px;
        }

        .intervention-showcase .coverage {
            min-height: 126px;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
            padding: 20px 22px;
            text-align: left;
        }

        .coverage-icon {
            display: grid;
            place-items: center;
            width: 54px;
            height: 54px;
            flex: 0 0 54px;
            border: 1px solid rgba(47, 125, 90, .14);
            border-radius: 50%;
            color: var(--green-600);
            background: rgba(120, 191, 158, .16);
        }

        .coverage-icon svg {
            width: 28px;
            height: 28px;
        }

        .intervention-showcase .coverage strong,
        .intervention-showcase .coverage em {
            display: block;
        }

        .intervention-showcase .coverage strong {
            color: var(--green-950);
            font-size: clamp(28px, 2.4vw, 38px);
            font-style: normal;
        }

        .intervention-showcase .coverage em {
            margin-top: 5px;
            color: var(--muted);
            font-size: 15px;
            font-style: normal;
            line-height: 1.3;
        }

        .intervention-cities {
            margin-top: 30px;
        }

        .intervention-cities h3 {
            margin: 0 0 16px;
            color: var(--green-950);
            font-size: 24px;
        }

        .intervention-showcase .cities {
            margin: 0;
            gap: 10px;
        }

        .intervention-note {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 30px;
            padding: 18px 20px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(251, 250, 246, .84);
            box-shadow: 0 12px 26px rgba(1, 38, 25, .06);
        }

        .intervention-note strong {
            display: block;
            color: var(--green-950);
            font-size: 16px;
        }

        .intervention-note p {
            margin: 4px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }

        .testimonial {
            min-height: 100%;
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
        }

        .stars {
            display: flex;
            align-items: center;
            gap: 3px;
            color: var(--gold);
        }

        .stars svg {
            width: 18px;
            height: 18px;
        }

        .avatar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 22px;
        }

        .avatar span:first-child {
            display: grid;
            place-items: center;
            width: 42px;
            height: 42px;
            color: var(--cream);
            background: var(--green-950);
            border-radius: 50%;
            font-weight: 800;
        }

        .report-gallery {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 12px;
        }

        .report-gallery-item {
            position: relative;
            display: block;
            min-width: 0;
            padding: 0;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            color: var(--green-950);
            background: var(--white);
            box-shadow: 0 10px 24px rgba(1, 38, 25, .08);
            cursor: zoom-in;
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }

        .report-gallery-item:hover,
        .report-gallery-item:focus-visible {
            border-color: var(--mint);
            box-shadow: 0 16px 30px rgba(1, 38, 25, .15);
            outline: none;
            transform: translateY(-4px);
        }

        .report-gallery-item img {
            display: block;
            width: 100%;
            aspect-ratio: 0.704;
            object-fit: cover;
            object-position: top;
        }

        .report-gallery-item span {
            display: block;
            padding: 8px 10px;
            font-size: 12px;
            font-weight: 800;
            text-align: left;
        }

        .report-preview-modal {
            width: min(760px, calc(100% - 32px));
            max-height: min(92vh, 980px);
            padding: 0;
            overflow: auto;
            border: 0;
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 28px 70px rgba(1, 38, 25, .38);
        }

        .report-preview-modal::backdrop {
            background: rgba(1, 38, 25, .72);
            backdrop-filter: blur(4px);
        }

        .report-preview-modal-head {
            position: sticky;
            top: 0;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 18px;
            border-bottom: 1px solid var(--line);
            background: var(--white);
        }

        .report-preview-modal-head p {
            margin: 0;
            color: var(--green-950);
            font-size: 14px;
            font-weight: 800;
        }

        .report-preview-modal-head button {
            padding: 8px 12px;
            border: 0;
            border-radius: 6px;
            color: var(--cream);
            background: var(--green-950);
            font: inherit;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
        }

        .report-preview-modal > img {
            display: block;
            width: 100%;
            height: auto;
        }

        .cta {
            color: var(--cream);
            background: var(--green-950);
        }

        .cta-box {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 28px;
            padding: 70px 0;
        }

        .cta h2 {
            color: var(--cream);
        }

        .cta p {
            margin-top: 14px;
            color: rgba(232, 229, 222, .72);
        }

        .footer {
            padding: 44px 0;
            color: rgba(232, 229, 222, .72);
            background: #07120e;
        }

        .footer-logo {
            width: 92px;
            height: auto;
            display: block;
            margin-bottom: 12px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 28px;
        }

        .footer h3 {
            margin: 0 0 12px;
            color: var(--cream);
            font-size: 16px;
        }

        .footer p,
        .footer a {
            display: block;
            margin: 8px 0;
            color: rgba(232, 229, 222, .68);
            line-height: 1.7;
        }

        .footer-legal {
            border-top: 1px solid rgba(232, 229, 222, .12);
            color: rgba(232, 229, 222, .62);
            background: #050c09;
        }

        .footer-legal-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            padding: 16px 0;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.5;
        }

        .footer-legal-grid span:nth-child(2) {
            text-align: center;
        }

        .footer-legal-grid span:last-child {
            text-align: right;
        }

        @media (max-width: 920px) {
            :root {
                --page-gutter: 32px;
                --section-space: 64px;
                --grid-gap: 16px;
            }

            .report-gallery {
                grid-auto-columns: minmax(118px, 18vw);
                grid-auto-flow: column;
                grid-template-columns: none;
                padding: 4px 2px 12px;
                overflow-x: auto;
                overscroll-behavior-inline: contain;
                scroll-snap-type: inline mandatory;
            }

            .report-gallery-item {
                scroll-snap-align: start;
            }

            .topbar {
                z-index: 80;
                backdrop-filter: none;
            }

            body.site-menu-open {
                overflow: hidden;
            }

            .nav {
                gap: 14px;
            }

            .brand {
                min-width: 0;
            }

            .brand > span:last-child {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .nav-toggle-button {
                display: grid;
                place-items: center;
                flex: 0 0 44px;
                width: 44px;
                height: 44px;
                border: 1px solid var(--line);
                border-radius: 8px;
                background: rgba(251, 250, 246, .92);
                cursor: pointer;
            }

            .nav-toggle-button span {
                display: block;
                width: 19px;
                height: 2px;
                margin: 3px 0;
                border-radius: 999px;
                background: var(--green-950);
                transition: background-color .35s ease;
            }

            .home-page .topbar.header--hero .nav-toggle-button {
                background: rgba(232, 229, 222, .1);
                border-color: rgba(232, 229, 222, .22);
            }

            .home-page .topbar.header--hero .nav-toggle-button span {
                background: var(--cream);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 90;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                width: min(390px, 100vw);
                height: 100vh;
                height: 100dvh;
                padding: 20px;
                overflow-y: auto;
                background:
                    linear-gradient(180deg, var(--white), #f5f5ef);
                border-left: 1px solid rgba(1, 38, 25, .1);
                box-shadow: -28px 0 80px rgba(1, 38, 25, .24);
                transform: translateX(100%);
                transition: transform .24s ease;
            }

            .nav-menu-head {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
                padding-bottom: 18px;
                border-bottom: 1px solid var(--line);
                color: var(--green-950);
                font-size: 15px;
                font-weight: 800;
            }

            .nav-close {
                position: relative;
                display: grid;
                place-items: center;
                width: 40px;
                height: 40px;
                border: 1px solid var(--line);
                border-radius: 8px;
                background: rgba(232, 229, 222, .42);
                cursor: pointer;
            }

            .nav-close span {
                position: absolute;
                width: 18px;
                height: 2px;
                border-radius: 999px;
                background: var(--green-950);
            }

            .nav-close span:first-child {
                transform: rotate(45deg);
            }

            .nav-close span:last-child {
                transform: rotate(-45deg);
            }

            .nav-links,
            .nav-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .nav-links {
                padding-top: 18px;
            }

            .nav-links a {
                display: flex;
                align-items: center;
                min-height: 46px;
                padding: 0 12px;
                border-radius: 8px;
                color: var(--green-950);
                background: rgba(232, 229, 222, .3);
                transition: background .2s ease, color .2s ease, transform .2s ease;
            }

            .nav-links a:hover {
                color: var(--green-950);
                background: rgba(120, 191, 158, .2);
                transform: translateX(3px);
            }

            .nav-actions {
                margin-top: auto;
                padding-top: 18px;
                border-top: 1px solid var(--line);
            }

            .nav-actions .btn {
                width: 100%;
            }

            .site-nav-toggle:checked ~ .topbar .nav-menu {
                transform: translateX(0);
            }

            .site-nav-toggle:checked ~ .topbar .site-nav-overlay {
                position: fixed;
                inset: 0;
                z-index: 85;
                display: block;
                background: rgba(1, 38, 25, .38);
            }

            /* Refined public navigation on tablet and mobile. */
            .nav-toggle-button {
                position: relative;
                align-content: center;
                width: 46px;
                height: 46px;
                flex-basis: 46px;
                padding: 0 12px;
                border-color: rgba(1, 38, 25, .12);
                background: rgba(251, 250, 246, .78);
                box-shadow: 0 8px 22px rgba(1, 38, 25, .08);
                transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
            }

            .nav-toggle-button:hover {
                transform: translateY(-1px);
                box-shadow: 0 12px 26px rgba(1, 38, 25, .12);
            }

            .nav-toggle-button span {
                width: 21px;
                height: 1.5px;
                margin: 2.5px 0;
                transition: width .25s ease, transform .25s ease, background-color .3s ease;
            }

            .nav-toggle-button span:nth-child(2) {
                width: 15px;
                justify-self: end;
            }

            .nav-menu {
                width: min(360px, calc(100vw - 18px));
                padding: 0 22px 22px;
                background: var(--white);
                border-left-color: rgba(1, 38, 25, .08);
                border-radius: 8px 0 0 8px;
                box-shadow: -20px 0 60px rgba(1, 38, 25, .22);
                opacity: 0;
                visibility: hidden;
                transform: translate3d(104%, 0, 0);
                transition: transform .46s cubic-bezier(.22, 1, .36, 1), opacity .24s ease, visibility 0s linear .46s;
                will-change: transform, opacity;
            }

            .nav-menu-head {
                min-height: 82px;
                margin: 0 -22px;
                padding: 0 22px;
                color: var(--cream);
                background: var(--green-950);
                border-bottom: 0;
                font-size: 18px;
            }

            .nav-menu-identity {
                display: grid;
                gap: 2px;
            }

            .nav-menu-eyebrow {
                color: var(--mint);
                font-size: 11px;
                font-weight: 800;
                letter-spacing: .08em;
                text-transform: uppercase;
            }

            .nav-menu-title {
                color: var(--cream);
                font-size: 20px;
                font-weight: 800;
            }

            .nav-close {
                width: 42px;
                height: 42px;
                color: var(--cream);
                background: rgba(255, 255, 255, .08);
                border-color: rgba(255, 255, 255, .16);
                transition: background-color .25s ease, transform .25s ease;
            }

            .nav-close:hover {
                background: rgba(255, 255, 255, .15);
                transform: rotate(3deg);
            }

            .nav-close span {
                width: 17px;
                background: var(--cream);
            }

            .nav-links {
                gap: 0;
                padding-top: 14px;
            }

            .nav-menu .nav-links a {
                position: relative;
                min-height: 54px;
                padding: 0 30px 0 4px;
                border-radius: 0;
                border-bottom: 1px solid rgba(1, 38, 25, .08);
                background: transparent;
                font-size: 15px;
                opacity: 0;
                transform: translate3d(12px, 0, 0);
                transition: color .22s ease, padding-left .22s ease, opacity .35s ease, transform .35s ease;
            }

            .site-nav-overlay {
                position: fixed;
                inset: 0;
                z-index: 85;
                display: block;
                background: rgba(1, 38, 25, .56);
                backdrop-filter: blur(3px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity .32s ease, visibility 0s linear .32s;
            }

            .nav-links a::after {
                content: "";
                position: absolute;
                right: 5px;
                width: 7px;
                height: 7px;
                border-top: 1.5px solid currentColor;
                border-right: 1.5px solid currentColor;
                transform: rotate(45deg);
                opacity: .45;
            }

            .nav-links a:hover {
                padding-left: 9px;
                color: var(--green-600);
                background: transparent;
                transform: none;
            }

            .nav-actions {
                gap: 10px;
                padding-top: 16px;
            }

            .nav-actions .btn {
                min-height: 48px;
            }

            .nav-actions .btn-light {
                background: transparent;
                border-color: rgba(1, 38, 25, .16);
            }

            .home-page .topbar.header--hero .nav-menu .nav-actions .btn-light {
                color: var(--green-950);
                background: transparent;
                border-color: rgba(1, 38, 25, .16);
            }

            .site-nav-toggle:checked ~ .topbar .nav-menu {
                opacity: 1;
                visibility: visible;
                transform: translate3d(0, 0, 0);
                transition: transform .46s cubic-bezier(.22, 1, .36, 1), opacity .26s ease;
            }

            .site-nav-toggle:checked ~ .topbar .nav-links a {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }

            .site-nav-toggle:checked ~ .topbar .nav-links a:nth-child(1) { transition-delay: 80ms; }
            .site-nav-toggle:checked ~ .topbar .nav-links a:nth-child(2) { transition-delay: 115ms; }
            .site-nav-toggle:checked ~ .topbar .nav-links a:nth-child(3) { transition-delay: 150ms; }
            .site-nav-toggle:checked ~ .topbar .nav-links a:nth-child(4) { transition-delay: 185ms; }
            .site-nav-toggle:checked ~ .topbar .nav-links a:nth-child(5) { transition-delay: 220ms; }

            .site-nav-toggle:checked ~ .topbar .site-nav-overlay {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transition: opacity .32s ease;
            }

            .hero-grid,
            .map-section,
            .cta-box {
                grid-template-columns: 1fr;
            }

            .hero-grid {
                min-height: auto;
                gap: 34px;
            }

            .hero-grid > div:first-child {
                text-align: center;
            }

            .hero-grid h1 {
                margin-right: auto;
                margin-left: auto;
            }

            .hero-text {
                margin-right: auto;
                margin-left: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .trust-row {
                margin-right: auto;
                margin-left: auto;
            }

            .trust-pill {
                text-align: center;
            }

            .scan-card {
                justify-self: center;
                width: min(100%, 520px);
            }

            .map-section .intervention-panel,
            .cta-box {
                text-align: center;
            }

            .map-figure {
                margin-right: auto;
                margin-left: auto;
            }

            .cities,
            .cta-box {
                justify-content: center;
            }

            .car-stage {
                min-height: 290px;
            }

            .service-grid,
            .pricing-grid,
            .testimonial-grid,
            .report-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .price.featured,
            .report-page:nth-child(2) {
                transform: none;
            }
        }

        @media (max-width: 680px) {
            :root {
                --page-gutter: 20px;
                --section-space: 58px;
                --grid-gap: 14px;
            }

            .report-gallery {
                grid-auto-columns: minmax(112px, 36vw);
                gap: 10px;
            }

            .report-preview-modal {
                width: min(100% - 20px, 640px);
            }

            .report-preview-modal-head {
                padding: 12px;
            }

            .shell {
                width: min(100% - (var(--page-gutter) * 2), var(--container));
            }

            .nav {
                position: relative;
                min-height: 64px;
            }

            .nav-toggle-button {
                position: relative;
                z-index: 81;
                display: grid !important;
                flex: 0 0 46px;
                width: 46px;
                height: 46px;
                margin-left: auto;
            }

            .brand {
                gap: 9px;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
                flex: 0 0 38px;
            }

            .brand > span:last-child {
                max-width: 170px;
                font-size: 14px;
            }

            .brand span:last-child span {
                font-size: 11px;
            }

            .nav-menu {
                width: min(360px, calc(100vw - 14px));
                padding: 0 20px 20px;
                border-left: 0;
            }

            .nav-menu-head {
                margin: 0 -20px;
                padding: 0 20px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 50px 0;
            }

            .section-head {
                text-align: center;
            }

            .section-head p {
                margin-right: auto;
                margin-left: auto;
            }

            .service,
            .price,
            .testimonial,
            .step-card {
                text-align: center;
            }

            .service .icon,
            .stars,
            .avatar {
                margin-right: auto;
                margin-left: auto;
            }

            .stars,
            .avatar,
            .features li {
                justify-content: center;
            }

            .price > .btn {
                align-self: center;
            }

            .coverage-grid,
            .cities {
                justify-content: center;
            }

            .scan-card {
                padding: 12px;
            }

            .car-stage {
                min-height: 230px;
            }

            .car-svg {
                width: 70%;
                max-height: 250px;
            }

            .hero-car-asset {
                position: relative;
                top: auto;
                left: auto;
                width: 70%;
                max-width: 100%;
                max-height: none;
                transform: none;
            }

            .trust-row,
            .stats,
            .service-grid,
            .pricing-grid,
            .coverage-grid,
            .testimonial-grid,
            .report-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-legal-grid {
                grid-template-columns: 1fr;
                gap: 6px;
                padding: 16px 0;
                text-align: center;
            }

            .footer-legal-grid span:nth-child(2),
            .footer-legal-grid span:last-child {
                text-align: center;
            }

            .process::before {
                left: 23px;
            }

            .step,
            .step:nth-child(even) .step-card {
                grid-template-columns: 48px 1fr;
                grid-column: auto;
            }

            .step-number {
                grid-column: 1;
                grid-row: 1;
                width: 42px;
                height: 42px;
                border-width: 5px;
            }

            .step-card {
                grid-column: 2;
            }

            .section {
                padding: 68px 0;
            }

            .coverage-map-label,
            .coverage-map-link {
                display: none;
            }

            .map-figure {
                padding: 12px;
            }

            .coverage-map-status {
                min-height: 18px;
            }
        }

        @media (max-width: 920px) {
            .intervention-showcase {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .intervention-showcase .intervention-panel {
                max-width: 760px;
                margin-inline: auto;
            }

            .intervention-cities,
            .intervention-cities h3 {
                text-align: center;
            }

            .intervention-showcase .cities {
                justify-content: center;
            }
        }

        @media (max-width: 580px) {
            .intervention-header {
                margin-bottom: 28px;
            }

            .intervention-header h2 {
                font-size: 34px;
            }

            .intervention-header p {
                font-size: 16px;
            }

            .intervention-showcase .coverage-grid {
                grid-template-columns: 1fr;
            }

            .intervention-showcase .coverage {
                min-height: 102px;
                padding: 16px;
            }

            .coverage-icon {
                width: 48px;
                height: 48px;
                flex-basis: 48px;
            }

            .intervention-note {
                align-items: flex-start;
                padding: 16px;
            }
        }
