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

:root {
    --bg: #030503;
    --bg-1: #070a07;
    --bg-2: #0b0f0b;
    --bg-3: #101510;
    --line: #1a231b;
    --line-2: #253026;
    --green: #00ff85;
    --green-2: #00d470;
    --green-3: #00a355;
    --green-soft: rgba(0, 255, 133, 0.12);
    --green-glow: rgba(0, 255, 133, 0.45);
    --white: #f5f8f5;
    --gray: #8f9b90;
    --gray-2: #5a655b;
}

html { scroll-behavior: smooth; }

html, body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loaded { cursor: default; }

/* ====== ФОН ====== */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 133, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 133, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-noise {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
    z-index: 1;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.bg-orb-1 {
    width: 550px; height: 550px;
    top: -180px; left: -180px;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.16), transparent 70%);
    animation: orbFloat1 14s ease-in-out infinite;
}
.bg-orb-2 {
    width: 650px; height: 650px;
    top: 40%; right: -250px;
    background: radial-gradient(circle, rgba(0, 190, 100, 0.1), transparent 70%);
    animation: orbFloat2 18s ease-in-out infinite;
}
.bg-orb-3 {
    width: 500px; height: 500px;
    bottom: -200px; left: 20%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.08), transparent 70%);
    animation: orbFloat1 16s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -40px); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, 50px); }
}

/* ====== PRELOADER ====== */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #050805 0%, #010201 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.loader-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-halo {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.35), transparent 60%);
    filter: blur(22px);
    animation: haloPulse 1.8s ease-in-out infinite;
}

.loader-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 133, 0.55);
    background: var(--bg-1);
    box-shadow:
        0 0 0 6px rgba(0, 255, 133, 0.05),
        0 0 45px rgba(0, 255, 133, 0.55),
        inset 0 0 25px rgba(0, 255, 133, 0.15);
    position: relative;
    z-index: 2;
    animation: logoScale 2s ease-in-out infinite;
}

@keyframes haloPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes logoScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.loader-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
    padding-left: 8px;
    background: linear-gradient(90deg, #ffffff 0%, #00ff85 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 2.5s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.loader-bar {
    width: 240px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-3), var(--green));
    border-radius: 2px;
    transition: width 0.25s ease;
    box-shadow: 0 0 12px var(--green);
}

.loader-percent {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--green);
    font-variant-numeric: tabular-nums;
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all 0.35s ease;
    animation: fadeDown 0.8s ease 0.2s both;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 3, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.35s ease, background 0.35s ease;
    z-index: -1;
}

.header.scrolled::before {
    border-bottom-color: var(--line);
    background: rgba(3, 5, 3, 0.88);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-logo-wrap {
    width: 42px; height: 42px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--green), var(--green-3), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 133, 0.35);
    transition: transform 0.35s ease;
}

.brand:hover .brand-logo-wrap { transform: rotate(360deg); }

.brand-logo {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--bg);
    background: var(--bg-1);
}

.brand-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-name::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

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

.nav > a:not(.nav-btn) {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.nav > a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav > a:not(.nav-btn):hover { color: var(--green); }
.nav > a:not(.nav-btn):hover::after { width: 100%; }

.nav-btn {
    padding: 11px 24px;
    border-radius: 12px;
    color: var(--green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--green);
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 255, 133, 0.04);
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    transform: translateY(101%);
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.nav-btn-text { position: relative; z-index: 2; }

.nav-btn:hover {
    color: var(--bg);
    box-shadow: 0 0 30px rgba(0, 255, 133, 0.5);
}

.nav-btn:hover::before { transform: translateY(0); }

/* MOBILE */
.mobile-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.mobile-toggle span {
    width: 18px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
    background: rgba(3, 5, 3, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.mobile-menu.open { display: flex; animation: fadeDown 0.3s ease; }

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-cta {
    text-align: center;
    background: var(--green) !important;
    color: var(--bg) !important;
    border-radius: 12px;
    padding: 14px !important;
    margin-top: 6px;
    border: none !important;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 160px 30px 90px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: rgba(0, 255, 133, 0.04);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 42px;
    animation: fadeUp 0.8s ease 0.3s both;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: dotPulse 1.8s ease-in-out infinite;
}

.hero-logo-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.9s ease 0.4s both;
}

.hero-logo-halo {
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.35), transparent 60%);
    filter: blur(35px);
    animation: haloPulse 3s ease-in-out infinite;
}

.hero-logo-orbit {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 255, 133, 0.35);
    animation: orbitSpin 20s linear infinite;
}

.orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--green), 0 0 30px var(--green);
}

@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background: var(--bg-1);
    border: 3px solid rgba(0, 255, 133, 0.5);
    box-shadow:
        0 0 60px rgba(0, 255, 133, 0.55),
        0 0 120px rgba(0, 255, 133, 0.2),
        inset 0 0 30px rgba(0, 255, 133, 0.15);
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 26px;
    line-height: 1;
    animation: fadeUp 0.9s ease 0.5s both;
}

.title-line {
    display: inline-block;
    color: var(--white);
}

