/* ============================================================
   Kicked VPS — premium redesign v2
   Типографика: Space Grotesk (display) + Inter (body)
   Палитра: фон #07080D, поверхность #0E1018,
   акценты: cyan #35D6F4 → indigo #7C8CF8 (aurora)
   ============================================================ */

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

:root {
    --bg: #07080d;
    --surface: #0e1018;
    --surface-2: #12141f;
    --border: rgba(170, 190, 220, 0.12);
    --border-soft: rgba(170, 190, 220, 0.08);
    --border-strong: rgba(53, 214, 244, 0.45);
    --accent: #35d6f4;
    --accent-2: #7c8cf8;
    --grad: linear-gradient(92deg, #35d6f4 0%, #7c8cf8 100%);
    --text: #f3f6fb;
    --muted: rgba(205, 216, 233, 0.68);
    --muted-2: rgba(205, 216, 233, 0.44);
    --green: #3fdca0;
    --amber: #f5c15c;
    --font-display: 'Space Grotesk', 'Inter', -apple-system, system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 20px 50px rgba(0, 0, 0, 0.35);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .price, .panel-name, .trust-strip strong, .step-num, .logo {
    font-family: var(--font-display);
}

/* Фон: aurora-градиент + тонкая сетка, только в зоне hero */
.aurora {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1060px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 460px at 18% -6%, rgba(53, 214, 244, 0.13), transparent 62%),
        radial-gradient(820px 480px at 82% -10%, rgba(124, 140, 248, 0.13), transparent 62%),
        radial-gradient(640px 380px at 55% 8%, rgba(53, 214, 244, 0.05), transparent 70%);
}
.aurora::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(160, 200, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(160, 200, 235, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 82% 52% at 50% 0%, black, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 82% 52% at 50% 0%, black, transparent 78%);
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 16px 24px 48px; position: relative; z-index: 10; }

/* ============ Кнопки ============ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
    white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Главная CTA */
.btn-primary {
    background: var(--grad);
    color: #061018;
    font-weight: 700;
    box-shadow: 0 8px 26px rgba(63, 150, 240, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 34px rgba(63, 150, 240, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-ghost {
    background: rgba(170, 190, 220, 0.06);
    color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover { background: rgba(170, 190, 220, 0.12); border-color: rgba(170, 190, 220, 0.28); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover { border-color: var(--border-strong); background: rgba(53, 214, 244, 0.06); transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }

.btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(5px); }

/* Пульсация только у ключевых CTA */
.btn-cta { animation: ctaPulse 3s ease-in-out infinite; }
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 26px rgba(63, 150, 240, 0.32), 0 0 0 0 rgba(53, 214, 244, 0.3), inset 0 1px 0 rgba(255,255,255,0.42); }
    50% { box-shadow: 0 8px 26px rgba(63, 150, 240, 0.32), 0 0 0 12px rgba(53, 214, 244, 0), inset 0 1px 0 rgba(255,255,255,0.42); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-cta { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============ Хедер ============ */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px 10px 16px;
    background: rgba(10, 12, 19, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    position: sticky;
    top: 12px;
    z-index: 100;
    margin-bottom: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.logo {
    width: 38px; height: 38px;
    background: var(--grad);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: #061018;
    box-shadow: 0 4px 14px rgba(63, 150, 240, 0.32), inset 0 1px 0 rgba(255,255,255,0.4);
}
.brand-text strong { display: block; font-size: 16px; font-weight: 700; letter-spacing: 0.2px; font-family: var(--font-display); }
.brand-text small { color: var(--muted-2); font-size: 11.5px; font-weight: 500; }

.site-nav { display: flex; gap: 2px; align-items: center; }
.site-nav a {
    padding: 8px 14px; border-radius: 9px;
    font-weight: 500; font-size: 14px;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--text); background: rgba(170, 190, 220, 0.08); }

.header-cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 880px) {
    .site-nav { display: none; }
    .brand-text small { display: none; }
    .header-cta { padding: 9px 14px; font-size: 13px; }
}
@media (max-width: 480px) {
    .header-cta { display: none; }
    .site-header { padding: 10px 16px; }
}

/* ============ HERO ============ */
.hero {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 56px;
    align-items: center;
    margin: 56px 0 48px;
}
@media (max-width: 960px) { .hero { grid-template-columns: 1fr; gap: 40px; margin-top: 36px; } }

.pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 15px;
    background: rgba(53, 214, 244, 0.07);
    border: 1px solid rgba(53, 214, 244, 0.24);
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    color: #9fe8f8;
    margin-bottom: 24px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: blink 1.8s infinite; }
@keyframes blink { 50% { opacity: 0.35; } }

h1 {
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2.2px;
    margin-bottom: 24px;
    text-wrap: balance;
}
.h1-accent {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p.lead { font-size: 18px; color: var(--muted); margin-bottom: 32px; line-height: 1.65; max-width: 460px; text-wrap: pretty; }
.hero-word { color: var(--accent); font-weight: 700; display: inline-block; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.cta-perks { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.cta-perks.center { justify-content: center; margin-top: 24px; }
.check { color: var(--green); font-weight: 700; }

.social-proof {
    display: flex; align-items: center; gap: 14px;
    margin-top: 30px; padding-top: 26px;
    border-top: 1px solid var(--border-soft);
    font-size: 14px; color: var(--muted);
    max-width: 480px;
}
.social-proof strong { color: var(--text); }
.stars { color: var(--amber); font-size: 13px; letter-spacing: 1.5px; white-space: nowrap; }

.avatar-stack { display: flex; flex-shrink: 0; }
.avatar-stack span {
    width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 13px; font-weight: 700;
    color: #bfe9f5;
    background: linear-gradient(160deg, #1c2836, #101722);
    border: 2px solid var(--bg);
    box-shadow: inset 0 0 0 1px rgba(53, 214, 244, 0.22);
}
.avatar-stack span + span { margin-left: -9px; }
.avatar-stack span:last-child { color: var(--accent); }

/* Панель подключения */
.hero-visual { display: flex; justify-content: center; position: relative; min-width: 0; }
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 8% 0 -4% 0;
    background: radial-gradient(closest-side, rgba(53, 214, 244, 0.1), transparent 72%);
    filter: blur(30px);
    pointer-events: none;
}
.panel {
    width: 100%; max-width: 400px;
    background: linear-gradient(168deg, #131722 0%, #0b0e16 100%);
    border: 1px solid rgba(150, 200, 235, 0.16);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-card), 0 0 50px rgba(53, 214, 244, 0.05);
    position: relative;
    overflow: hidden;
}
.panel::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(53, 214, 244, 0.1), transparent 44%);
    pointer-events: none;
}
.panel > * { position: relative; z-index: 1; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.dots { display: flex; gap: 6px; }
.dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(205, 216, 233, 0.16); }
.dots span:first-child { background: rgba(205, 216, 233, 0.28); }
.status {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(63, 220, 160, 0.09); color: #8ff0cc;
    font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
    box-shadow: inset 0 0 0 1px rgba(63, 220, 160, 0.2);
}
.live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); animation: blink 1.8s infinite; }

.panel-main { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
.panel-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center;
    color: #061018;
    background: var(--grad);
    box-shadow: 0 12px 26px rgba(63, 150, 240, 0.3), inset 0 1px 0 rgba(255,255,255,0.42);
    flex-shrink: 0;
}
.panel-name { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.panel-sub { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* Визуализация скорости */
.speed-viz {
    border: 1px solid var(--border-soft);
    background: rgba(6, 9, 15, 0.55);
    border-radius: 14px;
    padding: 14px 16px 12px;
    margin-bottom: 12px;
}
.speed-bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 52px; margin-bottom: 10px;
}
.speed-bars i {
    flex: 1;
    height: var(--h, 40%);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, rgba(53, 214, 244, 0.85), rgba(124, 140, 248, 0.35));
    opacity: 0.85;
}
.speed-bars i:nth-child(-n+6) { opacity: 0.45; }
.speed-label {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11.5px; color: var(--muted-2); font-weight: 500;
}
.speed-label strong { color: var(--green); font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }

.panel-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.panel-meta div {
    background: rgba(6, 9, 15, 0.55);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 11px 4px 9px;
    text-align: center;
}
.panel-meta strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 3px; white-space: nowrap; font-variant-numeric: tabular-nums; font-family: var(--font-display); }
.panel-meta small { font-size: 9.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.6px; }

.panel-cta { width: 100%; min-height: 52px; margin-top: 20px; font-size: 15px; }
.panel-note { text-align: center; font-size: 12px; color: var(--muted-2); margin-top: 12px; }

/* ============ Полоса доверия ============ */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 24px 0 96px;
    padding: 8px 0;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    text-align: center;
}
.trust-strip div {
    display: flex; flex-direction: column; gap: 3px;
    padding: 18px 12px;
    border-left: 1px solid var(--border-soft);
}
.trust-strip div:first-child { border-left: none; }
.trust-strip strong {
    font-size: 25px; font-weight: 700; letter-spacing: -0.5px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.trust-strip span { font-size: 12.5px; color: var(--muted); font-weight: 500; }
@media (max-width: 700px) {
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-strip div:nth-child(3) { border-left: none; }
    .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
}

/* ============ Заголовки секций ============ */
section { margin-bottom: 104px; }
.eyebrow {
    display: table;
    margin: 0 auto 16px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(170, 190, 220, 0.05);
    color: var(--muted);
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.6px; text-transform: uppercase;
}
.section-title {
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 700; letter-spacing: -1.4px;
    text-align: center; margin-bottom: 14px;
    text-wrap: balance;
}
.section-subtitle {
    font-size: 16.5px; color: var(--muted);
    text-align: center; max-width: 540px;
    margin: 0 auto 48px; line-height: 1.65;
    text-wrap: pretty;
}
.section-cta { text-align: center; margin-top: 44px; }

/* ============ Шаги ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.step::after {
    content: '';
    position: absolute; top: 0; left: 28px; right: 28px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 214, 244, 0.35), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--border); }
.step:hover::after { opacity: 1; }
.step-num {
    font-size: 42px; font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(53, 214, 244, 0.9), rgba(53, 214, 244, 0.18));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ============ Преимущества ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); }
.feature-icon {
    width: 46px; height: 46px; border-radius: 13px;
    background: rgba(53, 214, 244, 0.08);
    border: 1px solid rgba(53, 214, 244, 0.2);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.feature h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: -0.2px; }
.feature p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ============ Тарифы ============ */
.pricing-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; align-items: stretch; }
.price-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 34px 28px;
    width: 330px;
    display: flex; flex-direction: column;
    text-align: left; position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border); }
