:root {
    --bg: #0f172a;
    --bg-light: #f5f7fb;
    --card: #ffffff;
    --accent: #3b82f6;
    --accent-dark: #1d4ed8;
    --text-dark: #0f172a;
    --text: #1f2937;
    --text-light: #6b7280;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.narrow {
    width: min(900px, 94%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
}

.nav-links a {
    color: var(--text);
    font-size: 0.95rem;
}

.header-cta {
    background: var(--text-dark);
    color: #fff;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
}

.hero {
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 60%), var(--bg);
    color: #fff;
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0.4rem 0 1rem;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.8);
}

.eyebrow {
    letter-spacing: 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hero-points li {
    position: relative;
    padding-left: 1.8rem;
}

.hero-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

.trust-badge {
    display: flex;
    gap: 2rem;
    background: rgba(15, 23, 42, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.trust-badge strong {
    font-size: 1.6rem;
    display: block;
    color: #fff;
}

.trust-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.hero-form {
    justify-self: center;
    width: 100%;
}

.form-card {
    background: var(--card);
    color: var(--text);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 70px rgba(15, 23, 42, 0.35);
}

.form-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.form-header p {
    margin: 0.2rem 0 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

form input,
form select {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-family: inherit;
}

form input:focus,
form select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

form button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    color: #fff;
    font-weight: 700;
    padding: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    text-align: center;
}

.section {
    padding: 4.5rem 0;
    background: #fff;
}

.section-light {
    background: var(--bg-light);
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-dark);
}

.section-heading p {
    margin: 0 auto;
    max-width: 600px;
    color: var(--text-light);
}

.stat-grid,
.steps,
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card,
.benefit-card,
.step {
    background: var(--card);
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover,
.benefit-card:hover,
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
}

.stat-card h3,
.benefit-card h3 {
    margin-top: 0;
    color: var(--text-dark);
}

.steps .step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.faq-item h3 {
    margin: 0 0 0.4rem;
    color: var(--text-dark);
}

.testimonial {
    background: var(--text-dark);
    color: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 50px rgba(15, 23, 42, 0.3);
    transition: transform 0.35s ease;
}

.testimonial:hover {
    transform: translateY(-6px);
}

.testimonial blockquote {
    margin: 0 0 1rem;
    font-style: italic;
}

.testimonial .author {
    margin: 0 0 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer {
    background: var(--bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1rem;
    font-size: 0.9rem;
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-links.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: all;
    }

    .header-cta {
        display: none;
    }

    .trust-badge {
        flex-direction: column;
        gap: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .hero-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