.title-line.green {
    background: linear-gradient(120deg, #00ff85 0%, #00d470 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 255, 133, 0.55));
}

.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.75;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto 44px;
    animation: fadeUp 0.9s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
    animation: fadeUp 0.9s ease 0.7s both;
}

/* КНОПКИ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff85, #00d470);
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(0, 255, 133, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 255, 133, 0.6);
}

.btn-primary:hover::before { left: 120%; }

.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    border: 1px solid var(--line-2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 133, 0.18);
    background: rgba(0, 255, 133, 0.04);
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 34px 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(0, 255, 133, 0.03) 0%, rgba(0, 255, 133, 0.005) 100%);
    backdrop-filter: blur(10px);
    animation: fadeUp 0.9s ease 0.8s both;
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.5;
}

.stat { text-align: center; }

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 11px;
    color: var(--gray-2);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}

/* ====== MARQUEE ====== */
.marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(0, 255, 133, 0.015);
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gray-2);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.marquee-track .dot {
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    opacity: 0.6;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ====== SECTION ====== */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    padding: 6px 14px;
    border: 1px solid rgba(0, 255, 133, 0.3);
    border-radius: 50px;
    background: rgba(0, 255, 133, 0.05);
    margin-bottom: 20px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
    color: var(--white);
    line-height: 1.15;
}

.section-head p {
    color: var(--gray);
    font-size: 15px;
}

/* ====== FEATURES ====== */
.features {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 110px 30px;
}

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

.feature {
    position: relative;
    padding: 32px 28px;
    border-radius: 20px;
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 133, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 133, 0.4);
    box-shadow: 0 25px 60px rgba(0, 255, 133, 0.1);
}

.feature:hover::after { opacity: 1; }

.feature-num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green);
    padding: 5px 12px;
    border: 1px solid rgba(0, 255, 133, 0.3);
    border-radius: 8px;
    background: rgba(0, 255, 133, 0.05);
    display: inline-block;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.feature-body { position: relative; z-index: 2; }

.feature h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: -0.3px;
}

.feature p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.65;
}

/* ====== PRICING ====== */
.pricing {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px 110px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 34px 34px;
    border-radius: 26px;
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.4;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 133, 0.45);
    box-shadow: 0 30px 70px rgba(0, 255, 133, 0.12);
}

.price-card.featured {
    border-color: rgba(0, 255, 133, 0.55);
    box-shadow:
        0 0 60px rgba(0, 255, 133, 0.18),
        inset 0 0 60px rgba(0, 255, 133, 0.02);
}

.price-card.featured::before { opacity: 1; }

.price-card.featured:hover {
    box-shadow:
        0 30px 80px rgba(0, 255, 133, 0.22),
        inset 0 0 60px rgba(0, 255, 133, 0.03);
}

.price-label {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg);
    background: linear-gradient(135deg, #00ff85, #00d470);
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 255, 133, 0.5);
    z-index: 3;
}

.price-head {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.price-tag {
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 22px;
    font-weight: 700;
}

.price-value {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 16px;
    line-height: 1;
}

.price-num {
    font-size: 68px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -3px;
    line-height: 1;
}

.price-currency {
    font-size: 28px;
    color: var(--green);
    font-weight: 800;
    margin-top: 6px;
    filter: drop-shadow(0 0 12px rgba(0, 255, 133, 0.5));
}

.price-note {
    font-size: 14px;
    color: var(--gray);
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.price-list li {
    color: var(--white);
    font-size: 14px;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}

.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 255, 133, 0.1);
    border: 1px solid rgba(0, 255, 133, 0.5);
}

.price-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    width: 5px;
    height: 8px;
    border-right: 1.6px solid var(--green);
    border-bottom: 1.6px solid var(--green);
    transform: rotate(45deg);
}

.price-btn {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--line-2);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.price-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0, 255, 133, 0.05);
    transform: translateY(-2px);
}

.price-btn-primary {
    background: linear-gradient(135deg, #00ff85, #00d470);
    color: var(--bg);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 255, 133, 0.35);
}

.price-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.7s ease;
}

.price-btn-primary:hover {
    color: var(--bg);
    background: linear-gradient(135deg, #1fff95, #00e07a);
    box-shadow: 0 14px 40px rgba(0, 255, 133, 0.6);
    transform: translateY(-3px);
}

.price-btn-primary:hover::before { left: 120%; }

/* ====== FAQ ====== */
.faq {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 30px 110px;
}

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

.faq-item {
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-item[open] {
    border-color: rgba(0, 255, 133, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 133, 0.08);
}

.faq-item summary {
    list-style: none;
    padding: 24px 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--green); }

.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 133, 0.4);
    background: rgba(0, 255, 133, 0.05);
    transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 10px; height: 1.6px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.6px; height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-content {
    padding: 0 26px 24px;
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.75;
    animation: faqFade 0.3s ease;
}

@keyframes faqFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== CTA ====== */
.cta {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 30px 120px;
}

.cta-box {
    position: relative;
    padding: 72px 40px;
    border-radius: 30px;
    background: linear-gradient(160deg, var(--bg-1) 0%, #040604 100%);
    border: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
}

.cta-halo {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.22), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.6;
}

