:root{--legacy-061e36:#061e36;--legacy-0d3b66:#0d3b66;--legacy-1a1a2e:#1a1a2e;--legacy-4aaec9:#4aaec9;--legacy-5a6478:#5a6478;--legacy-5bc0de:#5bc0de;--legacy-8a6a10:#8a6a10;--legacy-a8e0c2:#a8e0c2;--legacy-d4a843:#d4a843;--legacy-edf7f2:#edf7f2;--legacy-f5c6c6:#f5c6c6;--legacy-f5e4b3:#f5e4b3;--legacy-fff5f5:#fff5f5}
:root {
            --navy: var(--legacy-0d3b66, #0D3B66);
            --navy-deep: var(--legacy-061e36, #061e36);
            --cyan: var(--legacy-5bc0de, #5BC0DE);
            --gold: var(--legacy-d4a843, #D4A843);
            --gold-light: var(--legacy-f5e4b3, #f5e4b3);
            --text: var(--legacy-1a1a2e, #1a1a2e);
            --text-muted: var(--legacy-5a6478, #5a6478);
            --light: var(--color-surface-alt, #F7F8FC);
            --white: var(--color-background, #ffffff);
            --border: rgba(13,59,102,0.12);
            --shadow-sm: 0 2px 12px rgba(13,59,102,0.07);
            --shadow-md: 0 8px 32px rgba(13,59,102,0.12);
            --shadow-lg: 0 20px 60px rgba(13,59,102,0.15);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        h2 { font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy-deep); line-height: 1.2; }
        h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--navy); }
        h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--navy); }
        p { color: var(--text-muted); line-height: 1.75; }
        strong { color: var(--text); font-weight: 600; }

        .btn-primary {
            background: var(--navy);
            color: var(--color-background, #fff);
            padding: 16px 36px;
            border-radius:var(--radius-sm, 4px);
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.03em;
            transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,59,102,0.25); }

        .tag {
            display: inline-block;
            background: var(--gold-light);
            color: var(--legacy-8a6a10, #8a6a10);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 2px;
            margin-bottom: 18px;
        }

        /* ── HERO ── */
        .hero {
            background: var(--navy-deep);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: rgba(91,192,222,0.06);
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px; left: 10%;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: rgba(212,168,67,0.05);
        }
        .hero-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
        .hero-left { flex: 1; min-width: 300px; }
        .hero-right { flex: 1; min-width: 280px; }
        .hero-right img { width: 100%; border-radius:var(--radius-sm, 8px); box-shadow: var(--shadow-lg); display: block; }
        .hero h1 {
            font-family: 'Fraunces', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.6rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--color-background, #fff);
            margin-bottom: 24px;
        }
        .hero h1 em { font-style: italic; color: var(--cyan); }
        .hero p { color: rgba(255,255,255,0.72); font-size: 1.08rem; margin-bottom: 36px; max-width: 520px; }
        .hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
        .hero-badge {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.85);
            padding: 7px 16px;
            border-radius:var(--radius-sm, 3px);
            font-size: 0.82rem;
            font-weight: 500;
        }
        .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
        .btn-hero {
            background: var(--cyan);
            color: var(--navy-deep);
            padding: 17px 38px;
            border-radius:var(--radius-sm, 4px);
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.02em;
            transition: all 0.25s;
        }
        .btn-hero:hover { background: var(--legacy-4aaec9, #4aaec9); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(91,192,222,0.35); }
        .hero-note { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

        /* ── STATS BAR ── */
        .stats-bar { background: var(--gold); padding: 20px 0; }
        .stats-inner { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
        .stat { text-align: center; }
        .stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--navy-deep); line-height: 1; }
        .stat-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(6,30,54,0.7); margin-top: 4px; }

        /* ── SECTIONS ── */
        .section { padding: 90px 0; }
        .section-sm { padding: 60px 0; }
        .bg-light { background: var(--light); }
        .bg-navy { background: var(--navy-deep); }
        .section-intro { max-width: 720px; margin: 0 auto 56px; text-align: center; }
        .section-intro p { margin-top: 16px; font-size: 1.05rem; }

        /* ── PROBLEM / SOLUTION ── */
        .ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
        .ps-col { padding: 40px; }
        .ps-col.problem { background: var(--legacy-fff5f5, #fff5f5); }
        .ps-col.solution { background: var(--legacy-edf7f2, #edf7f2); }
        .ps-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
        .ps-col h3 { margin-bottom: 14px; }
        .ps-list { list-style: none; }
        .ps-list li { padding: 7px 0; font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
        .ps-list li::before { content: ''; display: block; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; border-radius: 50%; }
        .problem .ps-list li::before { background: var(--legacy-f5c6c6, #f5c6c6); }
        .solution .ps-list li::before { background: var(--legacy-a8e0c2, #a8e0c2); }

        /* ── SCALE CARDS ── */
        .scale-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
        .scale-card {
            background: var(--navy-deep);
            border-radius:var(--radius-sm, 8px);
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
        }
        .scale-card::before {
            content: '';
            position: absolute;
            top: -30px; right: -30px;
            width: 120px; height: 120px;
            border-radius: 50%;
            background: rgba(91,192,222,0.07);
        }
        .scale-card h4 { color: var(--color-background, #fff); font-size: 1.05rem; margin-bottom: 10px; }
        .scale-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
        .scale-num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: var(--cyan); margin-bottom: 10px; line-height: 1; }

        /* ── HOW IT WORKS ── */
        .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; counter-reset: step; }
        .step {
            padding: 40px 32px;
            border-right: 1px solid var(--border);
            position: relative;
            counter-increment: step;
        }
        .step:last-child { border-right: none; }
        .step::before {
            content: counter(step, decimal-leading-zero);
            font-family: 'Fraunces', serif;
            font-size: 3.5rem;
            font-weight: 300;
            color: rgba(13,59,102,0.07);
            position: absolute;
            top: 20px; right: 24px;
            line-height: 1;
        }
        .step-icon {
            width: 48px; height: 48px;
            background: var(--navy);
            border-radius:var(--radius-sm, 4px);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }
        .step-icon svg { width: 24px; height: 24px; stroke: var(--color-background, #fff); fill: none; stroke-width: 2; }
        .step h3 { margin-bottom: 10px; }
        .step p { font-size: 0.93rem; }

        /* ── WHY ── */
        .why-grid { display: flex; align-items: center; gap: 70px; flex-wrap: wrap; }
        .why-left { flex: 1; min-width: 300px; }
        .why-right { flex: 1; min-width: 280px; }
        .why-right img { width: 100%; border-radius:var(--radius-sm, 8px); box-shadow: var(--shadow-md); }
        .benefit-list { list-style: none; margin: 28px 0 36px; }
        .benefit-list li {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            display: flex; gap: 14px; align-items: flex-start;
            font-size: 0.95rem;
        }
        .benefit-list li:last-child { border-bottom: none; }
        .benefit-icon {
            width: 32px; height: 32px;
            background: var(--cyan);
            border-radius:var(--radius-sm, 3px);
            flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
        }
        .benefit-icon svg { width: 16px; height: 16px; stroke: var(--color-background, #fff); fill: none; stroke-width: 2.5; }
        .benefit-text strong { display: block; color: var(--text); margin-bottom: 2px; }

        /* ── REQUIREMENTS ── */
        .req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
        .req-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius:var(--radius-sm, 6px);
            padding: 28px 24px;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .req-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .req-num { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--cyan); margin-bottom: 12px; }
        .req-card h4 { margin-bottom: 8px; }
        .req-card p { font-size: 0.92rem; }

        /* ── SERVICES ── */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; margin-top: 36px; }
        .service-tile {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius:var(--radius-sm, 5px);
            padding: 18px 16px;
            text-align: center;
            transition: all 0.2s;
        }
        .service-tile:hover { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(91,192,222,0.15); transform: translateY(-2px); }
        .service-tile a { text-decoration: none; color: var(--navy); font-weight: 500; font-size: 0.92rem; display: block; }
        .service-tile .s-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }

        /* ── TOP 10 LOCATIONS ── */
        .locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 36px; }
        .location-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius:var(--radius-sm, 6px);
            padding: 20px 18px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: all 0.2s;
        }
        .location-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--cyan); }
        .loc-rank { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--cyan); line-height: 1; flex-shrink: 0; }
        .loc-name { font-weight: 600; color: var(--navy-deep); font-size: 0.95rem; }
        .loc-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

        /* ── TRUST STRIP ── */
        .trust-strip { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; justify-content: center; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 60px 0; }
        .trust-item { text-align: center; }
        .trust-num { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); }
        .trust-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

        /* ── APPLY ── */
        #apply { scroll-margin-top: 30px; }
        .apply-inner { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
        .apply-left { flex: 1; min-width: 280px; }
        .apply-right { flex: 2; min-width: 300px; }
        .apply-points { list-style: none; margin-top: 24px; }
        .apply-points li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); font-size: 0.94rem; display: flex; gap: 10px; align-items: center; }
        .apply-points li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
        .apply-head { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--color-background, #fff); margin-bottom: 12px; }
        .apply-sub { color: rgba(255,255,255,0.65); margin-bottom: 0; }

        /* ── FAQ ── */
        .faq-list { max-width: 780px; margin: 40px auto 0; }
        .faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
        .faq-item:first-child { border-top: 1px solid var(--border); }
        .faq-q { font-weight: 600; color: var(--navy-deep); font-size: 1rem; margin-bottom: 10px; }
        .faq-a { font-size: 0.95rem; color: var(--text-muted); }

        /* ── AREA PILLS ── */
        .area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-top: 28px; }
        .area-pill { background: var(--white); border: 1px solid var(--border); border-radius:var(--radius-sm, 3px); padding: 10px 14px; font-size: 0.85rem; text-align: center; color: var(--text-muted); }

        footer { background: var(--navy-deep); padding: 48px 0; text-align: center; }
        footer p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
        footer strong { color: rgba(255,255,255,0.7); }

        @media (max-width: 768px) {
            .hero-inner { flex-direction: column-reverse; text-align: center; }
            .hero p { margin-left: auto; margin-right: auto; }
            .hero-cta { justify-content: center; }
            .why-grid { flex-direction: column-reverse; }
            .ps-grid { grid-template-columns: 1fr; }
            .steps { grid-template-columns: 1fr; }
            .step { border-right: none; border-bottom: 1px solid var(--border); }
            .stats-inner { gap: 30px; }
            .apply-inner { flex-direction: column; }
        }