/* ============================================
   ZOOMER AESTHETIC — Magic Production
   Target: Girls 18-27, Gen Z Style
   ============================================ */

/* Google Font: DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,400&display=swap');

:root {
    /* Colors — фиолет + голубой неон (меньше розового) */
    --bg-dark: #2a1548;
    --bg-card: #352060;
    --primary: #8B5CF6;
    --secondary: #A78BFA;
    --accent: #67e8f9;
    --accent2: #a5f3fc;
    --success: #34D399;
    --text-main: #F5F3FF;
    --text-muted: #C4B5FD;
    --grad-main: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #67e8f9 100%);
    --grad-warm: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #6366F1 100%);
    --grad-card: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(103, 232, 249, 0.12));
    --glass-bg: rgba(53, 32, 96, 0.5);
    --glass-border: 1px solid rgba(139, 92, 246, 0.25);
    --glass: blur(20px);
    --border: 1px solid rgba(139, 92, 246, 0.2);
    --border-hover: 1px solid rgba(103, 232, 249, 0.7);
    --shadow-glow: 0 0 60px rgba(103, 232, 249, 0.25);
    --input-bg: rgba(255, 255, 255, 0.08);
    --header-bg: rgba(42, 21, 72, 0.88);
    --radius-card: 28px;
    --radius-btn: 100px;
    --radius-input: 16px;
    /* Stepper — фиолет + голубой */
    --stepper-step-bg: rgba(139, 92, 246, 0.3);
    --stepper-step-color: #C4B5FD;
    --stepper-active: #8B5CF6;
    --stepper-line-bg: rgba(103, 232, 249, 0.4);
    --stepper-muted: #A78BFA;
    --footer-bg: #1e0f35;
    /* Неоновое синее свечение — светлый голубой */
    --neon-blue: #67e8f9;
    --neon-blue-dim: rgba(103, 232, 249, 0.85);
    --neon-glow: 0 0 20px rgba(103, 232, 249, 0.6), 0 0 40px rgba(34, 211, 238, 0.35), 0 0 60px rgba(103, 232, 249, 0.25);
    --neon-glow-strong: 0 0 15px rgba(103, 232, 249, 0.9), 0 0 30px rgba(34, 211, 238, 0.6), 0 0 50px rgba(103, 232, 249, 0.4);
}

/* Анимации неонового свечения и сияния */
@keyframes neon-pulse {
    0%, 100% { filter: drop-shadow(0 0 8px var(--neon-blue-dim)) drop-shadow(0 0 20px rgba(103, 232, 249, 0.3)); opacity: 1; }
    50% { filter: drop-shadow(0 0 20px var(--neon-blue)) drop-shadow(0 0 40px rgba(103, 232, 249, 0.6)); opacity: 0.95; }
}

@keyframes neon-glow-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(103, 232, 249, 0.4), 0 0 30px rgba(34, 211, 238, 0.2); }
    50% { box-shadow: 0 0 25px rgba(103, 232, 249, 0.7), 0 0 50px rgba(34, 211, 238, 0.4); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 10px var(--neon-blue-dim), 0 0 20px rgba(103, 232, 249, 0.3); }
    50% { text-shadow: 0 0 20px var(--neon-blue), 0 0 40px rgba(103, 232, 249, 0.5); }
}

@keyframes blob-glow {
    0%, 100% { filter: blur(65px); opacity: 0.75; }
    50% { filter: blur(80px); opacity: 0.9; }
}

