:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #f97316;
    --bg: #0f172a;
    --text-main: #0f172a;
    --text-muted: #6b7280;
    --light: #f9fafb;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout helpers */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.18s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    }

.btn-outline {
    border-color: var(--border);
    background: #ffffff;
    color: var(--text-main);
}

    .btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: #eff6ff;
    }

/* Header */
header {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: radial-gradient(circle at 0 0, #a5b4fc, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    align-items: center;
}

    .nav-links a:hover {
        color: var(--primary);
    }

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-cta {
        gap: 0.4rem;
    }

        .nav-cta button,
        .nav-cta a {
            padding: 6px 10px;
            font-size: 12px;
        }
}

/* Hero */
.hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff);
    padding: 3.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: #ecfdf5;
    color: #15803d;
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 0.9rem;
    color: var(--bg);
}

    .hero h1 span {
        color: var(--primary);
    }

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

    .hero-note span {
        color: var(--primary);
        font-weight: 600;
    }

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.2rem;
    font-size: 0.85rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    color: var(--text-muted);
}

.metric-value {
    font-weight: 700;
    color: var(--bg);
}

.hero-card {
    background: #020617;
    color: #e5e7eb;
    border-radius: 1.5rem;
    padding: 1.5rem 1.3rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-card-pill {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    font-size: 0.7rem;
}

.hero-table {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 0.9rem;
    padding: 0.9rem;
    font-size: 0.8rem;
    border: 1px solid rgba(51, 65, 85, 0.9);
}

.hero-table-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(51, 65, 85, 0.9);
}

    .hero-table-row:last-child {
        border-bottom: none;
    }

.hero-table-label {
    color: #9ca3af;
}

.hero-table-value {
    font-weight: 600;
    color: #e5e7eb;
}

.hero-summary {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9ca3af;
}

    .hero-summary strong {
        color: #facc15;
    }

/* Logos / trust */
.trust {
    padding: 1rem 0 0.5rem;
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.trust-logo-pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #ffffff;
}

/* Features */
.section {
    padding: 3.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    color: var(--bg);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.feature-card {
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.4rem 1.2rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #4b5563;
}

.feature-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-card {
    border-radius: 0.9rem;
    border: 1px dashed var(--border);
    padding: 1.2rem 1.1rem;
    background: #f9fafb;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #e5edff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Benefits strip */
.benefits {
    background: #0b1220;
    color: #e5e7eb;
    padding: 3rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

    .benefits-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .benefits-header p {
        font-size: 0.9rem;
        color: #9ca3af;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.benefit-item {
    font-size: 0.85rem;
    color: #cbd5f5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefit-icon {
    color: #22c55e;
    margin-top: 0.15rem;
}

/* Pricing teaser */
.pricing {
    background: #f9fafb;
}

.pricing-card {
    max-width: 620px;
    margin: 0 auto;
    border-radius: 1.2rem;
    border: 1px solid var(--border);
    padding: 1.7rem 1.6rem;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.8rem;
    align-items: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg);
}

    .price-value span {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-muted);
    }

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.pricing-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .pricing-list li {
        display: flex;
        gap: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .pricing-list span {
        color: #22c55e;
        margin-top: 0.05rem;
    }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 2rem;
    margin-top: 1.8rem;
}

.faq-item {
    border-radius: 0.9rem;
    border: 1px solid var(--border);
    padding: 1rem 1rem;
    background: #ffffff;
}

.faq-q {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.faq-a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 1.4rem 0 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-links a:hover {
        color: var(--primary);
    }

/* Responsive */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .trust-inner {
        gap: 0.9rem;
    }
}
