:root {
    --bg: #0b0d12;
    --bg-alt: #11141b;
    --bg-soft: #161a23;
    --surface: #1b2030;
    --border: #232a3d;
    --text: #e7eaf2;
    --text-muted: #9aa3b8;
    --text-dim: #6b7488;
    --accent: #7c5cff;
    --accent-2: #4ad6c2;
    --accent-soft: rgba(124, 92, 255, 0.12);
    --gradient: linear-gradient(135deg, #7c5cff 0%, #4ad6c2 100%);
    --shadow: 0 20px 60px -20px rgba(124, 92, 255, 0.35);
    --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ============== NAV ============== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
}

.brand-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer .brand-logo {
    height: 52px;
}

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

.nav nav a {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.nav nav a:not(.btn) {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav nav a:not(.btn):hover { opacity: 0.7; }

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

/* ============== BUTTONS ============== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: #0b0d12;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 70px -20px rgba(124, 92, 255, 0.55);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover { border-color: var(--accent); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 18px;
    font-size: 14px;
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.btn-block { width: 100%; }

/* ============== HERO ============== */

.hero {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 214, 194, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(124, 92, 255, 0.3);
    color: var(--accent);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 920px;
}

.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lede {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 48px;
}

.lede strong { color: var(--text); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.stat:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============== SECTIONS ============== */

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 16px 0 20px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
}

/* ============== CARDS ============== */

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

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.card-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

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

.card p strong { color: var(--text); }

.callout {
    background: var(--accent-soft);
    border: 1px solid rgba(124, 92, 255, 0.3);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    font-size: 17px;
    color: var(--text);
}

.callout strong { color: var(--accent); }

/* ============== COMPARE TABLE ============== */

.compare-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 48px;
}

.compare {
    width: 100%;
    border-collapse: collapse;
}

.compare th, .compare td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.compare thead th {
    background: var(--bg-soft);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.compare thead .th-agent {
    color: var(--accent);
    background: var(--accent-soft);
}

.compare tbody tr:last-child td { border-bottom: none; }

.compare .row-label {
    font-weight: 600;
    color: var(--text);
    width: 28%;
}

.compare td {
    color: var(--text-muted);
    font-size: 15px;
}

.compare .td-agent {
    background: rgba(124, 92, 255, 0.04);
    color: var(--text);
    font-weight: 600;
}

.muted {
    color: var(--text-dim);
    font-weight: 400;
    font-size: 13px;
}

.resume {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.resume-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.resume-num {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 12px;
}

.resume-item p {
    color: var(--text-muted);
    font-size: 15px;
}

.resume-item p strong { color: var(--text); }

.footnote {
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============== CONTACT ============== */

.section-contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-pitch h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 16px 0 20px;
}

.contact-pitch p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-pitch p strong { color: var(--text); }

.special-offer {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.10), rgba(74, 214, 194, 0.08));
    border: 1px solid rgba(124, 92, 255, 0.4);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 24px 0 28px;
    position: relative;
    box-shadow: 0 10px 30px -15px rgba(124, 92, 255, 0.35);
}

.special-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: #0b0d12;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.special-offer-icon {
    font-size: 13px;
    line-height: 1;
}

.special-offer-spots {
    background: rgba(11, 13, 18, 0.18);
    padding: 2px 9px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.special-offer p {
    margin: 0 !important;
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.special-offer p strong {
    color: var(--accent);
    font-weight: 700;
}

.contact-points {
    list-style: none;
    margin: 24px 0 32px;
}

.contact-points li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-muted);
}

.contact-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.contact-direct { margin-top: 32px; }

.contact-direct-or {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-dim);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-full { grid-column: 1 / -1; }

.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
}

.form-note a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============== FOOTER ============== */

.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-contact a:hover { color: var(--accent); }

.footer-legal {
    text-align: right;
    font-size: 13px;
    color: var(--text-dim);
}

/* ============== RESPONSIVE ============== */

@media (max-width: 900px) {
    .nav nav {
        gap: 18px;
    }
    .nav nav a:not(.btn) { display: none; }

    .hero { padding: 60px 0 70px; }

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

    .section { padding: 70px 0; }

    .section-head { margin-bottom: 48px; }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form { padding: 24px; grid-template-columns: 1fr; }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact { align-items: center; }

    .footer-legal { text-align: center; }

    .footer .brand { justify-content: center; }

    .brand-logo { height: 48px; }

    .compare th, .compare td {
        padding: 14px 12px;
        font-size: 13px;
    }

    .compare .row-label { width: 35%; }
}

@media (max-width: 520px) {
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    .hero-stats { grid-template-columns: 1fr; }
    .stat-value { font-size: 28px; }
    .cta-row .btn { width: 100%; }
}