@keyframes blob-glow-light {
    0%, 100% { filter: blur(50px); opacity: 0.92; }
    50% { filter: blur(65px); opacity: 1; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Light Theme — светло-голубой фон + фиолетовые акценты */
[data-theme="light"] {
    --bg-dark: #A8DDFA;
    --bg-card: #B8E4FC;
    --primary: #7C3AED;
    --secondary: #8B5CF6;
    --accent: #A78BFA;
    --text-main: #1E1B4B;
    --text-muted: #4C1D95;
    --glass-bg: rgba(184, 228, 252, 0.92);
    --glass-border: 1px solid rgba(139, 92, 246, 0.28);
    --border: 1px solid rgba(139, 92, 246, 0.18);
    --border-hover: 1px solid rgba(139, 92, 246, 0.5);
    --input-bg: rgba(184, 228, 252, 0.98);
    --header-bg: rgba(184, 228, 252, 0.96);
    --shadow-glow: 0 0 50px rgba(139, 92, 246, 0.12), 0 0 100px rgba(167, 139, 250, 0.06);
    --grad-card: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(196, 181, 253, 0.05));
    --grad-main: linear-gradient(135deg, #6D28D9 0%, #7C3AED 40%, #8B5CF6 70%, #A78BFA 100%);
    --grad-warm: linear-gradient(135deg, #5B21B6 0%, #6D28D9 50%, #7C3AED 100%);
    /* Stepper — светлая тема */
    --stepper-step-bg: rgba(139, 92, 246, 0.2);
    --stepper-step-color: #4C1D95;
    --stepper-active: #7C3AED;
    --stepper-line-bg: rgba(139, 92, 246, 0.35);
    --stepper-muted: #8B5CF6;
    --footer-bg: #EDE9FE;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    color: #1E1B4B;
}

[data-theme="light"] .lang-toggle-btn {
    color: #0F172A;
}

[data-theme="light"] .lang-option {
    color: #475569;
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #5B21B6 0%, #6D28D9 35%, #7C3AED 65%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px rgba(139, 92, 246, 0.25));
}

[data-theme="light"] .hero-subtitle {
    color: #334155;
}

[data-theme="light"] .hero-note {
    color: #475569;
}

[data-theme="light"] .hero-bg-image {
    opacity: 0.18;
    filter: blur(10px) brightness(1.15) saturate(0.7);
}

[data-theme="light"] .hero-edge-orb {
    opacity: 1;
    filter: blur(35px);
}

[data-theme="light"] .hero-edge-orb-top {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(196, 181, 253, 0.3) 50%, transparent 70%);
}

[data-theme="light"] .hero-edge-orb-right {
    background: radial-gradient(circle, rgba(224, 242, 254, 0.9) 0%, rgba(167, 139, 250, 0.35) 50%, transparent 70%);
}

[data-theme="light"] .hero-edge-orb-bottom {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.45) 0%, rgba(196, 181, 253, 0.28) 50%, transparent 70%);
}

[data-theme="light"] .hero-edge-orb-left {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(224, 242, 254, 0.4) 50%, transparent 70%);
}

[data-theme="light"] .feature-item {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.22);
    color: #1E1B4B;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

[data-theme="light"] .faq-item {
    background: rgba(184, 228, 252, 0.95);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
}

[data-theme="light"] .faq-item.active {
    background: rgba(184, 228, 252, 0.98);
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.12);
}

[data-theme="light"] .company-card:hover,
[data-theme="light"] .card:hover,
[data-theme="light"] .advertise-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.08);
}

[data-theme="light"] .nav-link {
    color: #475569;
}

[data-theme="light"] .nav-link:hover {
    color: #7C3AED;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

[data-theme="light"] .header {
    border: 2px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.12), 0 0 40px rgba(167, 139, 250, 0.06);
}

[data-theme="light"] .header-logo-wrap {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 0 1px rgba(184, 228, 252, 0.6) inset;
}

[data-theme="light"] .header-logo-wrap:hover {
    border-color: #7C3AED;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(167, 139, 250, 0.12);
}

[data-theme="light"] .step-number {
    color: rgba(139, 92, 246, 0.12);
}

/* Блобы на светлой теме — ярче и заметнее */
[data-theme="light"] .blob {
    opacity: 1;
    filter: blur(50px);
}

[data-theme="light"] .blob-1 {
    background: radial-gradient(circle, rgba(109, 40, 217, 0.7) 0%, rgba(124, 58, 237, 0.5) 32%, transparent 62%);
    animation: blob-orbit-1 10s ease-in-out infinite, blob-glow-light 6s ease-in-out infinite;
}

[data-theme="light"] .blob-2 {
    background: radial-gradient(circle, rgba(91, 33, 182, 0.65) 0%, rgba(109, 40, 217, 0.48) 35%, transparent 62%);
    animation: blob-orbit-2 12s ease-in-out infinite, blob-glow-light 7s ease-in-out infinite 0.5s;
}

[data-theme="light"] .blob-3 {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.65) 0%, rgba(109, 40, 217, 0.45) 35%, transparent 62%);
    animation: blob-orbit-3 9s ease-in-out infinite, blob-glow-light 5s ease-in-out infinite 1s;
}

[data-theme="light"] .blob-4 {
    background: radial-gradient(circle, rgba(109, 40, 217, 0.6) 0%, rgba(139, 92, 246, 0.45) 38%, transparent 62%);
    animation: blob-orbit-4 11s ease-in-out infinite, blob-glow-light 6.5s ease-in-out infinite 0.3s;
}

