            --dark-2:     #1a1f2e;
            --dark-3:     #1f2937;
            --mid:        #4b5563;
            --light:      #6b7280;
            --border:     #e5e7eb;
            --bg:         #f8fafc;
            --white:      #ffffff;
            --font-sans: 'Georgia', 'Times New Roman', serif; /* fallback — overridden after load */
            --radius:     0.5rem;
            --radius-lg:  0.75rem;
            --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
            --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
            --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            font-display: swap;
            color: var(--dark-3);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        /* ─── TYPOGRAPHY ─────────────────────────────── */
        h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; color: var(--dark); }
        h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; color: var(--dark); }
        h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; color: var(--dark-3); }
        h4 { font-size: 1.1rem; font-weight: 600; color: var(--dark-3); }
        p  { color: var(--mid); line-height: 1.8; margin-bottom: 1rem; }
        a  { color: var(--teal); text-decoration: none; }
        a:hover { color: var(--teal-dark); }

        /* ─── LAYOUT ─────────────────────────────────── */
        .container { max-width: 74rem; margin: 0 auto; padding: 0 1.5rem; }
        .container-narrow { max-width: 52rem; margin: 0 auto; padding: 0 1.5rem; }
        .section { padding: 5rem 0; }
        .section-alt { background: var(--bg); }
        .section-dark { background: var(--dark-2); }

        /* ─── BUTTONS ────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 0.9375rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .btn-primary { background: var(--amber); color: var(--white); }
        .btn-primary:hover { background: var(--amber-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
        .btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white); }
        .btn-teal { background: var(--teal); color: var(--white); }
        .btn-teal:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

        /* ─── HEADER ─────────────────────────────────── */
        #site-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        #site-header nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4.5rem;
            padding: 0 1.5rem;
            max-width: 74rem;
            margin: 0 auto;
        }
        .logo { font-weight: 800; font-size: 1.375rem; color: var(--teal); letter-spacing: -0.02em; }
        .logo span { color: var(--amber); }
        .nav-links { display: none; gap: 2.25rem; list-style: none; }
        @media (min-width: 768px) { .nav-links { display: flex; } }
        .nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--dark-3); transition: color 0.2s; }
        .nav-links a:hover { color: var(--teal); }
        .nav-links .nav-cta { color: var(--teal); }
        .header-cta { display: none; }
        @media (min-width: 900px) { .header-cta { display: inline-flex; } }

        /* ─── HERO ───────────────────────────────────── */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 4.5rem;
            overflow: hidden;
            background: linear-gradient(135deg, #0d1117 0%, #0f2d2a 50%, #0d1117 100%);
        }
        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 50%, rgba(15,118,110,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(217,119,6,0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
            padding: 5rem 0 4rem;
        }
        @media (min-width: 900px) {
            .hero-grid { grid-template-columns: 1fr 0.9fr; padding: 6rem 0 5rem; }
        }
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(15,118,110,0.2);
            border: 1px solid rgba(15,118,110,0.4);
            color: #5eead4;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }
        .hero-label::before { content: ''; width: 6px; height: 6px; background: #5eead4; border-radius: 50%; animation: pulse-dot 2s infinite; }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }
        #hero h1 { color: var(--white); margin-bottom: 1.5rem; }
        #hero h1 .accent { color: #5eead4; }
        #hero h1 .amber { color: #fcd34d; }
        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255,255,255,0.72);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 36rem;
        }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.12);
        }
        .hero-stat-item .stat-num {
            font-size: 1.875rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }
        .hero-stat-item .stat-num span { color: #fcd34d; }
        .hero-stat-item .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 0.25rem; }

        /* Hero Visual Card */
        .hero-visual {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1.25rem;
            padding: 2rem;
            backdrop-filter: blur(20px);
        }
        .hero-visual-title {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.4);
            margin-bottom: 1.25rem;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 0.875rem 1rem;
            border-radius: 0.625rem;
            margin-bottom: 0.625rem;
            background: rgba(255,255,255,0.04);
        }
        .rank-pos {
            width: 2rem; height: 2rem;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; font-weight: 800;
            flex-shrink: 0;
        }
        .rank-pos.up   { background: rgba(16,185,129,0.2); color: #34d399; }
        .rank-pos.hot  { background: rgba(217,119,6,0.2); color: #fbbf24; }
        .rank-kw { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85); flex: 1; }
        .rank-change { font-size: 0.75rem; font-weight: 700; color: #34d399; }
        .rank-change.new { color: #fbbf24; }
        .hero-visual-footer {
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .traffic-bar-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
        .traffic-bar {
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 0.375rem;
        }
        .traffic-bar-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(to right, var(--teal), #5eead4);
            width: 73%;
            animation: bar-grow 2s ease-out forwards;
        }
        @keyframes bar-grow { from { width: 0%; } to { width: 73%; } }

        /* ─── TRUST STRIP ────────────────────────────── */
        #trust-strip {
            background: var(--dark);
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .trust-strip-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem 3.5rem;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.875rem;
            font-weight: 700;
            color: rgba(255,255,255,0.8);
            white-space: nowrap;
        }
        .trust-item .icon { font-size: 1.125rem; }
        .trust-item .highlight { color: #fcd34d; }

        /* ─── SECTION LABELS ─────────────────────────── */
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 0.875rem;
        }
        .section-intro {
            font-size: 1.1rem;
            color: var(--mid);
            max-width: 44rem;
            line-height: 1.75;
            margin-bottom: 0;
        }
        .section-header { margin-bottom: 3.5rem; }
        .section-header-centered { text-align: center; margin-bottom: 3.5rem; }
        .section-header-centered .section-intro { margin: 1rem auto 0; }
        .divider {
            width: 3rem;
            height: 3px;
            background: linear-gradient(to right, var(--teal), var(--amber));
            border-radius: 10px;
            margin: 1rem 0 1.5rem;
        }
        .divider-center { margin: 1rem auto 1.5rem; }

        /* ─── PROBLEM SECTION ────────────────────────── */
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2.5rem;
        }
        @media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
        .problem-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            transition: box-shadow 0.25s, transform 0.25s;
        }
        .problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .problem-icon {
            width: 3rem; height: 3rem;
            background: #fef2f2;
            border-radius: var(--radius);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.375rem;
            margin-bottom: 1rem;
        }
        .problem-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
        .problem-card p { font-size: 0.9rem; margin-bottom: 0; }

        /* ─── PROCESS SECTION ────────────────────────── */
        .process-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
        }
        @media (min-width: 900px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
        .process-step {
            position: relative;
            padding: 2.5rem 2rem;
            text-align: center;
            border-right: 1px solid var(--border);
        }
        .process-step:last-child { border-right: none; }
        @media (max-width: 899px) {
            .process-step { border-right: none; border-bottom: 1px solid var(--border); }
            .process-step:last-child { border-bottom: none; }
        }
        .step-number {
            width: 3.5rem; height: 3.5rem;
            background: var(--teal);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.125rem;
            font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.25rem;
        }
        .step-connector {
            display: none;
        }
        @media (min-width: 900px) {
            .process-step:not(:last-child)::after {
                content: '→';
                position: absolute;
                right: -0.9rem;
                top: 50%;
                transform: translateY(-50%);
                font-size: 1.25rem;
                color: var(--teal);
                z-index: 1;
            }
        }
        .process-step h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; }
        .process-step p { font-size: 0.9rem; margin-bottom: 0; }

        /* ─── WHY US ─────────────────────────────────── */
        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
        }
        @media (min-width: 900px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }
        .why-us-list { list-style: none; }
        .why-us-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--border);
        }
        .why-us-item:last-child { border-bottom: none; }
        .why-check {
            width: 2rem; height: 2rem;
            background: var(--teal-light);
            color: var(--teal);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.875rem;
            font-weight: 900;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }
        .why-us-item h4 { margin-bottom: 0.25rem; }
        .why-us-item p { font-size: 0.9rem; margin-bottom: 0; }
        .comparison-table {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .compare-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            font-size: 0.85rem;
        }
        .compare-row.header {
            background: var(--dark-2);
            color: var(--white);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .compare-cell {
            padding: 0.875rem 1rem;
            border-right: 1px solid var(--border);
            display: flex; align-items: center; gap: 0.375rem;
        }
        .compare-cell:last-child { border-right: none; }
        .compare-row:not(.header):nth-child(even) { background: var(--bg); }
        .compare-yes { color: #059669; font-weight: 700; }
        .compare-no  { color: #9ca3af; }
        .compare-highlight { background: rgba(15,118,110,0.05); }

        /* ─── SERVICES ───────────────────────────────── */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            border-color: var(--teal);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .service-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
        .service-card p { font-size: 0.875rem; margin-bottom: 1.25rem; flex: 1; }
        .service-link {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--teal);
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            margin-top: auto;
        }
        .service-link:hover { color: var(--teal-dark); }

        /* ─── RESULTS ────────────────────────────────── */
        .results-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 900px) { .results-grid { grid-template-columns: 1fr 1fr; } }
        .result-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
        }
        .result-badge {
            display: inline-block;
            background: var(--teal-light);
            color: var(--teal);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.3rem 0.75rem;
            border-radius: 100px;
            margin-bottom: 1.25rem;
        }
        .result-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: var(--bg);
            border-radius: var(--radius);
        }
        .result-metric-item { text-align: center; }
        .result-metric-item .rn { font-size: 1.625rem; font-weight: 800; color: var(--teal); line-height: 1; }
        .result-metric-item .rl { font-size: 0.75rem; color: var(--light); margin-top: 0.25rem; }

        /* ─── LOCATIONS ──────────────────────────────── */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        @media (min-width: 480px)  { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 768px)  { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
        @media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(5, 1fr); } }
        .location-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark-3);
            transition: all 0.2s;
            text-decoration: none;
        }
        .location-link:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
        .location-pin { color: var(--teal); font-size: 0.75rem; }

        /* ─── FAQ ────────────────────────────────────── */
        .faq-list { max-width: 52rem; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 1.375rem 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-3);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: color 0.2s;
        }
        .faq-question:hover { color: var(--teal); }
        .faq-chevron {
            width: 1.5rem; height: 1.5rem;
            background: var(--bg);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
            transition: transform 0.25s, background 0.2s;
        }
        .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--teal-light); color: var(--teal); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .faq-answer-inner {
            padding: 0 0 1.375rem;
            color: var(--mid);
            font-size: 0.9375rem;
            line-height: 1.8;
        }

        /* ─── TESTIMONIALS ───────────────────────────── */
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1200px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.25s;
        }
        .testimonial-card:hover { box-shadow: var(--shadow-md); }
        .stars { color: #f59e0b; font-size: 0.875rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
        .testimonial-quote { font-size: 0.9375rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
        .testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
        .author-avatar {
            width: 2.75rem; height: 2.75rem;
            border-radius: 50%;
            background: var(--teal);
            color: var(--white);
            font-weight: 800;
            font-size: 0.9375rem;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .author-name { font-weight: 700; font-size: 0.9375rem; color: var(--dark-3); }
        .author-role { font-size: 0.8125rem; color: var(--light); }

        /* ─── PRICING ────────────────────────────────── */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
        .pricing-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 1.75rem;
            text-align: center;
            position: relative;
            transition: box-shadow 0.25s, transform 0.25s;
        }
        .pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .pricing-card.featured {
            border-color: var(--teal);
            box-shadow: 0 0 0 2px var(--teal);
        }
        .featured-badge {
            position: absolute;
            top: -0.875rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--teal);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 0.25rem 0.875rem;
            border-radius: 100px;
            white-space: nowrap;
        }
        .pricing-tier { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 0.5rem; }
        .pricing-price { font-size: 2.25rem; font-weight: 800; color: var(--dark); line-height: 1; margin: 0.75rem 0; }
        .pricing-price span { font-size: 1rem; font-weight: 500; color: var(--light); }
        .pricing-desc { font-size: 0.875rem; color: var(--mid); margin-bottom: 1.5rem; }
        .pricing-features { list-style: none; text-align: left; margin-bottom: 1.75rem; }
        .pricing-features li {
            padding: 0.4375rem 0;
            font-size: 0.875rem;
            color: var(--mid);
            display: flex;
            gap: 0.5rem;
            align-items: flex-start;
            border-bottom: 1px solid var(--bg);
        }
        .pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; }

        /* ─── BLOG PREVIEW ───────────────────────────── */
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
        .blog-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: box-shadow 0.25s, transform 0.25s;
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
        .blog-cat {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--amber);
            margin-bottom: 0.625rem;
        }
        .blog-card h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; flex: 1; }
        .blog-card h3 a { color: var(--dark-3); }
        .blog-card h3 a:hover { color: var(--teal); }
        .blog-meta-row { font-size: 0.8125rem; color: var(--light); margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--bg); }

        /* ─── FINAL CTA ──────────────────────────────── */
        #final-cta {
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        #final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
        }
        #final-cta .container { position: relative; z-index: 1; text-align: center; }
        #final-cta h2 { color: var(--white); margin-bottom: 1rem; }
        #final-cta p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }
        .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ─── CONTACT FORM ───────────────────────────── */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            max-width: 36rem;
            margin: 0 auto;
        }
        .form-group { margin-bottom: 1.25rem; }
        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark-3);
            margin-bottom: 0.4rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.9375rem;
            color: var(--dark-3);
            background: var(--bg);
            transition: border-color 0.2s;
            font-family: inherit;
            font-display: swap;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            background: var(--white);
        }
        .form-group textarea { resize: vertical; min-height: 5rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-privacy { font-size: 0.8125rem; color: var(--light); text-align: center; margin-top: 0.875rem; }

        /* ─── FOOTER ─────────────────────────────────── */
        #site-footer {
            background: linear-gradient(135deg, rgba(13,17,23,0.97) 0%, rgba(15,45,42,0.97) 100%),
                        url('/images/footer-bg.png') center/cover no-repeat;
            color: var(--white);
            padding: 5rem 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        @media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
        .footer-brand .logo { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
        .footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 22rem; }
        .footer-col h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.625rem; }
        .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
        .footer-links a:hover { color: var(--white); }
        .footer-contact-item { display: flex; gap: 0.625rem; align-items: center; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
        .footer-bottom {
            padding: 1.75rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin-bottom: 0; }
        .footer-legal { display: flex; gap: 1.5rem; }
        .footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
        .footer-legal a:hover { color: rgba(255,255,255,0.7); }

        /* ─── MOBILE MENU ────────────────────────────── */
        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 0.5rem;
            background: var(--white);
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }
        @media (min-width: 768px) { .mobile-menu-btn { display: none; } }
        .mobile-menu-btn span {
            display: block;
            width: 22px; height: 2px;
            background: var(--dark-3);
            border-radius: 2px;
            transition: all 0.25s;
        }
        #mobile-nav {
            display: none;
            position: fixed;
            top: 4.5rem;
            left: 0;
            right: 0;
            background: #ffffff !important;
            background-color: #ffffff !important;
            border-bottom: 1px solid #e2e8f0;
            padding: 1.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            z-index: 998;
            isolation: isolate;
        }
        #mobile-nav.open {
            display: block !important;
            background: #ffffff !important;
            background-color: #ffffff !important;
        }
        #mobile-nav.open { 
            display: block; 
        }
        #mobile-nav ul { 
            list-style: none;
            margin: 0;
            padding: 0;
        }
        #mobile-nav li { 
            border-bottom: 1px solid #f0f0f0;
        }
        #mobile-nav li:last-child {
            border-bottom: none;
        }
        #mobile-nav a { 
            display: block; 
            padding: 1rem 0; 
            font-weight: 600; 
            color: #333333;
            text-decoration: none;
            font-size: 1rem;
        }
        #mobile-nav a:hover {
            color: #0f766e;
        }
        #mobile-nav .mobile-cta { 
            margin-top: 1.5rem; 
            display: block; 
            text-align: center;
        }

        /* ─── UTILITIES ──────────────────────────────── */
        .text-teal { color: var(--teal); }
        .text-amber { color: var(--amber); }
        .text-center { text-align: center; }
        .flex-center { display: flex; justify-content: center; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .strong { font-weight: 700; }
        .visually-hidden {
            position: absolute;
            width: 1px; height: 1px;
            padding: 0; margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width: 640px) {
            .section { padding: 3.5rem 0; }
            .form-row { grid-template-columns: 1fr; }
            .compare-row { font-size: 0.78rem; }
            .compare-cell { padding: 0.625rem 0.625rem; }
