
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --accent: #f59e0b;
            --text-dark: #0f172a;
            --text-body: #334155;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border: #e2e8f0;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body { 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
            line-height: 1.7; 
            color: var(--text-body); 
            background: var(--bg-white); 
        }

        a { color: var(--primary); text-decoration: none; font-weight: 500; transition: color 0.2s; }
        a:hover { color: var(--primary-dark); }

        /* --- HEADER --- */
        .site-header { border-bottom: 1px solid var(--border); padding: 20px 0; background: var(--bg-white); position: sticky; top: 0; z-index: 100; }
        .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; }
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 24px; align-items: center; }
        .nav-links a { color: var(--text-body); font-weight: 500; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary); }
        .btn-primary { background: var(--primary); color: white !important; padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: all 0.2s; border: none; cursor: pointer; }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

        /* --- HERO --- */
        .hero { 
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); 
            color: white; 
            padding: 100px 20px; 
            text-align: center; 
        }
        .hero-inner { max-width: 800px; margin: 0 auto; }
        .hero-badge { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; color: #93c5fd; }
        .hero h1 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 24px; font-weight: 800; letter-spacing: -1px; }
        .hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 40px; line-height: 1.6; }
        .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-white { background: white; color: var(--primary-dark); padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 1.05rem; transition: all 0.2s; }
        .btn-white:hover { background: #f1f5f9; transform: translateY(-2px); }
        .btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 1.05rem; transition: all 0.2s; }
        .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

        /* --- TRUST BAR --- */
        .trust-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 30px 20px; text-align: center; }
        .trust-bar p { font-size: 0.9rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
        .trust-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; font-weight: 700; font-size: 1.2rem; color: var(--text-light); }

        /* --- SECTIONS GENERAL --- */
        .section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .section-header h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; }
        .section-header p { font-size: 1.15rem; color: var(--text-light); }

        /* --- WHY YOU NEED THIS (PAIN POINTS) --- */
        .pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
        .pain-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all 0.3s; }
        .pain-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.15); }
        .pain-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
        .pain-card h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 12px; font-weight: 700; }
        .pain-card p { color: var(--text-body); font-size: 1rem; }

        /* --- HOW WE HELP (PROCESS) --- */
        .process-section { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; position: relative; }
        .process-step { position: relative; padding-left: 20px; }
        .step-number { 
            position: absolute; left: -20px; top: 0; 
            width: 40px; height: 40px; background: var(--primary); color: white; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            font-weight: 800; font-size: 1.1rem; box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }
        .process-step h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 12px; margin-top: 8px; font-weight: 700; }
        .process-step p { color: var(--text-body); font-size: 0.95rem; }

        /* --- DELIVERABLES --- */
        .deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .deliverables-list { list-style: none; padding: 0; }
        .deliverables-list li { 
            display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; font-size: 1.05rem; color: var(--text-body); 
        }
        .check-icon { 
            flex-shrink: 0; width: 24px; height: 24px; background: #dcfce7; color: #16a34a; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.8rem; margin-top: 2px;
        }
        .deliverables-visual { 
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); 
            border-radius: 16px; padding: 40px; color: white; box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.3);
        }
        .deliverables-visual h3 { font-size: 1.5rem; margin-bottom: 20px; }
        .stat-row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 16px 0; }
        .stat-row:last-child { border-bottom: none; }
        .stat-label { color: #93c5fd; font-size: 0.9rem; }
        .stat-value { font-weight: 700; font-size: 1.1rem; }

        /* --- FAQ --- */
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
        .faq-question { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400; }
        .faq-answer { margin-top: 16px; color: var(--text-body); font-size: 1rem; line-height: 1.7; display: none; }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question::after { content: '−'; }

        /* --- CONTACT SECTION --- */
        .contact-section { background: var(--bg-light); border-top: 1px solid var(--border); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
        .contact-info h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 20px; }
        .contact-info p { color: var(--text-body); margin-bottom: 32px; font-size: 1.1rem; }
        .contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: 1.05rem; color: var(--text-dark); font-weight: 500; }
        .contact-detail span { font-size: 1.5rem; }
        
        .contact-form-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1); border: 1px solid var(--border); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
        .form-group input, .form-group textarea, .form-group select { 
            width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border 0.2s; 
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .btn-submit { width: 100%; background: var(--primary); color: white; padding: 14px; border: none; border-radius: 8px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
        .btn-submit:hover { background: var(--primary-dark); }
        .prefill-note { font-size: 0.85rem; color: var(--text-light); margin-top: 16px; text-align: center; }
        .prefill-note a { color: var(--primary); font-weight: 600; }

        /* --- FOOTER --- */
        .site-footer { background: #0f172a; color: #94a3b8; padding: 60px 20px; text-align: center; font-size: 0.9rem; }
        /* flex-wrap: the row could not break, so "Terms of Service" ran 25px past
           the viewport edge on a 375px screen. */
        .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
        .footer-links a { color: #cbd5e1; }
        .footer-links a:hover { color: white; }
/* --- PRICING --- */
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
}

.pricing-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:40px 32px;
    position:relative;
    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.pricing-card.featured{
    border:2px solid var(--primary);
}

.pricing-badge{
    position:absolute;
    top:-12px;
    left:24px;
    background:var(--primary);
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:.8rem;
    font-weight:700;
}

.price{
    font-size:3rem;
    font-weight:800;
    color:var(--text-dark);
    margin:20px 0;
}

.price small{
    font-size:1rem;
    color:var(--text-light);
}

.pricing-features{
    list-style:none;
    margin:24px 0;
}

.pricing-features li{
    margin-bottom:14px;
    padding-left:24px;
    position:relative;
}

.pricing-features li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#16a34a;
    font-weight:bold;
}

.pricing-btn{
    display:block;
    text-align:center;
    width:100%;
    background:var(--primary);
    color:#fff!important;
    padding:14px;
    border-radius:10px;
    font-weight:700;
    margin-top:20px;
}

.pricing-btn:hover{
    background:var(--primary-dark);
}
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .deliverables, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .nav-links { display: none; } /* Simplified for demo */
        }
    