[data-theme="light"] .highlight-box {
    background: rgba(184, 228, 252, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.18);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .highlight-box::before {
    opacity: 0.1;
}

[data-theme="light"] .company-stats {
    background: rgba(184, 228, 252, 0.92);
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08);
}

[data-theme="light"] .stat-number {
    color: #7C3AED;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .footer {
    background: var(--footer-bg);
}

[data-theme="light"] .testimonial-item {
    background: rgba(184, 228, 252, 0.98);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08), 0 0 0 1px rgba(139, 92, 246, 0.06);
}

[data-theme="light"] .advertise-card li {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .income-amount {
    color: #6D28D9;
    font-weight: 700;
}

[data-theme="light"] .income-card-featured .income-amount {
    color: #fff;
}

/* Кнопки и лого в светлой теме — фиолетовые */
[data-theme="light"] .logo-text,
[data-theme="light"] .footer-logo .logo-text {
    background: linear-gradient(135deg, #5B21B6 0%, #6D28D9 40%, #7C3AED 70%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(139, 92, 246, 0.2));
}

[data-theme="light"] .nav-link-cta {
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 50%, #8B5CF6 100%);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

[data-theme="light"] .nav-link-cta:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(184, 228, 252, 0.4);
}

[data-theme="light"] .cta-button {
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 45%, #8B5CF6 100%);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(184, 228, 252, 0.25) inset;
}

[data-theme="light"] .cta-button::before {
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 50%, #8B5CF6 100%);
}

[data-theme="light"] .cta-button:hover {
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.45), 0 0 60px rgba(167, 139, 250, 0.15);
}

[data-theme="light"] .cta-button.pulse {
    animation: cta-pulse-light 3s ease-in-out infinite;
}

@keyframes cta-pulse-light {
    0%, 100% { box-shadow: 0 8px 32px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(184, 228, 252, 0.25) inset; }
    50% { box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5), 0 0 40px rgba(167, 139, 250, 0.2), 0 0 0 1px rgba(184, 228, 252, 0.25) inset; }
}

[data-theme="light"] .support-btn {
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 50%, #8B5CF6 100%);
    box-shadow: 0 6px 28px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(184, 228, 252, 0.2) inset;
}

[data-theme="light"] .support-btn:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5), 0 0 50px rgba(167, 139, 250, 0.18);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(180deg, #351a5a 0%, var(--bg-dark) 35%, var(--bg-dark) 100%);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background 0.5s ease, color 0.4s ease;
}

[data-theme="light"] body {
    background: var(--bg-dark);
}

/* Animated Background Blobs */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.88;
    transition: background 0.6s ease, opacity 0.5s ease, filter 0.5s ease;
}

.blob-1 {
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.5) 0%, rgba(139, 92, 246, 0.45) 35%, transparent 65%);
    top: -25%;
    left: -20%;
    animation: blob-orbit-1 10s ease-in-out infinite, blob-glow 6s ease-in-out infinite;
}

.blob-2 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.55) 0%, rgba(167, 139, 250, 0.48) 40%, transparent 65%);
    bottom: -20%;
    right: -18%;
    animation: blob-orbit-2 12s ease-in-out infinite, blob-glow 7s ease-in-out infinite 0.5s;
}

.blob-3 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.5) 0%, rgba(125, 211, 252, 0.42) 45%, transparent 65%);
    top: 30%;
    left: 45%;
    animation: blob-orbit-3 9s ease-in-out infinite, blob-glow 5s ease-in-out infinite 1s;
}

.blob-4 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.48) 0%, rgba(125, 211, 252, 0.38) 42%, transparent 65%);
    top: 55%;
    left: 5%;
    animation: blob-orbit-4 11s ease-in-out infinite, blob-glow 6.5s ease-in-out infinite 0.3s;
}

