:root {
            --bg: #ffffff;
            --bg-2: #ffffff;
            --ink: #0B1B33;
            --ink-2: #1B2A45;
            --muted: #5B647A;
            --line: #D9D2BF;
            --amber: #E8A33D;
            --amber-deep: #B8761A;
            --paper: #ffffff;
            --page-x: clamp(28px, 4.5vw, 72px);
            --section-y: clamp(64px, 7vw, 80px);
            --nav-h: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
        }

        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
            background: var(--bg);
            color: #1b1b1b;
            font-size: 16px;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        ::selection {
            background: var(--amber);
            color: #1b1b1b;
        }

        .serif {
            font-family: "Instrument Serif", "Times New Roman", serif;
            font-weight: 400;
        }

        .mono {
            font-family: "JetBrains Mono", monospace;
            font-size: 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .wrap {
            width: 100%;
            max-width: none;
            margin: 50px auto;
            padding-left: var(--page-x);
            padding-right: var(--page-x);
        }

        /* ===== NAV ===== */
        .nav {
            position: sticky;
            top: 0;
            z-index: 40;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(140%) blur(14px);
            -webkit-backdrop-filter: saturate(140%) blur(14px);
            border-bottom: 1px solid var(--line);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: var(--nav-h);
            padding: 12px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            line-height: 0;
        }

        .brand-logo {
            display: block;
            height: 42px;
            width: auto;
            max-width: min(260px, 38vw);
            object-fit: contain;
            object-position: left center;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            color: #1b1b1b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--amber-deep);
        }

        .nav-links a.nav-cta {
            background: #1b1b1b;
            color: #fff;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-cta::after {
            content: "↗";
            font-size: 14px;
        }

        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: var(--paper);
            color: #1b1b1b;
            cursor: pointer;
            flex-shrink: 0;
        }

        .nav-toggle svg {
            display: block;
            width: 20px;
            height: 20px;
        }

        .nav-toggle .icon-close {
            display: none;
        }

        .nav.is-open .nav-toggle .icon-menu {
            display: none;
        }

        .nav.is-open .nav-toggle .icon-close {
            display: block;
        }

        @media (max-width:900px) {
            .nav-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                left: 0;
                right: 0;
                top: var(--nav-h);
                z-index: 39;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 12px var(--page-x) 24px;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: saturate(140%) blur(14px);
                border-bottom: 1px solid var(--line);
                max-height: calc(100dvh - var(--nav-h));
                overflow-y: auto;
                transform: translateY(-8px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity .2s ease, transform .2s ease, visibility .2s;
            }

            .nav.is-open .nav-links {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .nav-links a {
                display: block;
                padding: 14px 0;
                border-bottom: 1px solid var(--line);
                font-size: 15px;
            }

            .nav-links a:last-child {
                border-bottom: none;
                margin-top: 8px;
            }

            .nav-links a.nav-cta {
                justify-content: center;
                text-align: center;
                padding: 14px 18px;
            }
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            padding-top: 0px;
            padding-bottom: 0;
            /* border-bottom: 1px solid var(--line); */
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 220px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220' preserveAspectRatio='none'%3E%3Cpath d='M0,220 L0,140 L60,140 L60,100 L80,100 L80,80 L100,80 L100,60 L110,60 L110,50 L120,50 L120,60 L140,60 L140,40 L150,40 L150,60 L160,60 L160,100 L180,100 L180,80 L200,80 L200,120 L220,120 L220,90 L230,90 L230,70 L240,70 L240,50 L250,50 L250,70 L260,70 L260,90 L280,90 L280,110 L300,110 L300,70 L310,70 L310,50 L330,50 L330,70 L360,70 L360,110 L380,110 L380,80 L390,80 L390,55 L400,55 L400,80 L410,80 L410,110 L440,110 L440,90 L460,90 L460,65 L470,65 L470,45 L480,45 L480,65 L490,65 L490,90 L520,90 L520,120 L540,120 L540,100 L560,100 L560,120 L580,120 L580,90 L590,90 L590,60 L610,60 L610,90 L630,90 L630,110 L660,110 L660,80 L670,80 L670,55 L690,55 L690,80 L710,80 L710,110 L740,110 L740,130 L760,130 L760,100 L780,100 L780,70 L800,70 L800,100 L820,100 L820,130 L850,130 L850,110 L870,110 L870,85 L890,85 L890,110 L910,110 L910,130 L940,130 L940,100 L960,100 L960,75 L980,75 L980,100 L1000,100 L1000,130 L1020,130 L1020,110 L1040,110 L1040,130 L1060,130 L1060,110 L1080,110 L1080,80 L1100,80 L1100,110 L1120,110 L1120,130 L1140,130 L1140,100 L1160,100 L1160,75 L1175,75 L1175,55 L1190,55 L1190,75 L1200,75 L1200,100 L1220,100 L1220,130 L1250,130 L1250,110 L1270,110 L1270,80 L1290,80 L1290,110 L1310,110 L1310,130 L1340,130 L1340,110 L1360,110 L1360,130 L1380,130 L1380,140 L1440,140 L1440,220 Z' fill='rgba(232,163,61,0.05)'/%3E%3Cpath d='M0,220 L0,160 L80,160 L80,150 L120,150 L120,140 L160,140 L160,155 L200,155 L200,160 L250,160 L250,145 L300,145 L300,160 L350,160 L350,148 L400,148 L400,160 L450,160 L450,150 L500,150 L500,160 L560,160 L560,148 L620,148 L620,160 L680,160 L680,150 L740,150 L740,165 L800,165 L800,155 L860,155 L860,165 L920,165 L920,155 L980,155 L980,165 L1040,165 L1040,155 L1100,155 L1100,165 L1160,165 L1160,155 L1220,155 L1220,165 L1280,165 L1280,155 L1340,155 L1340,165 L1440,165 L1440,220 Z' fill='rgba(11,27,51,0.03)'/%3E%3C/svg%3E") no-repeat bottom center / cover;
            pointer-events: none;
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: clamp(36px, 5vw, 72px);
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
        }

        @media (max-width:980px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            align-self: flex-start;
            width: fit-content;
            max-width: 100%;
            padding: 6px 12px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: var(--paper);
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--ink-2);
            white-space: nowrap;
        }

        .eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--amber);
            box-shadow: 0 0 0 4px rgba(232, 163, 61, 0.18);
            flex-shrink: 0;
        }

        @media (max-width:640px) {
            .eyebrow {
                white-space: normal;
            }
        }

        .hero h1 {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: clamp(46px, 6.8vw, 100px);
            line-height: 0.96;
            letter-spacing: -0.02em;
            margin: 22px 0 24px;
            text-wrap: balance;
        }

        .hero h1 .ital {
            font-style: italic;
            color: var(--amber-deep);
        }

        .hero h1 .city {
            position: relative;
            display: inline-block;
        }

        .hero h1 .city::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--amber), var(--amber-deep));
            border-radius: 2px;
        }

        .hero p.lead {
            font-size: 18px;
            line-height: 1.6;
            color: var(--ink-2);
            max-width: 580px;
            margin: 0 0 32px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background .2s ease, color .2s ease, border-color .2s ease;
        }

        .btn-primary {
            background: #1b1b1b;
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--amber-deep);
        }

        .btn-ghost {
            background: transparent;
            color: #1b1b1b;
            border-color: #1b1b1b;
        }

        .btn-ghost:hover {
            background: #1b1b1b;
            color: #fff;
        }

        .btn .arr {
            transition: transform .25s;
        }

        .btn:hover .arr {
            transform: translateX(3px);
        }

        /* Hero rank card */
        .hero-card {
            position: relative;
            background: #0B1B33;
            color: #fff;
            border-radius: 18px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            aspect-ratio: 4/5;
            max-height: 560px;
            overflow: hidden;
            box-shadow: 0 30px 60px -30px rgba(11, 27, 51, 0.45);
        }

        .hero-card .grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(232, 163, 61, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(232, 163, 61, 0.08) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .hero-card .glow {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 163, 61, 0.22), transparent 70%);
        }

        .hero-card>* {
            position: relative;
            z-index: 2;
        }

        .hero-card .tag {
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--amber);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-card .tag::before {
            content: "";
            width: 24px;
            height: 1px;
            background: var(--amber);
        }

        /* Ads dashboard preview inside card */
        .ads-preview {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(232, 163, 61, 0.25);
            border-radius: 10px;
            padding: 14px 16px;
            margin: 14px 0;
        }

        .ads-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .ads-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .ads-dot.r {
            background: #ff5f57;
        }

        .ads-dot.y {
            background: #febc2e;
        }

        .ads-dot.g {
            background: #28c840;
        }

        .ads-search {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 5px 10px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.04em;
        }

        .ads-rows {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .ads-rows:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .ads-rows .ar-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.75);
        }

        .ads-rows .ar-val {
            font-size: 12px;
            color: #8ab4f8;
            font-family: "JetBrains Mono", monospace;
        }

        .ads-rows .ar-val.up {
            color: #28c840;
        }

        .hero-card .stat-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .hero-card .stat .n {
            font-family: "Instrument Serif", serif;
            font-size: 40px;
            line-height: 1;
            color: #fff;
        }

        .hero-card .stat .l {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 5px;
            letter-spacing: 0.05em;
        }

        /* Hero metaline */
        .hero-metaline {
            margin-top: clamp(32px, 4vw, 48px);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            padding: clamp(20px, 2.5vw, 28px) 0;
            border-top: 1px solid var(--line);
            position: relative;
            z-index: 1;
        }

        @media (max-width:760px) {
            .hero-metaline {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }

        .meta .num {
            font-family: "Instrument Serif", serif;
            font-size: 38px;
            line-height: 1;
        }

        .meta .lbl {
            font-size: 12px;
            color: var(--muted);
            margin-top: 6px;
        }

        /* ===== SECTIONS ===== */
        section {
            padding: var(--section-y) 0;
            border-bottom: 1px solid var(--line);
        }

        section:last-child {
            border-bottom: none;
        }

        .sec-head {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(28px, 4vw, 48px);
            margin-bottom: 56px;
            align-items: start;
        }

        @media (max-width:900px) {
            .sec-head {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-bottom: 36px;
            }
        }

        .sec-label {
            font-family: "JetBrains Mono", monospace;
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 0.08em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sec-label b {
            color: #1b1b1b;
            font-weight: 500;
        }

        .sec-label::after {
            content: "";
            flex: 1;
            height: 1px;
            background: var(--line);
            max-width: 80px;
        }

        .sec-title {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: clamp(34px, 4.4vw, 60px);
            line-height: 1.02;
            letter-spacing: -0.015em;
            margin: 8px 0 0;
            text-wrap: balance;
        }

        .sec-title .ital {
            font-style: italic;
            color: var(--amber-deep);
        }

        .sec-blurb {
            font-size: 17px;
            line-height: 1.6;
            color: var(--ink-2);
            margin: 0;
        }

        /* ===== TRUST STRIP ===== */
        .trust-strip {
            background: #0B1B33;
            padding: 20px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .trust-inner {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
        }

        .trust-item .ti-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(232, 163, 61, 0.15);
            border: 1px solid rgba(232, 163, 61, 0.3);
            display: grid;
            place-items: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .trust-item strong {
            color: #fff;
        }

        /* ===== CARDS GRID ===== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        @media (max-width:980px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:640px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
        }

        .card {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 40px -28px rgba(11, 27, 51, 0.2);
        }

        .card.dark {
            background: #1b1b1b;
            color: #fff;
            border-color: #1b1b1b;
        }

        .card.dark .card-label {
            color: var(--amber);
        }

        .card.dark p {
            color: rgba(255, 255, 255, 0.8);
        }

        .card-label {
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--amber-deep);
        }

        .card h4 {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: 26px;
            line-height: 1.1;
            margin: 0;
        }

        .card p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--ink-2);
            margin: 0;
        }

        .card ul {
            margin: 8px 0 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card ul li {
            font-size: 13.5px;
            color: var(--ink-2);
            display: flex;
            gap: 10px;
            align-items: baseline;
        }

        .card.dark ul li {
            color: rgba(255, 255, 255, 0.82);
        }

        .card ul li::before {
            content: "→";
            color: var(--amber-deep);
            font-weight: 600;
        }

        .card.dark ul li::before {
            color: var(--amber);
        }

        .card-stat {
            font-family: "Instrument Serif", serif;
            font-size: 42px;
            line-height: 1;
            color: var(--amber-deep);
        }

        .card-stat-sub {
            font-size: 11px;
            color: var(--muted);
            margin-top: 4px;
            letter-spacing: 0.05em;
        }

        /* ===== PPC SERVICES GRID ===== */
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        @media (max-width:980px) {
            .svc-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:640px) {
            .svc-grid {
                grid-template-columns: 1fr;
            }
        }

        .svc-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 24px;
            background: var(--paper);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: transform .25s, box-shadow .25s;
        }

        .svc-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 36px -24px rgba(11, 27, 51, 0.18);
        }

        .svc-card.feature {
            background: #1b1b1b;
            color: #fff;
            border-color: #1b1b1b;
        }

        .svc-card.feature .svc-label {
            color: var(--amber);
        }

        .svc-card.feature p {
            color: rgba(255, 255, 255, 0.8);
        }

        .svc-label {
            font-family: "JetBrains Mono", monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--amber-deep);
        }

        .svc-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(232, 163, 61, 0.12);
            display: grid;
            place-items: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .svc-card.feature .svc-icon {
            background: rgba(232, 163, 61, 0.2);
        }

        .svc-card h4 {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: 22px;
            line-height: 1.1;
            margin: 0;
        }

        .svc-card p {
            font-size: 13.5px;
            line-height: 1.55;
            color: var(--ink-2);
            margin: 0;
        }

        .svc-divider {
            height: 1px;
            background: var(--line);
        }

        .svc-card.feature .svc-divider {
            background: rgba(255, 255, 255, 0.15);
        }

        .svc-foot {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .svc-stat {
            font-family: "Instrument Serif", serif;
            font-size: 28px;
            color: #1b1b1b;
        }

        .svc-card.feature .svc-stat {
            color: #fff;
        }

        .svc-stat-sub {
            font-size: 11px;
            color: var(--muted);
            margin-top: 3px;
        }

        .svc-card.feature .svc-stat-sub {
            color: rgba(255, 255, 255, 0.55);
        }

        .svc-tag {
            font-size: 10px;
            padding: 4px 9px;
            border-radius: 999px;
            border: 1px solid currentColor;
            opacity: 0.7;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        /* ===== PROCESS ===== */
        .process {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border: 1px solid var(--line);
            border-radius: 18px;
            overflow: hidden;
            background: var(--paper);
        }

        @media (max-width:980px) {
            .process {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width:640px) {
            .process {
                grid-template-columns: 1fr;
            }
        }

        .proc-step {
            position: relative;
            padding: 32px 24px 36px;
            border-right: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-height: 280px;
        }

        .proc-step:last-child {
            border-right: none;
        }

        @media (max-width:980px) {
            .proc-step {
                border-right: 1px solid var(--line);
            }

            .proc-step:nth-child(2n) {
                border-right: none;
            }

            .proc-step:nth-child(n+3) {
                border-top: 1px solid var(--line);
            }
        }

        @media (max-width:640px) {
            .proc-step {
                border-right: none !important;
                border-top: 1px solid var(--line);
            }

            .proc-step:first-child {
                border-top: none;
            }
        }

        .proc-num {
            font-family: "Instrument Serif", serif;
            font-size: 48px;
            line-height: 1;
            color: var(--amber-deep);
        }

        .proc-step h5 {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: 22px;
            line-height: 1.1;
            margin: 0;
        }

        .proc-step p {
            font-size: 13px;
            color: var(--ink-2);
            margin: 0;
            line-height: 1.55;
        }

        .proc-step .tags {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .proc-step .tags span {
            font-size: 10px;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 4px 8px;
            border-radius: 999px;
            background: var(--bg-2, #f5f5f5);
            color: var(--ink-2);
        }

        .proc-step::after {
            content: "›";
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--bg);
            border: 1px solid var(--line);
            display: grid;
            place-items: center;
            font-size: 16px;
            color: #1b1b1b;
            z-index: 2;
        }

        .proc-step:last-child::after {
            display: none;
        }

        @media (max-width:980px) {
            .proc-step::after {
                display: none;
            }
        }

        /* ===== RESULTS SHELL ===== */
        .results-shell {
            background: #0B1B33;
            color: #fff;
            border-radius: 18px;
            padding: 64px 56px;
            position: relative;
            overflow: hidden;
        }

        @media (max-width:760px) {
            .results-shell {
                padding: 40px 28px;
            }
        }

        .results-shell::before {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            border: 1px solid rgba(232, 163, 61, 0.2);
        }

        .results-shell::after {
            content: "";
            position: absolute;
            right: -40px;
            top: -40px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            border: 1px dashed rgba(232, 163, 61, 0.3);
        }

        .results-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 48px;
            align-items: end;
            position: relative;
            z-index: 2;
        }

        @media (max-width:900px) {
            .results-head {
                grid-template-columns: 1fr;
            }
        }

        .results-head h2 {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: clamp(34px, 4.2vw, 58px);
            line-height: 1.02;
            margin: 8px 0 0;
            letter-spacing: -0.015em;
        }

        .results-head h2 .ital {
            font-style: italic;
            color: var(--amber);
        }

        .results-head p {
            color: rgba(255, 255, 255, 0.72);
            margin: 0;
            max-width: 480px;
        }

        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
        }

        @media (max-width:760px) {
            .kpi-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .kpi {
            padding: 28px 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .kpi:last-child {
            border-right: none;
        }

        @media (max-width:760px) {
            .kpi:nth-child(2n) {
                border-right: none;
            }

            .kpi:nth-child(n+3) {
                border-top: 1px solid rgba(255, 255, 255, 0.15);
            }
        }

        .kpi .n {
            font-family: "Instrument Serif", serif;
            font-size: 54px;
            line-height: 0.9;
            color: #fff;
        }

        .kpi .n small {
            font-size: 22px;
            color: var(--amber);
        }

        .kpi .l {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
        }

        .kpi .t {
            font-size: 10px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--amber);
            margin-top: 4px;
        }

        /* ===== LOCATIONS ===== */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        @media (max-width:980px) {
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:640px) {
            .locations-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }

        .loc-card {
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 18px 16px;
            background: var(--paper);
            display: flex;
            flex-direction: column;
            gap: 6px;
            transition: transform .2s, box-shadow .2s;
        }

        .loc-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 30px -20px rgba(11, 27, 51, 0.18);
        }

        .loc-card.hl {
            background: #1b1b1b;
            color: #fff;
            border-color: #1b1b1b;
        }

        .loc-icon {
            font-size: 22px;
        }

        .loc-name {
            font-family: "Instrument Serif", serif;
            font-size: 18px;
            line-height: 1.1;
        }

        .loc-card.hl .loc-sub {
            color: rgba(255, 255, 255, 0.6);
        }

        .loc-sub {
            font-size: 12px;
            color: var(--muted);
        }

        /* ===== WHY US COMPARISON ===== */
        .cmp-wrap-scroll {
            overflow-x: auto;
        }

        .cmp-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 14px;
            overflow: hidden;
            font-size: 14px;
        }

        .cmp-table th,
        .cmp-table td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--line);
            border-right: 1px solid var(--line);
            text-align: left;
            vertical-align: top;
        }

        .cmp-table th:last-child,
        .cmp-table td:last-child {
            border-right: none;
        }

        .cmp-table thead th {
            background: #1b1b1b;
            color: #fff;
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .cmp-table tbody tr:last-child td {
            border-bottom: none;
        }

        .cmp-table td.hl,
        .cmp-table th.hl {
            background: rgba(232, 163, 61, 0.10);
            font-weight: 600;
        }

        /* ===== TESTIMONIALS ===== */
        .testis {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        @media (max-width:900px) {
            .testis {
                grid-template-columns: 1fr;
            }
        }

        .testi {
            margin: 0;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .testi .q {
            font-family: "Instrument Serif", serif;
            font-size: 23px;
            line-height: 1.25;
            letter-spacing: -0.01em;
            margin: 0;
        }

        .testi .q::before {
            content: "\201C";
            color: var(--amber-deep);
            font-size: 42px;
            line-height: 0;
            vertical-align: -12px;
            margin-right: 4px;
        }

        .testi .who {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--line);
            padding-top: 16px;
        }

        .testi .av {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #1b1b1b;
            color: #fff;
            display: grid;
            place-items: center;
            font-family: "Instrument Serif", serif;
            font-size: 16px;
            flex-shrink: 0;
        }

        .testi .tn {
            font-size: 14px;
            font-weight: 600;
        }

        .testi .tr {
            font-size: 12px;
            color: var(--muted);
        }

        .testi .stars {
            color: var(--amber);
            font-size: 14px;
            letter-spacing: 1px;
        }

        /* ===== PRICING ===== */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        @media (max-width:980px) {
            .price-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:640px) {
            .price-grid {
                grid-template-columns: 1fr;
            }
        }

        .price-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 26px;
            background: var(--paper);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .price-card.feature {
            background: #1b1b1b;
            color: #fff;
            border-color: #1b1b1b;
        }

        .price-card.feature p,
        .price-card.feature li {
            color: rgba(255, 255, 255, 0.82);
        }

        .pc-tag {
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--amber-deep);
        }

        .price-card.feature .pc-tag {
            color: var(--amber);
        }

        .pc-title {
            font-family: "Instrument Serif", serif;
            font-size: 26px;
            margin: 0;
        }

        .pc-range {
            font-family: "Instrument Serif", serif;
            font-size: 30px;
            margin: 4px 0 0;
        }

        .pc-range small {
            font-family: "Inter Tight", sans-serif;
            font-size: 12px;
            color: var(--muted);
        }

        .price-card.feature .pc-range small {
            color: rgba(255, 255, 255, 0.5);
        }

        .price-card ul {
            margin: 10px 0 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 13px;
        }

        .price-card ul li::before {
            content: "✓ ";
            color: var(--amber-deep);
            font-weight: 700;
        }

        .price-card.feature ul li::before {
            color: var(--amber);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--paper);
            overflow: hidden;
        }

        .faq-item summary {
            cursor: pointer;
            padding: 16px 20px;
            font-weight: 600;
            font-size: 15px;
            list-style: none;
            display: flex;
            justify-content: space-between;
            gap: 14px;
            align-items: center;
        }

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

        .faq-item summary::after {
            content: "+";
            font-family: "Instrument Serif", serif;
            font-size: 22px;
            color: var(--amber-deep);
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            content: "–";
        }

        .faq-item .faq-a {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--ink-2);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== CTA FOOTER ===== */
        .cta-section {
            padding: var(--section-y) 0;
        }

        .cta-inner {
            background: #0B1B33;
            color: #fff;
            border-radius: 18px;
            padding: 64px 56px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        @media (max-width:900px) {
            .cta-inner {
                grid-template-columns: 1fr;
                padding: 40px 28px;
            }
        }

        .cta-inner::before {
            content: "";
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 1px solid rgba(232, 163, 61, 0.2);
        }

        .cta-inner h2 {
            font-family: "Instrument Serif", serif;
            font-weight: 400;
            font-size: clamp(36px, 4.8vw, 68px);
            line-height: 1;
            letter-spacing: -0.02em;
            margin: 0;
            text-wrap: balance;
            position: relative;
            z-index: 2;
        }

        .cta-inner h2 .ital {
            font-style: italic;
            color: var(--amber);
        }

        .cta-right {
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-width: 260px;
            position: relative;
            z-index: 2;
        }

        .cta-right .row {
            font-size: 14px;
            display: flex;
            gap: 10px;
            align-items: baseline;
        }

        .cta-right .row b {
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 500;
            min-width: 52px;
        }

        .cta-right .row a {
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }

        .cta-right .row a:hover {
            border-color: var(--amber);
            color: var(--amber);
        }

        /* ===== FOOTER SITEMAP ===== */
        .footer-sitemap {
            margin-top: 40px;
            padding-top: 28px;
            border-top: 1px solid var(--line);
        }

        .footer-sitemap-row {
            display: flex;
            align-items: stretch;
            justify-content: flex-start;
            gap: clamp(24px, 3vw, 40px);
            margin: 0 0 14px;
            padding: 0 0 14px;
            border-bottom: 1px solid var(--line);
        }

        .footer-sitemap-divider {
            flex: 0 0 1px;
            width: 1px;
            background: var(--line);
            align-self: stretch;
            min-height: 52px;
        }

        .footer-sitemap-title {
            flex: 0 0 auto;
            min-width: 92px;
            margin: 0;
            padding-top: 3px;
            align-self: flex-start;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--ink);
        }

        .footer-sitemap-cols {
            flex: 1 1 0;
            min-width: 0;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px clamp(16px, 2.5vw, 36px);
        }

        .footer-sol-col {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-sol-col a {
            color: #1b1b1b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .footer-sol-col a:hover {
            color: var(--amber-deep);
        }

        .footer-nav-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            border: 1px solid var(--line);
            border-radius: 4px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.45);
        }

        .footer-nav-strip a {
            flex: 1 1 auto;
            min-width: 0;
            padding: 11px clamp(6px, 1vw, 14px);
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid var(--line);
            color: #1b1b1b;
            text-decoration: none;
            font-size: clamp(11px, 1.05vw, 13px);
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color .2s, background .2s;
        }

        .footer-nav-strip a:last-child {
            border-right: none;
        }

        .footer-nav-strip a:hover {
            color: var(--amber-deep);
            background: rgba(255, 255, 255, 0.65);
        }

        .footer-nav-strip a.is-current {
            color: #f9c002;
            font-weight: 600;
            background: #000;
        }

        footer {
            font-size: 12px;
            color: var(--muted);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 16px;
            flex-wrap: wrap;
            padding: 24px 0 32px;
        }

        /* Responsive tweaks */
        @media (max-width:640px) {
            :root {
                --page-x: 20px;
                --section-y: 52px;
                --nav-h: 64px;
            }

            .hero h1 {
                margin: 16px 0 18px;
            }

            .hero p.lead {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

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

            .cta-section {
                padding: 40px 0 24px;
            }

            .footer-sitemap-row {
                flex-direction: column;
                gap: 14px;
            }

            .footer-sitemap-divider {
                display: none;
            }

            .footer-sitemap-title {
                padding-bottom: 8px;
                border-bottom: 1px solid var(--line);
                width: 100%;
            }

            .footer-sitemap-cols {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px 16px;
                width: 100%;
            }
        }
    

                #contact {
                    padding-bottom: 0px !important;
                }

                .cta-social {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-top: 8px;
                    padding-top: 18px;
                    border-top: 1px solid var(--line);
                    width: 100%;
                }

                .cta-social a {
                    width: 44px;
                    height: 44px;
                    border-radius: 50%;
                    border: 1px solid var(--line);
                    background: var(--paper);
                    color: #1b1b1b;
                    display: grid;
                    place-items: center;
                    text-decoration: none;
                    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
                }

                .cta-social-label {
                    font-family: "JetBrains Mono", monospace;
                    font-size: 11px;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    color: var(--muted);
                    margin-right: 4px;
                }

                .cta-social-links {
                    display: flex;
                    gap: 10px;
                    flex-wrap: wrap;
                }

                .cta-social a svg {
                    width: 20px;
                    height: 20px;
                    display: block;
                }
            
      .cta-locations {
        margin-top: 2px;
        width: 100%;
      }
      .cta-location-links {
        display: flex;
        align-items: baseline;
        gap: 16px;
        flex-wrap: wrap;
      }
      .cta-locations a.is-current {
        color: var(--amber-deep);
        border-bottom-color: var(--amber-deep);
        font-weight: 600;
      }