.cta-content { position: relative; z-index: 2; }

.cta-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 255, 133, 0.3);
    border-radius: 50px;
    background: rgba(0, 255, 133, 0.05);
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.cta-box p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 38px;
}

/* MIRROR BTN */
.mirror-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 60px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg);
    background: linear-gradient(135deg, #00ff85 0%, #00d470 100%);
    box-shadow:
        0 12px 40px rgba(0, 255, 133, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 0 rgba(0, 255, 133, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.mirror-btn-icon {
    display: flex;
    transition: transform 0.4s ease;
}

.mirror-btn-text { position: relative; z-index: 2; }

.mirror-btn-shine {
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transition: left 0.75s ease;
}

.mirror-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--green), transparent, var(--green));
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.mirror-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 22px 60px rgba(0, 255, 133, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mirror-btn:hover::after { opacity: 0.8; }

.mirror-btn:hover .mirror-btn-shine { left: 120%; }

.mirror-btn:hover .mirror-btn-icon {
    transform: translateX(-4px) rotate(-8deg);
}

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

/* ====== FOOTER ====== */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    padding: 28px 32px;
    background: rgba(3, 5, 3, 0.6);
    backdrop-filter: blur(10px);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.3px;
}

.footer-logo-wrap {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 133, 0.4);
    box-shadow: 0 0 14px rgba(0, 255, 133, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-meta {
    font-size: 12px;
    color: var(--gray-2);
    letter-spacing: 1px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 50px;
}

.footer-links a:hover {
    color: var(--green);
    border-color: rgba(0, 255, 133, 0.4);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .header-inner { padding: 14px 20px; }

    .hero { padding: 130px 20px 70px; }
    .hero-logo-wrap { width: 160px; height: 160px; margin-bottom: 34px; }
    .hero-logo { width: 145px; height: 145px; }
    .hero-logo-orbit { inset: -4px; }
    .hero-logo-halo { inset: -35px; }
    .hero-title { letter-spacing: -1.5px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }

    .hero-stats {
        gap: 22px;
        padding: 26px 16px;
    }
    .stat { min-width: 60px; }
    .stat-value { font-size: 24px; }
    .stat-divider { display: none; }

    .features { padding: 80px 20px; }
    .features-grid { grid-template-columns: 1fr; gap: 14px; }

    .pricing { padding: 20px 20px 80px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-num { font-size: 54px; }
    .price-card { padding: 34px 24px 26px; }

    .faq { padding: 20px 20px 80px; }
    .faq-item summary { padding: 20px 20px; font-size: 15px; }
    .faq-content { padding: 0 20px 20px; font-size: 14px; }

    .cta { padding: 0 20px 90px; }
    .cta-box { padding: 50px 24px; border-radius: 24px; }
    .mirror-btn {
        padding: 17px 40px;
        font-size: 15px;
        letter-spacing: 2px;
        width: 100%;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
    }

    .marquee-track { gap: 26px; }
    .marquee-track span { font-size: 13px; letter-spacing: 3px; }
}

/* =====================================================
   ДОПОЛНИТЕЛЬНАЯ ПОЛИРОВКА
   ===================================================== */

/* --- Кастомный скроллбар --- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green-2), var(--green-3));
    border-radius: 10px;
    border: 2px solid var(--bg);
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover { background: var(--green); }
* { scrollbar-width: thin; scrollbar-color: var(--green-2) var(--bg); }

/* --- Выделение текста --- */
::selection { background: rgba(0, 255, 133, 0.3); color: var(--white); }
::-moz-selection { background: rgba(0, 255, 133, 0.3); color: var(--white); }

/* --- Свечение за курсором --- */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.09), transparent 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: transform;
}
body.loaded .cursor-glow { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* --- Секция «Как начать» --- */
.steps {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 110px 30px 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.step {
    position: relative;
    padding: 38px 30px;
    border-radius: 20px;
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.5;
}

.step::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 133, 0.45);
    box-shadow: 0 25px 60px rgba(0, 255, 133, 0.12);
}
.step:hover::after { opacity: 1; }

.step-num {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff85 0%, #00a355 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 133, 0.4));
    display: inline-block;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

/* --- Reveal-анимации --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Кнопка «Наверх» --- */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(0, 255, 133, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 90;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-top::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.back-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 45px rgba(0, 255, 133, 0.7);
}

.back-top:hover::before { opacity: 1; }

.back-top:active { transform: translateY(-1px) scale(0.95); }

/* --- Тонкая полировка существующих блоков --- */
.section-head h2 {
    background: linear-gradient(120deg, #ffffff 0%, #d8ffe8 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature h3 {
    transition: color 0.3s ease;
}
.feature:hover h3 { color: var(--green); }

.price-card {
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Плавное появление всей страницы после лоадера */
body:not(.loaded) main,
body:not(.loaded) footer {
    opacity: 0;
}
main, footer {
    transition: opacity 0.6s ease 0.1s;
}

/* --- Адаптив для новых секций --- */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .steps { padding: 80px 20px 20px; }
}

@media (max-width: 780px) {
    .step { padding: 30px 24px; }
    .step-num { font-size: 36px; }
    .back-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