@keyframes blob-orbit-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(180px, 120px) scale(1.3);
    }
    50% {
        transform: translate(280px, -80px) scale(0.85);
    }
    75% {
        transform: translate(80px, 200px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blob-orbit-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-220px, -120px) scale(1.35);
    }
    50% {
        transform: translate(-120px, 180px) scale(0.8);
    }
    75% {
        transform: translate(140px, -100px) scale(1.15);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blob-orbit-3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-200px, 100px) scale(1.25) rotate(120deg);
    }
    66% {
        transform: translate(150px, -180px) scale(0.9) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

@keyframes blob-orbit-4 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(160px, -140px) scale(1.2);
    }
    66% {
        transform: translate(-100px, 120px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* =========== TYPOGRAPHY =========== */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: var(--grad-main);
    filter: drop-shadow(0 0 15px rgba(103, 232, 249, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-intro {
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========== HEADER =========== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: var(--header-bg);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 2px solid rgba(103, 232, 249, 0.35);
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.25), 0 4px 20px rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-card);
    padding: 15px 30px;
    z-index: 999;
    transition: all 0.4s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Логотип в круглой рамке */
.header-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: var(--glass-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header-logo-wrap:hover {
    border-color: rgba(103, 232, 249, 0.9);
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.6), 0 0 40px rgba(34, 211, 238, 0.3);
}

.header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s ease-in-out infinite;
    position: relative;
    z-index: 1002;
    filter: drop-shadow(0 0 12px rgba(103, 232, 249, 0.4));
    transition: filter 0.3s ease;
}

.logo-text:hover {
    filter: drop-shadow(0 0 25px rgba(103, 232, 249, 0.9)) drop-shadow(0 0 50px rgba(34, 211, 238, 0.5));
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s ease-in-out infinite, neon-pulse 3s ease-in-out infinite 0.5s;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: 0.3s;
}

@keyframes shine {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.logo-accent {
    color: inherit;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-main);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(103, 232, 249, 0.5), 0 0 30px rgba(34, 211, 238, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--grad-warm);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    border: 2px solid rgba(103, 232, 249, 0.35);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.25);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.8), 0 0 60px rgba(34, 211, 238, 0.4), 0 8px 25px rgba(139, 92, 246, 0.5);
    filter: brightness(1.15);
    border-color: rgba(103, 232, 249, 1);
}

/* =========== HERO =========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: blur(5px) brightness(0.75) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Орбы, бегущие по краю hero с эффектом прыжка */
.hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.hero-edge-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.7;
    will-change: transform;
}

.hero-edge-orb-top {
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.25) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: hero-edge-run-top 4s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-edge-orb-right {
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.55) 0%, rgba(167, 139, 250, 0.25) 50%, transparent 70%);
    transform: translate(50%, -50%);
    animation: hero-edge-run-right 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-edge-orb-bottom {
    width: 120px;
    height: 120px;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.5) 0%, rgba(125, 211, 252, 0.2) 50%, transparent 70%);
    transform: translate(50%, 50%);
    animation: hero-edge-run-bottom 4.5s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-edge-orb-left {
    width: 120px;
    height: 120px;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.5) 0%, rgba(125, 211, 252, 0.2) 50%, transparent 70%);
    transform: translate(-50%, 50%);
    animation: hero-edge-run-left 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes hero-edge-run-top {
    0% { left: 0; transform: translate(-50%, -50%) translateY(0) scale(1); }
    25% { left: 25%; transform: translate(-50%, -50%) translateY(12px) scale(1.2); }
    50% { left: 50%; transform: translate(-50%, -50%) translateY(0) scale(1); }
    75% { left: 75%; transform: translate(-50%, -50%) translateY(12px) scale(1.2); }
    100% { left: 100%; transform: translate(-50%, -50%) translateY(0) scale(1); }
}

@keyframes hero-edge-run-right {
    0% { top: 0; transform: translate(50%, -50%) translateX(0) scale(1); }
    25% { top: 25%; transform: translate(50%, -50%) translateX(-12px) scale(1.2); }
    50% { top: 50%; transform: translate(50%, -50%) translateX(0) scale(1); }
    75% { top: 75%; transform: translate(50%, -50%) translateX(-12px) scale(1.2); }
    100% { top: 100%; transform: translate(50%, -50%) translateX(0) scale(1); }
}

@keyframes hero-edge-run-bottom {
    0% { right: 0; transform: translate(50%, 50%) translateY(0) scale(1); }
    25% { right: 25%; transform: translate(50%, 50%) translateY(-12px) scale(1.2); }
    50% { right: 50%; transform: translate(50%, 50%) translateY(0) scale(1); }
    75% { right: 75%; transform: translate(50%, 50%) translateY(-12px) scale(1.2); }
    100% { right: 100%; transform: translate(50%, 50%) translateY(0) scale(1); }
}