.price-card.popular {
    background:
        linear-gradient(168deg, #141a28 0%, #0c0f18 100%) padding-box,
        linear-gradient(160deg, rgba(53, 214, 244, 0.75), rgba(124, 140, 248, 0.4) 45%, rgba(124, 140, 248, 0.12)) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 24px 60px rgba(20, 60, 110, 0.28);
    transform: scale(1.04);
    z-index: 2;
}
.price-card.popular:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 30px 70px rgba(20, 60, 110, 0.36); }

.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad);
    color: #061018;
    padding: 6px 18px; border-radius: 999px;
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.9px;
    box-shadow: 0 4px 16px rgba(63, 150, 240, 0.4);
    white-space: nowrap;
}
.save-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #0d1a17;
    color: var(--green);
    border: 1px solid rgba(63, 220, 160, 0.38);
    padding: 5px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
    white-space: nowrap;
}

.card-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; }
.card-desc { font-size: 13.5px; color: var(--muted-2); }
.price {
    font-size: 46px; font-weight: 700;
    margin: 16px 0 26px;
    letter-spacing: -1.8px;
    line-height: 1;
}
.price-card.popular .price {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.price span { font-size: 15px; font-weight: 500; color: var(--muted-2); letter-spacing: 0; font-family: var(--font-body); }

.features-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.features-list li {
    padding: 10px 0;
    font-size: 14.5px; font-weight: 500;
    color: var(--muted);
    display: flex; align-items: flex-start; gap: 11px;
    border-bottom: 1px solid var(--border-soft);
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.card-btn { width: 100%; padding: 15px; font-size: 15px; }

.pricing-note {
    text-align: center; margin-top: 32px;
    font-size: 13.5px; color: var(--muted);
    font-weight: 500;
}

@media (max-width: 960px) {
    .pricing-cards { flex-direction: column; align-items: center; }
    .price-card { width: 100%; max-width: 420px; }
    .price-card.popular { transform: none; order: -1; }
    .price-card.popular:hover { transform: translateY(-6px); }
}

/* ============ Отзывы ============ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.review:hover { transform: translateY(-4px); border-color: var(--border); }
.review .stars { font-size: 12px; }
.review blockquote { color: var(--muted); font-size: 14.5px; line-height: 1.7; flex-grow: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(160deg, #1c2836, #101722);
    box-shadow: inset 0 0 0 1px rgba(53, 214, 244, 0.25);
    color: var(--accent);
    font-weight: 700; font-size: 16px;
    flex-shrink: 0;
    font-family: var(--font-display);
}
.review figcaption strong { display: block; font-size: 14.5px; }
.review figcaption small { color: var(--muted-2); font-size: 12.5px; }

/* ============ FAQ ============ */
.faq-list { max-width: 700px; margin: 0 auto; }
details {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    padding: 19px 24px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
details:hover { border-color: var(--border); }
details[open] { background: var(--surface-2); border-color: var(--border); }
summary {
    cursor: pointer; font-weight: 600; font-size: 15.5px;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    min-width: 0; overflow-wrap: anywhere;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 21px; color: var(--accent); transition: transform 0.3s ease; font-weight: 300; flex-shrink: 0; }
details[open] summary::after { transform: rotate(45deg); }
details > div { margin-top: 13px; color: var(--muted); line-height: 1.7; font-size: 14.5px; }

/* ============ Финальная CTA ============ */
.final-cta {
    background:
        radial-gradient(120% 160% at 50% -30%, rgba(53, 214, 244, 0.16), rgba(124, 140, 248, 0.07) 48%, transparent 78%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 72px 32px;
    text-align: center;
    position: relative; overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 214, 244, 0.6), transparent);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; letter-spacing: -1.3px;
    margin-bottom: 14px; text-wrap: balance;
}
.final-cta p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }

/* ============ Футер ============ */
footer {
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
    color: var(--muted-2);
    font-size: 13px;
    font-weight: 500;
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
footer .logo { width: 32px; height: 32px; border-radius: 9px; }
footer .brand-text strong { font-size: 15px; }
.footer-nav { display: flex; gap: 4px; }
.footer-nav a {
    color: var(--muted); text-decoration: none;
    padding: 6px 12px; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover { color: var(--text); background: rgba(170, 190, 220, 0.07); }
@media (max-width: 700px) {
    .footer-inner { flex-direction: column; text-align: center; }
}

/* ============ Мобильная закреплённая CTA ============ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(7, 8, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-soft);
    z-index: 200;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-cta-bar.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-cta-bar .btn { width: 100%; padding: 15px; font-size: 15.5px; }
@media (max-width: 760px) {
    .mobile-cta-bar { display: block; }
    .wrap { padding-bottom: 96px; }
}

/* ============ Модальное окно ============ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(3, 4, 8, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: linear-gradient(168deg, #141a28, #0b0e16);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px 34px;
    max-width: 430px; width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(53, 214, 244, 0.07);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.05);
    position: relative;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(170, 190, 220, 0.07);
    border: 1px solid var(--border-soft);
    color: var(--text);
    width: 38px; height: 38px; border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.25s;
}
.modal-close:hover { background: rgba(170, 190, 220, 0.14); border-color: var(--accent); color: var(--accent); }
.modal-icon { font-size: 52px; margin-bottom: 16px; }
.modal-title { font-size: 25px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; }
.modal-text { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.modal-btn { width: 100%; padding: 15px; font-size: 15.5px; }

/* ============ Появление при скролле ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
