        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        :root {
            --bg: #ffffff;
            --bg-section: #f8f9fc;
            --bg-card: #ffffff;
            --text: #111827;
            --text-muted: #4b5563;
            --text-muted2: #6b7280;
            --accent: #2563eb;
            --accent-dark: #1e40af;
            --accent-glow: rgba(37, 99, 235, 0.08);
            --accent-light: #dbeafe;
            --green: #059669;
            --green-bg: #ecfdf5;
            --border: #e5e7eb;
            --border-subtle: #f3f4f6;
            --radius: 12px;
            --radius-sm: 8px;
            --radius-lg: 16px;
            --shadow: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            font-family: var(--font);
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
            height: 64px;
        }
        nav .container {
            display: flex; align-items: center; justify-content: space-between;
            height: 64px;
        }
        .nav-logo {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--text);
            text-decoration: none;
        }
        .nav-logo span { color: var(--accent); }

        .nav-links { display: flex; gap: 24px; align-items: center; }
        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--accent); }

        /* ── FIXED "GET STARTED" BUTTON ── */
        .btn-nav {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 10px 22px;
            background: var(--accent);
            color: #fff !important;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(37,99,235,0.25);
            white-space: nowrap;
        }
        .btn-nav:hover {
            background: var(--accent-dark) !important;
            box-shadow: 0 4px 14px rgba(37,99,235,0.35);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none; border: none; cursor: pointer; padding: 4px;
        }
        .hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed; top: 64px; left: 0; right: 0;
                background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
                border-bottom: 1px solid var(--border);
                padding: 20px 24px;
                display: none; flex-direction: column; gap: 16px; align-items: stretch;
            }
            .nav-links.open { display: flex; }
            .nav-links a { display: block; padding: 6px 0; }
            .hamburger { display: flex; }
            .btn-nav { text-align: center; justify-content: center; margin-top: 4px; }
        }

        /* ── BUTTONS ── */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 2px 8px rgba(37,99,235,0.25);
        }
        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(37,99,235,0.4);
        }
        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }
        .btn-outline:hover {
            background: var(--accent-glow);
            transform: translateY(-1px);
        }
        .btn-white {
            background: #fff;
            color: var(--accent);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .btn-white:hover {
            background: #f0f4ff;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        .hero {
            padding: 140px 0 80px;
            position: relative; overflow: hidden;
            background: linear-gradient(135deg, #eef4ff 0%, #e8f0fe 40%, #f8f9fc 100%);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }
        .hero h1 {
            font-size: 2.9rem;
            font-weight: 800;
            line-height: 1.12;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
        }
        .hero h1 .gradient {
            background: linear-gradient(135deg, var(--accent), #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 520px;
            line-height: 1.7;
        }
        .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
        .hero-trust {
            display: flex; gap: 28px;
            margin-top: 40px;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
        }
        .hero-trust-item {
            display: flex; align-items: center; gap: 8px;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* ── HERO CARD ── */
        .hero-visual { display: flex; align-items: center; justify-content: center; }
        .hero-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
            width: 100%;
            max-width: 440px;
        }
        .hero-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .hero-card p.sub {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 28px;
            line-height: 1.6;
        }
        .funding-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        .funding-item:last-child { border-bottom: none; padding-bottom: 0; }
        .funding-item:first-child { padding-top: 0; }
        .funding-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .funding-icon.bdc { background: linear-gradient(135deg, #2563eb, #7c3aed); }
        .funding-icon.feddev { background: linear-gradient(135deg, #059669, #2563eb); }
        .funding-icon.dcc { background: linear-gradient(135deg, #d97706, #dc2626); }
        .funding-text { flex: 1; }
        .funding-text strong {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .funding-text span {
            display: block;
            color: var(--text-muted);
            font-size: 0.83rem;
            line-height: 1.55;
        }

        /* ── TRUST BAR ── */
        .trust-bar {
            padding: 48px 0;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }
        .trust-bar p {
            color: var(--text-muted2);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }
        .trust-items {
            display: flex; justify-content: center; gap: 40px;
            align-items: center; flex-wrap: wrap;
        }
        .trust-items .pill {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px;
            background: var(--bg-section);
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

        /* ── SECTION ── */
        section { padding: 100px 0; }
        .section-title {
            text-align: center;
            max-width: 660px;
            margin: 0 auto 56px;
        }
        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }
        .section-title p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }

        /* ── HOW IT WORKS ── */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .step-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .step {
            text-align: center;
            padding: 40px 28px;
            background: var(--bg-section);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            cursor: pointer;
        }
        .step:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }
        .step-number {
            width: 52px; height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #7c3aed);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 1.3rem;
            margin: 0 auto 20px;
        }
        .step h3 { font-size: 1.15rem; margin-bottom: 10px; }
        .step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
        .step-arrow {
            display: inline-block;
            margin-top: 16px;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.85rem;
        }

        /* ── SERVICES ── */
        .service-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .service-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .service-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 36px;
            border: 1px solid var(--border);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            cursor: pointer;
        }
        .service-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }
        .service-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
        .service-arrow {
            display: inline-block;
            margin-top: 14px;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.88rem;
        }

        /* ── ABOUT ── */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about h2 { font-size: 2rem; margin-bottom: 20px; }
        .about p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }

        /* ── RESULTS ── */
        .results { background: var(--bg-section); }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .result-card {
            text-align: center; padding: 32px 20px;
            background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border);
        }
        .result-num {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .result-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

        /* ── FAQ ── */
        .faq-list { max-width: 720px; margin: 0 auto; }
        .faq-item {
            background: var(--bg-card); border-radius: var(--radius-sm);
            border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden;
            transition: border-color 0.2s;
        }
        .faq-item.active { border-color: var(--accent); }
        .faq-question {
            padding: 20px 24px; font-weight: 600; cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            user-select: none; transition: background 0.2s;
        }
        .faq-question:hover { background: var(--bg-section); }
        .faq-icon {
            width: 24px; height: 24px; border-radius: 50%; background: var(--accent-glow);
            flex-shrink: 0; display: flex; align-items: center; justify-content: center;
        }
        .faq-icon svg { transition: transform 0.3s; }
        .faq-item.active .faq-icon svg { transform: rotate(45deg); }
        .faq-answer {
            padding: 0 24px; max-height: 0; overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 400px; }
        .faq-answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

        /* ── CTA ── */
        .cta {
            background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
            color: #fff; text-align: center; position: relative; overflow: hidden;
        }
        .cta::before {
            content: '';
            position: absolute; top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
            pointer-events: none;
        }
        .cta h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 14px; }
        .cta p { font-size: 1.1rem; opacity: 0.9; max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }

        .kit-form {
            display: flex; gap: 12px;
            max-width: 500px; margin: 0 auto;
            flex-wrap: wrap; justify-content: center;
        }
        .kit-form input {
            flex: 1; min-width: 220px;
            padding: 14px 18px; border: none; border-radius: var(--radius-sm);
            font-size: 0.95rem; font-family: var(--font); outline: none;
        }
        .form-message {
            margin-top: 14px; font-size: 0.9rem; padding: 10px 18px;
            border-radius: var(--radius-sm); display: none; text-align: center;
        }
        .form-message.success { display: inline-block; background: var(--green-bg); color: var(--green); }
        .form-message.error { display: inline-block; background: #fef2f2; color: #dc2626; }

        /* ── FOOTER ── */
        footer {
            padding: 56px 0;
            background: #0f172a;
            color: #e2e8f0;
        }
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        footer .logo { font-weight: 800; font-size: 1.1rem; }
        footer .logo span { color: #60a5fa; }
        footer .legal { opacity: 0.5; font-size: 0.82rem; }
        footer .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
        footer .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
        footer .footer-links a:hover { color: #60a5fa; }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .hero .container { grid-template-columns: 1fr; gap: 48px; }
            .hero h1 { font-size: 2.3rem; }
            .results-grid { grid-template-columns: repeat(2, 1fr); }
            .about-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .steps { grid-template-columns: 1fr; }
            .service-cards { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2rem; }
            section { padding: 72px 0; }
            .hero { padding: 120px 0 60px; }
        }