@keyframes hero-edge-run-left {
    0% { bottom: 0; transform: translate(-50%, 50%) translateX(0) scale(1); }
    25% { bottom: 25%; transform: translate(-50%, 50%) translateX(12px) scale(1.2); }
    50% { bottom: 50%; transform: translate(-50%, 50%) translateX(0) scale(1); }
    75% { bottom: 75%; transform: translate(-50%, 50%) translateX(12px) scale(1.2); }
    100% { bottom: 100%; transform: translate(-50%, 50%) translateX(0) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 40%, #6366F1 70%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(103, 232, 249, 0.35));
}

/* TrueFocus-style hero title */
.hero-title.focus-container {
    position: relative;
    display: flex;
    gap: 0.4em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: none;
    -webkit-text-fill-color: unset;
    filter: none;
}

.hero-title.focus-container .focus-word {
    position: relative;
    font-size: inherit;
    font-weight: inherit;
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 40%, #6366F1 70%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(103, 232, 249, 0.4));
    cursor: default;
    transition: filter 0.5s ease;
    user-select: none;
}

[data-theme="light"] .hero-title.focus-container .focus-word {
    background: linear-gradient(135deg, #5B21B6 0%, #6D28D9 40%, #7C3AED 70%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.25));
}

.hero-title .focus-frame {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    box-sizing: content-box;
    border: none;
    transition: left 0.5s ease, top 0.5s ease, width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    --focus-border-color: var(--primary, #8B5CF6);
    --focus-glow-color: rgba(103, 232, 249, 0.55);
}

.hero-title .focus-frame .corner {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 3px solid var(--focus-border-color);
    filter: drop-shadow(0 0 4px var(--focus-glow-color));
    border-radius: 3px;
}

.hero-title .focus-frame .corner.top-left {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.hero-title .focus-frame .corner.top-right {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.hero-title .focus-frame .corner.bottom-left {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.hero-title .focus-frame .corner.bottom-right {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(103, 232, 249, 0.12);
    border-color: rgba(103, 232, 249, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(103, 232, 249, 0.5), 0 0 50px rgba(34, 211, 238, 0.25);
}

.feature-icon-svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

/* CTA Button — Pill with Glow */
.cta-button {
    display: inline-block;
    background: var(--grad-warm);
    color: white;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--grad-warm);
    border-radius: var(--radius-btn);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px rgba(103, 232, 249, 0.7), 0 0 60px rgba(34, 211, 238, 0.4), 0 15px 40px rgba(139, 92, 246, 0.5);
    border: 2px solid rgba(103, 232, 249, 0.9);
}

.cta-button:hover::before {
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(103, 232, 249, 0.5);
}

.cta-button.pulse {
    animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 8px 50px rgba(139, 92, 246, 0.55);
    }
}

.hero-note {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* =========== CARDS (Company, Income, What) =========== */
.company-grid,
.cards,
.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.company-card,
.card,
.income-card {
    background: var(--glass-bg);
    background-image: var(--grad-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: var(--radius-card);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.company-card::before,
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-main);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-card:hover::before,
.card:hover::before {
    opacity: 1;
}

.company-card:hover,
.card:hover,
.income-card:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 232, 249, 0.8);
    box-shadow: 0 0 35px rgba(103, 232, 249, 0.5), 0 0 60px rgba(34, 211, 238, 0.25), 0 20px 50px rgba(139, 92, 246, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.card:hover .card-image {
    transform: scale(1.03);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.card h3,
.company-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.card p,
.company-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.company-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.company-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

/* Фон секций не задаём — затемнение через .section::before (как у hero) */

/* =========== ADVERTISE =========== */
.advertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advertise-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-card);
    padding: 40px;
    border: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advertise-allowed {
    border-top: 4px solid var(--success);
}

.advertise-prohibited {
    border-top: 4px solid #F87171;
}

.advertise-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1;
}

.advertise-badge span {
    position: relative;
    top: -1px;
}

.advertise-badge svg {
    transform: translateY(1px);
}

.advertise-allowed .advertise-badge {
    background: rgba(52, 211, 153, 0.15);
    color: var(--success);
}

.advertise-prohibited .advertise-badge {
    background: rgba(248, 113, 113, 0.1);
    color: #F87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.advertise-card ul {
    list-style: none;
    padding-left: 10px;
}

.advertise-card li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid rgba(139, 92, 246, 0.06);
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: var(--text-muted);
}

.advertise-card li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(0.8);
    }
}

.advertise-allowed li::before {
    background: var(--success);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

.advertise-prohibited li::before {
    background: #F87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.4);
}

/* =========== FORMAT SECTION =========== */
.format-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.format-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.format-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.format-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.highlight-box {
    background: rgba(26, 10, 46, 0.4);
    padding: 50px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(103, 232, 249, 0.25);
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 0 40px rgba(103, 232, 249, 0.1);
}

.highlight-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-card);
    background: var(--grad-warm);
    z-index: -1;
    opacity: 0.2;
}

.highlight-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.highlight-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.9;
}

/* =========== INCOME =========== */
.income-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.income-amount {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin: 15px 0;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.income-card-featured {
    background: var(--grad-warm) !important;
    border: 2px solid rgba(103, 232, 249, 0.4);
    box-shadow: 0 0 35px rgba(103, 232, 249, 0.25), 0 0 60px rgba(34, 211, 238, 0.15);
}

.income-card-featured .income-amount {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.income-card-featured:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 50px rgba(103, 232, 249, 0.7), 0 0 80px rgba(34, 211, 238, 0.4), 0 25px 60px rgba(139, 92, 246, 0.5);
    filter: brightness(1.1);
    border-color: rgba(103, 232, 249, 1);
}

.income-card-featured .income-label,
.income-card-featured p {
    color: rgba(255, 255, 255, 0.9);
}

.income-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========== STATS =========== */
.company-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
    background: rgba(139, 92, 246, 0.04);
    padding: 60px;
    border-radius: 30px;
    border: var(--border);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 8px;
}

.stat-item {
    text-align: center;
}

/* =========== TESTIMONIALS (Carousel) =========== */
.testimonials-slider.carousel-container {
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    border: var(--glass-border);
    border-radius: 24px;
    padding: 16px;
    --carousel-outer-r: 24px;
    --carousel-p-distance: 12px;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 16px;
    transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: grab;
    will-change: transform;
    user-select: none;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-item {
    flex-shrink: 0;
    width: 368px;
    min-height: 280px;
    background: var(--bg-card);
    background-image: var(--grad-card);
    padding: 20px;
    border-radius: calc(var(--carousel-outer-r) - var(--carousel-p-distance));
    border: 1px solid rgba(103, 232, 249, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 0 25px rgba(103, 232, 249, 0.2), 0 4px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 0 40px rgba(103, 232, 249, 0.5), 0 0 70px rgba(34, 211, 238, 0.25), 0 4px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(103, 232, 249, 0.8);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-top: 4px;
}

.avatar-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}

.testimonial-rating {
    font-size: 1rem;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-bottom: 4px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.author-info {
    color: var(--text-muted);
    font-size: 13px;
}

/* Wrapper for arrows: on desktop they stay positioned on sides, on mobile below */
.testimonials-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}
.testimonials-arrows .carousel-arrow {
    pointer-events: auto;
}

/* Carousel arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: var(--glass-border);
    background: var(--bg-card);
    color: var(--primary);
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    border-color: rgba(103, 232, 249, 1);
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.8), 0 0 50px rgba(34, 211, 238, 0.4);
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-arrow-prev {
    left: -56px;
}

.carousel-arrow-next {
    right: -56px;
}

/* =========== STEPS =========== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    padding: 30px;
    border-radius: var(--radius-card);
    background: var(--glass-bg);
    border: var(--glass-border);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 232, 249, 0.8);
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.4), 0 0 50px rgba(34, 211, 238, 0.2);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.step h3 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step p {
    color: var(--text-muted);
}

/* =========== FAQ =========== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(139, 92, 246, 0.04);
    border: var(--border);
    border-radius: 20px;
    margin-bottom: 15px;
    padding: 22px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(103, 232, 249, 0.7);
    box-shadow: 0 0 25px rgba(103, 232, 249, 0.3), 0 0 45px rgba(34, 211, 238, 0.15);
}

.faq-item.active {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.08);
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    transition: transform 0.3s ease;
    min-width: 24px;
    margin-left: 15px;
    stroke: var(--primary);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
}

/* =========== FORM =========== */
.section-form {
    padding-bottom: 100px;
}

.section-form .form-subtitle {
    margin-bottom: 2rem;
}

/* Stepper form — card + steps + content */
.stepper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

.stepper-card {
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--stepper-border, #222);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

[data-theme="light"] .stepper-card {
    --stepper-border: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1), 0 0 0 1px rgba(139, 92, 246, 0.08);
}

/* Индикаторы шагов — строго в одну горизонтальную линию */
.stepper-steps {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 100%;
    margin-bottom: 2rem;
    gap: 0;
}

.stepper-step {
    position: relative;
    display: flex;
    flex-shrink: 0;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.35s, color 0.35s;
    background-color: var(--stepper-step-bg);
    color: var(--stepper-step-color);
}

.stepper-step:hover {
    color: var(--text-main);
}

.stepper-step.active {
    background-color: var(--stepper-active);
    color: #fff;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.5), 0 0 40px rgba(34, 211, 238, 0.25);
    border: 2px solid rgba(103, 232, 249, 0.5);
}

.stepper-step.complete {
    background-color: var(--stepper-active);
    color: #fff;
}

.stepper-step .stepper-step-num {
    display: inline;
}

.stepper-step .stepper-step-check {
    display: none;
    width: 1rem;
    height: 1rem;
}

.stepper-step.complete .stepper-step-num {
    display: none;
}

.stepper-step.complete .stepper-step-check {
    display: block;
    stroke: #fff;
}

.stepper-step.active .stepper-step-num {
    display: none;
}

.stepper-step.active::after {
    content: '';
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #fff;
}

.stepper-line {
    position: relative;
    width: 2.5rem;
    height: 2px;
    margin: 0 0.25rem;
    overflow: hidden;
    border-radius: 2px;
    background: var(--stepper-line-bg);
}

.stepper-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--stepper-active);
    transition: width 0.4s ease;
}

