:root {
    --bg: #07111f;
    --bg-soft: #0d1728;
    --panel: rgba(14, 26, 44, 0.86);
    --panel-strong: rgba(10, 21, 37, 0.96);
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(148, 176, 214, 0.12);
    --text: #eef5ff;
    --muted: #a6b7cf;
    --accent: #6ee7d8;
    --accent-strong: #20c5b5;
    --accent-soft: rgba(110, 231, 216, 0.14);
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(32, 197, 181, 0.12), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(111, 154, 255, 0.10), transparent 26%),
        linear-gradient(180deg, #06101d 0%, #081221 42%, #0a1422 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.page-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}
.page-glow--one { background: rgba(32, 197, 181, 0.18); top: -120px; left: -120px; }
.page-glow--two { background: rgba(102, 155, 255, 0.14); right: -150px; top: 180px; }

.progress-bar {
    position: fixed;
    inset: 0 auto auto 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #9ac8ff);
    z-index: 50;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    background: rgba(6, 12, 22, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-shell {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 190px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #07111f;
    background: linear-gradient(135deg, #8ff2e6, #32d1c0);
    box-shadow: 0 10px 24px rgba(50, 209, 192, 0.25);
}

.brand-text strong {
    display: block;
    font-size: 0.98rem;
}

.brand-text small {
    display: block;
    color: var(--muted);
    margin-top: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav a {
    color: var(--muted);
    font-size: 0.96rem;
    transition: color .25s ease;
}
.nav a:hover { color: var(--white); }

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 0.96rem;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    color: #041019;
    background: linear-gradient(135deg, #95f4e8, #34d3c1);
    box-shadow: 0 14px 28px rgba(52, 211, 193, 0.22);
}
.btn--primary:hover { box-shadow: 0 18px 36px rgba(52, 211, 193, 0.30); }
.btn--secondary,
.btn--ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
.btn--secondary:hover,
.btn--ghost:hover {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
}
.btn--lg { padding: 15px 24px; }

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    border: 1px solid rgba(145, 176, 216, 0.10);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.96), rgba(8, 16, 28, 0.88));
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
}

.hero-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #aef6ee;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1, h2, h3, p { margin: 0; }

h1 {
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    max-width: 12ch;
}

.hero-lead {
    font-size: 1.14rem;
    color: var(--muted);
    max-width: 62ch;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0 24px;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.hero-points li {
    color: var(--muted);
    position: relative;
    padding-left: 22px;
}
.hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(110, 231, 216, 0.08);
}

.hero-panel__top {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(14, 28, 46, 0.96), rgba(12, 23, 40, 0.96));
    border: 1px solid rgba(146, 178, 216, 0.12);
}
.hero-panel__top span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}
.hero-panel__top strong {
    display: block;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    margin-bottom: 10px;
}
.hero-panel__top p { color: var(--muted); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.hero-stats article {
    min-height: 118px;
    padding: 18px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid var(--card-border);
}
.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.hero-stats strong {
    font-size: 1.05rem;
    line-height: 1.35;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(110, 231, 216, 0.08);
    color: #c9faf5;
}
.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 rgba(110, 231, 216, 0.6);
    animation: pulse 1.8s infinite;
}

.section {
    padding: 36px 0 70px;
}
.section--alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
}
.section--focus { padding-top: 26px; }

.section-head {
    max-width: 840px;
    margin-bottom: 30px;
}
.section-head--compact { max-width: 720px; }
.section-head h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    max-width: 16ch;
}
.section-head p {
    color: var(--muted);
    max-width: 64ch;
}

.cards {
    display: grid;
    gap: 18px;
}
.cards--three { grid-template-columns: repeat(3, 1fr); }
.cards--grid { grid-template-columns: repeat(3, 1fr); }
.cards--stack { grid-template-columns: 1fr; max-width: 520px; }

.card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid var(--card-border);
    box-shadow: 0 14px 34px rgba(0,0,0,0.20);
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(110, 231, 216, 0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}
.card h3 {
    font-size: 1.22rem;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.card p {
    color: var(--muted);
    font-size: 0.98rem;
}

.trust-band {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.trust-band div {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
}
.trust-band strong {
    display: block;
    font-size: 1.32rem;
    line-height: 1.1;
    margin-bottom: 8px;
}
.trust-band span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 38px;
    align-items: start;
}
.advantages-list {
    display: grid;
    gap: 16px;
}
.advantage {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
}
.advantage__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 8px;
    background: var(--accent-strong);
    box-shadow: 0 0 0 7px rgba(32, 197, 181, 0.10);
}
.advantage h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.2;
}
.advantage p { color: var(--muted); }

.timing-grid,
.contact-grid,
.price-box {
    display: grid;
    gap: 24px;
}
.timing-grid { grid-template-columns: 1fr 0.9fr; align-items: start; }
.price-box {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(12, 25, 43, 0.96), rgba(8, 18, 33, 0.95));
    border: 1px solid rgba(148,176,214,0.12);
    box-shadow: var(--shadow);
}
.price-actions {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.price-actions strong {
    font-size: clamp(2.4rem, 3vw, 3.4rem);
    line-height: 1;
}
.price-actions small { color: var(--muted); }

.contact-grid {
    grid-template-columns: 1fr 0.86fr;
    align-items: start;
}
.contact-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row span {
    color: var(--muted);
    min-width: 135px;
}
.contact-row strong,
.contact-row a {
    text-align: right;
    font-weight: 700;
}
.contact-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(13, 24, 41, 0.96), rgba(7, 16, 29, 0.96));
    border: 1px solid rgba(135, 168, 210, 0.16);
    box-shadow: 0 18px 38px rgba(0,0,0,0.34);
    transition: transform .25s ease, box-shadow .25s ease;
}
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(0,0,0,0.42); }
.floating-cta__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #06101d;
    background: linear-gradient(135deg, #95f4e8, #34d3c1);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(110, 231, 216, 0.60); }
    70% { box-shadow: 0 0 0 14px rgba(110, 231, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(110, 231, 216, 0); }
}

@media (max-width: 1120px) {
    .nav { display: none; }
    .hero-grid,
    .advantages-layout,
    .timing-grid,
    .price-box,
    .contact-grid { grid-template-columns: 1fr; }
    .cards--three,
    .cards--grid,
    .trust-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .header-shell {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }
    .header-actions {
        width: 100%;
        justify-content: stretch;
    }
    .header-actions .btn {
        flex: 1 1 0;
    }
    .hero { padding-top: 34px; }
    .hero-copy { padding: 28px; }
    .hero-panel { padding: 16px; }
    .hero-stats,
    .cards--three,
    .cards--grid,
    .trust-band { grid-template-columns: 1fr; }
    h1 { max-width: none; font-size: clamp(2.1rem, 12vw, 3.2rem); }
    .section-head h2 { max-width: none; font-size: clamp(1.7rem, 9vw, 2.5rem); }
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-row strong,
    .contact-row a { text-align: left; }
    .price-actions { padding: 22px; }
    .floating-cta {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
    }
}
