﻿:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --panel2: #f8fafc;
    --text: #0f172a;
    --muted: rgba(15,23,42,.72);
    --muted2: rgba(15,23,42,.55);
    --border: rgba(15,23,42,.12);
    --shadow: 0 12px 36px rgba(2,6,23,.12);
    --accent: #2563eb;
    --accent2: #1d4ed8;
    --good: #16a34a;
    --radius: 18px;
    --radius2: 24px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--text);
    /* Light theme background with subtle, non-intrusive gradients */
    background: radial-gradient(1200px 700px at 20% 10%, rgba(37,99,235,.10), transparent 55%), radial-gradient(1000px 700px at 85% 0%, rgba(29,78,216,.08), transparent 55%), var(--bg);
}

a {
    color: inherit;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.page main {
    min-height: 65vh;
}

.section {
    padding: 84px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,0));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(2,6,23,.02);
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .2px;
}

.h2 {
    font-size: 34px;
    font-weight: 750;
    letter-spacing: -0.8px;
    margin: 0 0 10px 0;
}

.h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 18px 0 8px;
}

.eyebrow {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .16em;
    margin-bottom: 10px;
}

.muted {
    color: var(--muted);
}

.prose p, .prose li {
    color: var(--muted);
    line-height: 1.6;
}

.prose a {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-weight: 650;
    letter-spacing: .2px;
    background: transparent;
    color: var(--text);
    transition: transform .08s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

    .btn:active {
        transform: translateY(1px);
    }

.btn-lg {
    padding: 12px 16px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-color: rgba(2,6,23,.08);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37,99,235,.22);
}

    .btn-primary:hover {
        filter: brightness(1.02);
    }

.btn-ghost {
    background: rgba(2,6,23,.02);
    border-color: var(--border);
}

    .btn-ghost:hover {
        background: rgba(2,6,23,.04);
    }

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.80);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(29,78,216,.12));
    border: 1px solid var(--border);
    font-weight: 800;
    color: var(--text);
}

.brand-text {
    font-weight: 800;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

    .nav-link:hover {
        color: var(--text);
    }

.nav-cta {
    display: flex;
    gap: 10px;
}

.nav-burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(2,6,23,.02);
    cursor: pointer;
}

    .nav-burger span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text);
        margin: 5px auto;
        opacity: .9;
    }