.stepper-line-fill.filled {
    width: 100%;
}

.stepper-content-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 140px;
}

.stepper-panel {
    display: none;
    animation: stepperPanelIn 0.4s ease;
}

.stepper-panel.active {
    display: block;
}

@keyframes stepperPanelIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stepper-footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.stepper-footer.only-next {
    justify-content: flex-end;
}

.stepper-btn {
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: inherit;
    font-size: 1rem;
}

.stepper-btn-back {
    background: transparent;
    color: var(--stepper-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.stepper-btn-back:hover {
    color: var(--text-main);
}

.stepper-btn-next {
    background: var(--stepper-active);
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
}

.stepper-btn-next:hover {
    filter: brightness(1.15);
    box-shadow: 0 0 25px rgba(103, 232, 249, 0.6), 0 0 45px rgba(34, 211, 238, 0.3);
}

.stepper-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    background: var(--input-bg);
    border: var(--border);
    border-radius: var(--radius-input);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12), 0 0 20px rgba(139, 92, 246, 0.08);
}

.phone-input-wrapper {
    display: flex;
    gap: 0;
}

.country-code-select {
    width: 110px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
    background-color: var(--input-bg) !important;
}

.phone-number-input {
    flex: 1;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.application-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

.stepper-wrapper .form-privacy {
    margin-top: 1rem;
}

.form-privacy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.7;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--success);
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========== FOOTER =========== */
.footer {
    border-top: var(--border);
    padding: 50px 0;
    text-align: center;
    background: var(--footer-bg);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========== LANGUAGE INTRO OVERLAY (Always Light Style) =========== */
.language-intro {
    position: fixed;
    inset: 0;
    background: linear-gradient(145deg, #FFF5F7 0%, #F5F0FF 50%, #FFF5F7 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.language-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.language-modal {
    background: #FFFFFF;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-card);
    padding: 45px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(192, 38, 211, 0.1), 0 0 0 1px rgba(139, 92, 246, 0.08);
    transform: scale(1);
    transition: transform 0.5s ease;
}

[data-theme="light"] .language-modal {
    background: #B8E4FC;
}

.language-intro.hidden .language-modal {
    transform: scale(0.9);
}

.logo-intro {
    margin-bottom: 25px;
}

.logo-image-intro {
    height: 70px;
    width: auto;
    border-radius: 18px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(192, 38, 211, 0.12);
}

.intro-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #C026D3 0%, #7C3AED 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.intro-subtitle {
    color: #6B4C8A;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.language-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.intro-lang-btn {
    background: rgba(250, 240, 255, 0.6);
    border: 1px solid rgba(192, 38, 211, 0.12);
    padding: 16px 22px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.intro-lang-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(192, 38, 211, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 38, 211, 0.1);
}

.intro-lang-btn .flag-img {
    width: 32px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.intro-lang-btn .lang-name {
    color: #1E0533;
    font-weight: 600;
    font-size: 1.1rem;
}

/* =========== THEME TOGGLE =========== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle-btn {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.theme-toggle-btn:hover {
    background: rgba(103, 232, 249, 0.15);
    border-color: rgba(103, 232, 249, 0.8);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.5), 0 0 40px rgba(34, 211, 238, 0.25);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(139, 92, 246, 0.18);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.22);
}

.theme-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.theme-icon.sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.theme-icon.moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-icon.sun {
    opacity: 1;
    transform: rotate(0) scale(1);
    color: #F59E0B;
}

[data-theme="light"] .theme-icon.moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* =========== LANGUAGE SWITCHER =========== */
.language-switcher-container {
    position: relative;
}

.lang-toggle-btn {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

[data-theme="light"] .lang-toggle-btn {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.18);
}

[data-theme="light"] .lang-toggle-btn:hover {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.12);
}

[data-theme="light"] .lang-option:hover {
    background: rgba(139, 92, 246, 0.08);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.language-switcher-container.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 8px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.language-switcher-container.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
}

.lang-option:hover {
    background: rgba(103, 232, 249, 0.12);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.3);
}

