:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #3b82f6;
    --bg-dark: #020617;
    --card-bg: #0f172a;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --success: #10b981;
    --warning: #f59e0b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-on-accent: #ffffff;
    --soft-bg: rgba(255, 255, 255, 0.03);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(12px);
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: 3.3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--white);
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 2rem;
}

.button-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    min-width: 180px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.trust-line {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.hero-img-wrap {
    margin-top: 3.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    background: var(--card-bg);
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits {
    padding: 2rem 0 5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.benefit-item {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-intro {
    max-width: 760px;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.two-col img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    display: block;
}

.callout {
    margin-top: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.include-grid,
.audience-grid,
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.include-grid {
    grid-template-columns: repeat(2, 1fr);
}

.audience-grid {
    grid-template-columns: repeat(5, 1fr);
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--white);
}

.card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.step {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
}

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent);
    font-weight: 700;
    text-align: center;
    line-height: 32px;
    margin-bottom: 0.9rem;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.2rem;
    margin-top: 2rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pricing-card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.pricing-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.faq-item p {
    color: var(--text-muted);
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width: 1100px) {
    .benefit-grid,
    .audience-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid,
    .include-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .benefit-grid,
    .audience-grid,
    .steps,
    .faq-grid,
    .include-grid {
        grid-template-columns: 1fr;
    }

    .nav-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1rem;
    }

    .button-row {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}