.nav-mobile {
    padding: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-mobile-cta {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.hero {
    padding: 40px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.hero-title {
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin: 14px 0 14px;
    font-weight: 860;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-points {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(2,6,23,.02);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--good), var(--accent));
    display: inline-block;
}

.hero-visual .mock {
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(2,6,23,.03), rgba(2,6,23,.01));
    box-shadow: var(--shadow);
    padding: 18px;
}

.mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.mock-title {
    font-weight: 800;
    letter-spacing: -0.3px;
}

.mock-pill {
    color: var(--muted);
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(2,6,23,.02);
}

.mock-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.mock-k {
    color: var(--muted2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.mock-v {
    font-weight: 650;
}

.mock-table {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(2,6,23,.02);
}

.t-head {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
    color: var(--muted);
    font-size: 13px;
}

.t-row {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

    .t-row:last-child {
        border-bottom: none;
    }

.mock-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.mini-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(2,6,23,.02);
}

.mini-title {
    font-weight: 800;
    font-size: 13px;
}

.mini-muted {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(2,6,23,.02);
}

.trust-inner {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    padding: 16px 0;
    align-items: center;
    justify-content: center;
}

.trust-item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.trust-item-right {
    margin-left: auto;
}

.trust-icon {
    color: rgba(15,23,42,.28);
}

.section-head {
    max-width: 70ch;
    margin-bottom: 26px;
}

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

.step-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(2,6,23,.02);
    padding: 16px;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.18);
    font-weight: 900;
}

.step-title {
    margin-top: 10px;
    font-weight: 850;
    letter-spacing: -0.2px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(2,6,23,.02);
    padding: 18px;
}

.card-title {
    font-weight: 880;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

.tag {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    margin-left: 8px;
}

.seg {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(2,6,23,.02);
    padding: 4px;
    gap: 6px;
    margin-bottom: 14px;
}

.seg-btn {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 750;
}

    .seg-btn.active {
        background: rgba(2,6,23,.04);
        border-color: var(--border);
        color: var(--text);
    }

.preview {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 14px;
    align-items: stretch;
}

.preview-title {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.bullets {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.preview-mock {
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    background: rgba(2,6,23,.02);
    padding: 16px;
    box-shadow: var(--shadow);
}

.pm-head {
    font-weight: 900;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.pm-row {
    display: grid;
    grid-template-columns: 1.2fr .7fr .6fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

    .pm-row:last-child {
        border-bottom: none;
    }

.pm-gridhead, .pm-gridrow {
    display: grid;
    grid-template-columns: 1.1fr .8fr .7fr .6fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.pm-gridhead {
    color: var(--muted2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.pm-gridrow:last-child {
    border-bottom: none;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.price-card {
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    background: rgba(2,6,23,.02);
    padding: 18px;
}

    .price-card.highlight {
        background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(2,6,23,.02));
        border-color: rgba(37,99,235,.22);
    }

.price-top {
    margin-bottom: 12px;
}

.price-name {
    font-weight: 950;
    font-size: 18px;
    letter-spacing: -0.4px;
}

.price-note {
    margin-top: 6px;
}

.price-badge {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.18);
    color: var(--text);
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 10px;
}

.price-list {
    margin: 0 0 14px 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(2,6,23,.02);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-weight: 850;
}

.faq-plus {
    width: 18px;
    height: 18px;
    position: relative;
    opacity: .8;
}

    .faq-plus:before, .faq-plus:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        background: var(--text);
        border-radius: 2px;
    }

    .faq-plus:before {
        width: 14px;
        height: 2px;
    }

    .faq-plus:after {
        width: 2px;
        height: 14px;
    }

.faq-item.open .faq-plus:after {
    display: none;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .18s ease;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a > div {
    padding: 0 16px 14px;
}

.cta-band {
    padding: 54px 0;
    border-top: 1px solid var(--border);
    background: radial-gradient(900px 300px at 40% 10%, rgba(37,99,235,.10), transparent 60%), rgba(2,6,23,.02);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    padding: 18px 18px;
    background: rgba(255,255,255,.70);
}

.footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    background: rgba(255,255,255,.70);
}

.footer-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-brand {
    font-weight: 900;
    letter-spacing: -0.3px;
}

.footer-muted {
    color: var(--muted2);
    font-size: 13px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 14px;
    color: var(--muted);
}

    .footer-links a {
        text-decoration: none;
        color: var(--muted);
    }

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

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.45);
    z-index: 90;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    width: min(760px, 100%);
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-weight: 900;
    letter-spacing: -0.2px;
}

.modal-x {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(2,6,23,.02);
    color: var(--text);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.modal-content {
    padding: 16px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
}

.sample-grid {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(2,6,23,.02);
}

.sample-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr .8fr .7fr;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
}

    .sample-row:last-child {
        border-bottom: none;
    }

.sample-head {
    color: var(--muted2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* Responsive */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 38px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .preview {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

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

    .trust-item-right {
        margin-left: 0;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-burger {
        display: inline-block;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 78px 0 34px;
    }

    .hero-title {
        font-size: 34px;
    }
}

/* Logo */
.brand-logo {
    height: 32px;
    width: auto;
    display: block;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

@media (max-width: 520px) {
    .brand-text {
        display: none;
    }
}

/* Screen-reader only utility */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.faq-item.open .faq-a {
    max-height: 1200px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.12), 0 4px 12px rgba(2, 6, 23, 0.08);
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: 120%;
    }
}