.lang-option.active {
    background: rgba(139, 92, 246, 0.12);
    color: var(--primary);
}

.lang-flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* =========== SUPPORT BUTTON =========== */
.support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(103, 232, 249, 0.5), 0 0 50px rgba(34, 211, 238, 0.25), 0 4px 25px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    text-decoration: none;
    border: 2px solid rgba(103, 232, 249, 0.5);
    animation: neon-glow-pulse 2s ease-in-out infinite;
}

.support-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 0 35px rgba(103, 232, 249, 0.8), 0 0 70px rgba(34, 211, 238, 0.4), 0 10px 35px rgba(139, 92, 246, 0.6);
    border-color: rgba(103, 232, 249, 0.9);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .testimonials-slider.carousel-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 2px solid rgba(139, 92, 246, 0.4);
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
        padding: 15px 20px;
        background: rgba(13, 0, 21, 0.95);
        backdrop-filter: var(--glass);
        -webkit-backdrop-filter: var(--glass);
    }

    [data-theme="light"] .header {
        border: none;
        border-bottom: 2px solid rgba(139, 92, 246, 0.28);
        background: rgba(184, 228, 252, 0.98);
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    }

    .header-content {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 0, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 40px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        height: 100vh;
        overflow-y: auto;
        gap: 25px;
        align-items: center;
        justify-content: flex-start;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    [data-theme="light"] .nav-menu {
        background: rgba(184, 228, 252, 0.98);
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        order: 3;
    }

    .language-switcher-container {
        order: 2;
        margin-right: 15px;
        margin-top: 0;
    }

    .header-actions {
        order: 2;
        margin-right: 15px;
        gap: 10px;
    }

    .logo-text {
        font-size: 1.3rem;
        position: relative;
        z-index: 1002;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-edge-orb { width: 90px; height: 90px; filter: blur(35px); }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        width: 100%;
        padding: 0 10px;
    }

    .company-grid,
    .cards,
    .income-grid,
    .advertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-card,
    .card,
    .income-card,
    .advertise-card {
        padding: 30px 20px;
    }

    .format-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-box {
        padding: 30px 20px;
    }

    .testimonials-slider.carousel-container {
        max-width: 100%;
        padding: 12px;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonials-arrows {
        position: static;
        pointer-events: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        margin-top: 20px;
        padding-bottom: 8px;
    }

    .carousel-arrow {
        position: static;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        transform: none;
        top: auto;
        left: auto;
        right: auto;
    }

    .carousel-arrow-prev,
    .carousel-arrow-next {
        left: auto;
        right: auto;
    }

    .testimonial-item {
        padding: 20px 16px;
        min-height: 260px;
    }

    .company-stats {
        padding: 40px 20px;
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stepper-card {
        padding: 1.5rem 1.25rem;
    }

    .stepper-steps {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: auto;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .country-code-select,
    .phone-number-input {
        width: 100% !important;
        border-radius: var(--radius-input) !important;
        border: var(--border) !important;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Blob sizing on mobile */
    .blob-1 {
        width: 320px;
        height: 320px;
    }

    .blob-2 {
        width: 280px;
        height: 280px;
    }

    .blob-3 {
        width: 240px;
        height: 240px;
    }

    .blob-4 {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}

/* Disable sticky hover on touch */
@media (hover: none) {

    .company-card:hover,
    .card:hover,
    .income-card:hover,
    .advertise-card:hover {
        transform: none;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--glass-border);
        background: var(--glass-bg);
    }

    .income-card-featured {
        background: var(--grad-warm);
    }

    .income-card-featured:hover {
        transform: none;
        box-shadow: none;
    }

    .nav-link:hover {
        color: var(--text-muted);
        text-shadow: none;
    }

    .nav-link:hover::after {
        width: 0;
    }
}