:root {
    --bg: #0b0c10;
    --panel: #12151b;
    --ink: #e8ecf1;
    --muted: #b9c2cf;
    --brand: #4da3ff;
    --brand-ink: #07223d;
    --good: #1db954;
    --warn: #ffcc00;
    --danger: #ff5a5f;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,.25);
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    line-height: 1.6
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 72px 0
}

.section-alt {
    background: var(--panel)
}

h1, h2, h3 {
    line-height: 1.2;
    margin: 0 0 12px
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 28px
}

h3 {
    font-size: 20px
}

p {
    margin: 0 0 12px;
    color: var(--muted)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    font-weight: 600
}

.btn-primary {
    background: var(--brand);
    color: #012;
    box-shadow: var(--shadow)
}

    .btn-primary:hover {
        transform: translateY(-1px)
    }

.btn-ghost {
    background: transparent;
    border-color: #2a3443;
    color: var(--ink)
}

.btn-small {
    padding: 8px 12px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11,12,16,.7);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #1b2230
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700
}

.logo {
    width: 28px;
    height: 28px
}

.nav a {
    color: var(--ink);
    text-decoration: none;
    margin-left: 14px
}

    .nav a:hover {
        color: var(--brand)
    }

.hero {
    padding: 72px 0;
    background: linear-gradient(180deg, #0b0c10 0%, #0e1118 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center
}

.hero .subtitle {
    font-size: 18px
}

.badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.badge {
    background: #0f1723;
    border: 1px solid #243249;
    color: #cfe2ff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px
}

.hero-media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #1b2433
}

.trust {
    padding: 16px 0;
    border-top: 1px solid #131a26;
    border-bottom: 1px solid #131a26;
    background: #0e1118
}

.trust-note {
    color: #98a4b5;
    text-align: center
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 24px
}

.card {
    background: #0e1219;
    border: 1px solid #1b2230;
    padding: 18px;
    border-radius: var(--radius)
}

    .card h3 {
        margin-bottom: 6px
    }

.steps {
    display: grid;
    gap: 10px;
    counter-reset: st
}

    .steps li {
        list-style: none;
        background: #0e1219;
        border: 1px solid #1b2230;
        border-radius: 12px;
        padding: 14px 14px 14px 44px;
        position: relative
    }

        .steps li::before {
            counter-increment: st;
            content: counter(st);
            position: absolute;
            left: 12px;
            top: 12px;
            background: var(--brand);
            color: var(--brand-ink);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-weight: 700
        }

.quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

blockquote {
    margin: 0;
    background: #0e1219;
    border-left: 3px solid var(--brand);
    padding: 14px;
    border-radius: 10px
}

cite {
    display: block;
    color: #9eb0c6;
    margin-top: 8px
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 16px
}

.price-card {
    background: #0e1219;
    border: 1px solid #1b2230;
    border-radius: 12px;
    padding: 16px
}

    .price-card.featured {
        border-color: var(--brand);
        box-shadow: 0 0 0 1px var(--brand) inset
    }

.price {
    font-size: 28px;
    font-weight: 800;
    color: #dfe8f5;
    margin: 8px 0
}

    .price span {
        font-size: 14px;
        color: #8ea0b7
    }

details {
    background: #0e1219;
    border: 1px solid #1b2230;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px
}

    details summary {
        cursor: pointer;
        font-weight: 600
    }

    details[open] {
        border-color: #2a80ff
    }

.disclaimer {
    padding: 16px 0;
    border-top: 1px dashed #2a3443;
    border-bottom: 1px dashed #2a3443;
    background: #0b1017
}

    .disclaimer p {
        color: #aab5c7;
        margin: 0
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px
}

label {
    display: block;
    margin-bottom: 10px;
    color: #cfd8e6
}

input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #223042;
    background: #0b1119;
    color: #e7eef8
}

.panel {
    background: #0e1219;
    border: 1px solid #1b2230;
    border-radius: 12px;
    padding: 16px
}

.inline {
    display: flex;
    gap: 10px
}

.form-status {
    min-height: 20px;
    color: #9fb4ff;
    margin-top: 8px
}

.site-footer {
    border-top: 1px solid #131a26;
    padding: 18px 0;
    background: #0b0c10
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-nav a {
    margin-left: 12px;
    color: #a8b5c7;
    text-decoration: none
}

    .footer-nav a:hover {
        color: #fff
    }

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .cards {
        grid-template-columns: 1fr 1fr
    }

    .pricing {
        grid-template-columns: 1fr
    }

    .quotes {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }
}
