:root {
    --bg: #121221;
    --bg-panel: #1a1a2e;
    --accent: #FFCD30;
    --accent-glow: rgba(255, 205, 48, 0.3);
    --glass: rgba(26, 26, 46, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text: #e0e0e0;
    --text-dim: rgba(224, 224, 224, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.glow-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 205, 48, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(26, 26, 46, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(18, 18, 33, 1) 0%, transparent 100%);
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Fullscreen Widget Section Styling (Parallax Slide) */
.widget-section-fullscreen {
    width: 100%;
    height: 100vh;
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
    will-change: transform, opacity;
}

.page-container > *:not(.widget-section-fullscreen) {
    position: relative;
    z-index: 10;
    background: var(--bg); /* Ensure content has background to cover the widget */
}

.widget-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Typography */
.gold-gradient {
    background: linear-gradient(135deg, #ffcd30 0%, #ff9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--accent);
}

h1, h2, h3, h4 {
    font-weight: 900;
    text-transform: uppercase;
}

/* Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}

.nav-cta-mini {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-v2 {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 0;
    gap: 80px;
}

.hero-text-wrap { flex: 1.2; }
.hero-visual-v2 { 
    flex: 0.8; 
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 50px; 
}

.hero-stats-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.h-stat {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--accent);
}

.h-stat:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 205, 48, 0.05);
    box-shadow: 0 10px 30px rgba(255, 205, 48, 0.2);
}

.h-stat strong {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.unit {
    font-size: 18px;
    font-weight: 900;
    margin: 0 2px;
}

.h-stat span {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    max-width: 110px;
    margin-top: 2px;
    line-height: 1.2;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.glitch-title {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.95;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 50px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ffcd30 0%, #ff9900 100%);
    color: #000;
    text-decoration: none;
    padding: 20px 45px;
    font-weight: 900;
    border-radius: 16px;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(255, 205, 48, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 205, 48, 0.5);
}

.btn-secondary-outline {
    display: inline-block;
    background: var(--glass);
    color: #fff;
    text-decoration: none;
    padding: 20px 45px;
    font-weight: 900;
    border-radius: 16px;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}


.hero-actions {
}

.trust-line {
    margin-top: 25px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
}

/* Neural Core Visual */
.brain-icon-wrap {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.brain-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 205, 48, 0.4));
    animation: brain-throb 4s infinite ease-in-out;
}

.brain-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
}

@keyframes brain-throb {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 205, 48, 0.3)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 35px rgba(255, 205, 48, 0.5)); }
}

.hero-trust {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-item {
    background: var(--glass);
    border-left: 2px solid var(--accent);
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
}

.trust-item span {
    display: block;
    font-size: 9px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

/* Outcome Cards */
.outcomes { padding: 120px 0; }

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.outcome-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.outcome-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.outcome-card.focused {
    background: radial-gradient(circle at top right, rgba(255, 205, 48, 0.05), transparent);
    border-color: rgba(255, 205, 48, 0.3);
}

.icon-box {
    width: 50px; height: 50px;
    color: var(--accent);
    margin-bottom: 30px;
}

.outcome-card h3 { margin-bottom: 20px; font-size: 24px; }
.outcome-card p { color: var(--text-dim); }

/* Mechanics v2 */
.mechanics-v2 { padding: 120px 0; background: rgba(255,255,255,0.01); }

.split-content {
    display: flex;
    align-items: center;
    gap: 120px;
}

.text-side { flex: 1; }
.visual-side { flex: 1; }

.v2-title { font-size: 48px; margin-bottom: 30px; text-align: center; }
.v2-lead-text { font-size: 18px; color: var(--text-dim); margin-bottom: 40px; line-height: 1.5; max-width: 500px; }
.v2-lead-text.centered { max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
.centered-header { display: flex; flex-direction: column; align-items: center; width: 100%; margin-bottom: 60px; }

.mechanics-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.infographic-list { display: flex; flex-direction: column; gap: 40px; }

.info-item { display: flex; gap: 30px; }

.info-step {
    font-size: 14px; font-weight: 900; color: var(--accent);
    background: var(--glass);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; border: 1px solid var(--glass-border);
}

.info-content h4 { font-size: 20px; margin-bottom: 8px; }
.info-content p { color: var(--text-dim); }

/* Interface Mockup */
.interface-mockup {
    background: var(--bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.mockup-header {
    background: var(--bg-panel);
    padding: 15px 25px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.dots { display: flex; gap: 8px; }
.dots span { width: 10px; height: 10px; background: rgba(255,255,255,0.1); border-radius: 50%; }

.level-tag { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; }

.mockup-body { padding: 50px; display: flex; flex-direction: column; align-items: center; gap: 40px; }

.game-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.g-cell { width: 80px; height: 80px; border: 1px solid var(--glass-border); border-radius: 12px; }
.g-cell.active-gold { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }

.audio-status-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.audio-status-wrap .speaker-icon,
.audio-status-wrap .audio-waves { 
    opacity: 0.2; 
    transition: all 0.3s ease; 
}

.audio-status-wrap.active .speaker-icon,
.audio-status-wrap.active .audio-waves { 
    opacity: 1; 
}

.speaker-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.audio-waves { display: flex; gap: 6px; height: 30px; align-items: center; }

.bar { width: 4px; height: 40%; background: var(--accent); border-radius: 4px; animation: bar-dance 1.5s infinite ease-in-out; }
.bar:nth-child(2) { animation-delay: 0.2s; height: 70%; }
.bar:nth-child(3) { animation-delay: 0.4s; height: 100%; }
.bar:nth-child(4) { animation-delay: 0.1s; height: 50%; }

.mockup-letter {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-letter.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes bar-dance { 0%, 100% { height: 40%; } 50% { height: 100%; } }


/* CTA v2 */
.cta-v2 { padding: 160px 0; }

.cta-card-v2 {
    background: linear-gradient(135deg, rgba(255, 205, 48, 0.05) 0%, var(--bg-panel) 100%);
    border: 1px solid var(--glass-border);
    padding: 100px 60px;
    border-radius: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.cta-card-v2 h2 { font-size: clamp(32px, 5vw, 64px); margin-bottom: 25px; }
.cta-card-v2 p { font-size: 20px; color: var(--text-dim); margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }

.btn-primary.large { padding: 25px 60px; font-size: 20px; border-radius: 20px; }

.free-label { margin-top: 30px; font-size: 14px; font-weight: 700; opacity: 0.4; text-transform: uppercase; letter-spacing: 2px; }

/* Footer Grid Layout */
.footer-v2 {
    padding: 80px 0 50px 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.3) 100%);
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-col .f-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-col .f-logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand-col .f-logo-text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.footer-brand-col .f-copy {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

.f-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
    background: rgba(255, 205, 48, 0.05);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 205, 48, 0.15);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Custom Dropdown Language Selector */
.f-lang-selector.dropdown {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.f-lang-selector.dropdown .dropdown-trigger {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.f-lang-selector.dropdown .dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
}

.f-lang-selector.dropdown .dropdown-trigger .globe-icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.f-lang-selector.dropdown .dropdown-trigger .chevron-icon {
    width: 12px;
    height: 12px;
    opacity: 0.4;
    transition: transform 0.2s ease;
}

.f-lang-selector.dropdown.open .dropdown-trigger .chevron-icon {
    transform: rotate(180deg);
}

.f-lang-selector.dropdown .dropdown-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 33, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    min-width: 130px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.f-lang-selector.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
}

.f-lang-selector.dropdown .dropdown-item {
    display: block;
    padding: 8px 12px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    text-align: left;
    transition: all 0.2s ease;
    font-weight: 500;
}

.f-lang-selector.dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.f-lang-selector.dropdown .dropdown-item.active {
    color: var(--accent);
    background: rgba(255, 205, 48, 0.1);
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    width: fit-content;
}

.footer-title-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-title-link:hover {
    color: var(--accent) !important;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links-col h4:hover::after {
    width: 100%;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-col ul li a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Адаптивность для средних экранов */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 30px;
    }
}




/* Responsive */
.centered { text-align: center; }

/* Situations v2 */
.situations-v2 { padding: 120px 0; }
.situations-flex { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }

.sit-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.sit-card:hover { border-color: var(--accent); background: rgba(255,255,255,0.05); }

.sit-tag {
    font-size: 9px; font-weight: 900; color: var(--accent);
    letter-spacing: 2px; margin-bottom: 20px; opacity: 0.6;
}

.sit-card h4 { font-size: 18px; margin-bottom: 12px; }
.sit-card p { font-size: 14px; color: var(--text-dim); }

/* Audience v2 */
.audience-v2 { padding: 120px 0; }
.audience-wrap {
    background: linear-gradient(90deg, var(--glass) 0%, transparent 100%);
    padding: 80px; border-radius: 50px; border: 1px solid var(--glass-border);
}

.audience-grid-v2 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 40px; margin-top: 60px;
}

.a-item { display: flex; flex-direction: column; gap: 20px; }
.a-icon {
    width: 60px; height: 60px; background: var(--accent); color: #000;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 900; font-size: 14px;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.a-item p { font-size: 15px; line-height: 1.4; }
.a-item strong { display: block; color: var(--accent); margin-bottom: 5px; }

/* Features v2 */
.features-v2 { padding: 120px 0; }
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 60px; }

.tech-box {
    border: 1px solid var(--glass-border); padding: 50px; border-radius: 40px;
    position: relative; overflow: hidden;
}


.tech-label { font-size: 10px; font-weight: 900; color: var(--accent); text-transform: uppercase; margin-bottom: 15px; opacity: 0.5; }
.tech-box h3 { font-size: 26px; margin-bottom: 15px; }
.tech-box p { color: var(--text-dim); }

/* Roadmap v2 */
.roadmap-v2 { padding: 120px 0; }
.roadmap-box { background: #0e0f16; padding: 100px 80px; border-radius: 60px; border: 1px solid var(--glass-border); }

.road-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 60px; }

.road-unit { position: relative; padding-left: 30px; border-left: 1px solid var(--glass-border); }
.road-dot {
    position: absolute; left: -5px; top: 0; width: 9px; height: 9px;
    background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent);
}

.road-unit h5 { font-size: 20px; margin-bottom: 10px; color: var(--accent); }
.road-unit p { font-size: 14px; color: var(--text-dim); }

/* Pricing v2 - Tariff Card */
.pricing-v2 { padding: 120px 0; }
.pricing-header { margin-bottom: 60px; }
.tariff-card {
    max-width: 550px;
    margin: 0 auto;
    background: #12131a;
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 50px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.tariff-card:hover { transform: translateY(-10px); }

.t-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255,205,48,0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.t-title { font-size: 28px; margin-bottom: 10px; }
.t-price { font-size: 72px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; }
.t-period { font-size: 18px; color: var(--text-dim); font-weight: 400; vertical-align: middle; }
.t-desc { color: var(--text-dim); margin-bottom: 45px; font-size: 15px; line-height: 1.6; max-width: 350px; margin-left: auto; margin-right: auto; }

.p-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: max-content;
    margin: 30px auto 0;
}

.p-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 15px;
}

.p-item-v2 svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .container { padding: 0 40px; }
    
    .hero-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0; /* Gap handled by individual margins for better control with order */
        padding: 40px 0;
        display: flex;
    }

    .hero-text-wrap {
        display: contents; /* Allows children to be direct flex items of .hero-main */
    }

    .status-badge { order: 1; margin-bottom: 20px; }
    .glitch-title { order: 2; margin-bottom: 10px; }
    .hero-subtitle { order: 3; margin-bottom: 20px; }
    .hero-lead { order: 4; margin-bottom: 30px; }
    .hero-trust { order: 5; margin-bottom: 40px; justify-content: center; }
    
    .hero-visual-v2 {
        order: 6;
        margin-top: 0;
        margin-bottom: 50px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions { 
        order: 7; 
        width: 100%; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }

    .brain-icon-wrap {
        width: 450px;
        height: 450px;
        max-width: 90vw;
        max-height: 90vw;
    }

    .grid-layout { 
        grid-template-columns: 1fr; 
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .outcome-card {
        padding: 30px 25px;
        border-radius: 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .outcome-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .icon-box {
        margin-bottom: 20px;
        width: 40px;
        height: 40px;
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
        display: flex;
    }

    .text-side {
        display: contents; /* Allows reordering children with visual-side */
    }

    .infographic-list {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .visual-side {
        order: 2;
        width: 100%;
        max-width: 500px;
    }

    .mechanics-btns {
        order: 3;
        margin-top: 10px !important;
    }

    .info-content p {
        max-width: 450px;
        margin: 0 auto;
    }

    .v2-title { font-size: 32px; line-height: 1.2; }
    .v2-lead-text { font-size: 16px; max-width: 500px !important; margin-left: auto; margin-right: auto; }
    .centered-header { margin-bottom: 40px; }

    .situations-flex {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 60px auto 0;
    }

    .sit-card {
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sit-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
        br { display: none; }
    }

    .sit-card p {
        font-size: 14px;
        max-width: 400px;
    }

    .audience-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .a-item {
        align-items: center;
        text-align: center;
    }

    .audience-wrap {
        padding: 50px 40px;
        border-radius: 30px;
    }

    .road-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: 1fr; gap: 20px; }

    .tech-box {
        padding: 30px 20px;
        text-align: center;
        border-radius: 24px;
    }

    .tech-box p {
        max-width: 400px;
        margin: 0 auto;
    }

    .road-unit {
        border-left: none;
        padding-left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
    }

    .road-dot {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }

    .roadmap-box {
        padding: 60px 40px;
        border-radius: 40px;
    }

    .cta-card-v2 {
        padding: 60px 40px;
        border-radius: 40px;
    }
}

@media (max-width: 769px) {
    .container {
        padding: 0 20px;
    }

    .glitch-title {
        font-size: clamp(32px, 10vw, 48px);
        letter-spacing: -1px;
    }

    .hero-lead {
        font-size: 16px;
        margin-bottom: 30px;
        br { display: none; }
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin-bottom: 40px;
    }

    .trust-item {
        text-align: left;
    }

    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        width: 100%;
        justify-items: center;
    }

    .h-stat {
        width: 100%;
        max-width: 110px;
        aspect-ratio: 1/1;
        height: auto;
        padding: 10px;
    }

    .h-stat strong {
        font-size: 20px;
    }

    .h-stat span {
        font-size: 8px;
    }

    .brain-icon-wrap {
        width: 300px;
        height: 300px;
    }

    .btn-primary {
        width: 100%;
        padding: 18px 30px;
        font-size: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-secondary-outline {
        width: 100%;
        padding: 18px 30px;
        font-size: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mechanics-btns {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .situations-flex, .audience-grid-v2, .road-grid-v2 { grid-template-columns: 1fr; }
    .audience-wrap { padding: 40px 20px; border-radius: 20px; }
    .a-item p { font-size: 14px; max-width: 300px; }
    .situations-flex { max-width: 100%; }
    .situations-v2 { padding: 80px 0; }
    .grid-layout { max-width: 100%; }
    .outcomes { padding: 80px 0; }
    .v2-title { font-size: 28px; }
    .v2-lead-text { max-width: 320px !important; }
    .tech-box p { font-size: 14px; max-width: 280px; }
    .features-v2 { padding: 80px 0; }
    .tech-box h3 { font-size: 22px; }

    .mockup-body {
        padding: 30px 15px;
    }

    .g-cell {
        width: 70px;
        height: 70px;
    }

    .t-price { font-size: 54px; }
    .tariff-card { padding: 40px 20px; }
    .pricing-v2 { padding: 80px 0; }
    .p-list-v2 { margin: 30px auto; width: auto; max-width: 280px; text-align: left; }
    .roadmap-box { padding: 50px 20px; border-radius: 24px; }
    .roadmap-v2 { padding: 80px 0; }
    .road-grid-v2 { gap: 40px; }
    .cta-card-v2 { padding: 60px 20px; border-radius: 30px; }
    .cta-v2 { padding: 80px 0; }
    .free-label { font-size: 11px; line-height: 1.6; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand-col {
        display: contents;
    }
    .f-logo-wrapper {
        order: 1;
        justify-content: center;
        margin-bottom: 10px;
    }
    .f-contact-row {
        order: 2;
        justify-content: center;
        margin-top: 5px;
        margin-bottom: 15px;
    }
    .footer-links-col {
        order: 3;
    }
    .footer-links-col:last-of-type {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 30px;
    }
    .f-copy {
        order: 4;
        margin-top: 10px;
    }
    .f-socials {
        order: 5;
        justify-content: center;
        margin-top: 5px;
    }
    .f-lang-selector {
        order: 6;
        justify-content: center;
        margin-top: 5px;
    }
    .footer-links-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links-col ul li a:hover {
        transform: translateY(-2px);
    }
    .footer-v2 { padding: 40px 0; }

    .game-grid-v2 {
        gap: 10px;
    }
    .audience-wrap { padding: 40px; }
    .roadmap-box { padding: 60px 20px; }
}

@media (max-width: 550px) {
    .h-stat {
        max-width: 90px;
    }

    .h-stat strong {
        font-size: 16px;
    }

    .h-stat span {
        font-size: 7px;
    }

    .hero-stats-row {
        gap: 2px;
    }

    .brain-icon-wrap {
        width: 240px;
        height: 240px;
    }
}

/* Soft Language Suggestion Banner */
.lang-suggestion-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: rgba(18, 19, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 9999;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.lang-suggestion-banner.show {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.lang-suggestion-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.globe-icon-banner {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    animation: pulse-globe 2s infinite ease-in-out;
}

@keyframes pulse-globe {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.lang-suggestion-content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-dim);
    margin: 0;
}

.lang-suggestion-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-banner-switch {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-banner-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-banner-dismiss {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-banner-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 650px) {
    .lang-suggestion-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
        bottom: 20px;
        text-align: center;
    }
    .lang-suggestion-content {
        flex-direction: column;
        gap: 8px;
    }
    .lang-suggestion-actions {
        justify-content: center;
        width: 100%;
    }
    .btn-banner-switch, .btn-banner-dismiss {
        flex: 1;
        text-align: center;
    }
}

/* Footer Contact Email Styling */
.f-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.f-contact-row svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: stroke 0.2s ease;
}
.f-contact-row a {
    color: inherit;
    text-decoration: none;
}
.f-contact-row:hover {
    color: var(--accent);
}



@media (max-width: 769px) {
    .footer-links-col h4 {
        margin-left: auto;
        margin-right: auto;
    }
}


.footer-links-col ul li span.disabled-link {
    font-size: 13px;
    color: var(--text-dim);
    display: inline-block;
    cursor: default;
}

/* Footer Responsive Updates */
@media (max-width: 1310px) and (min-width: 771px) {
    .footer-grid {
        display: grid !important;
        grid-template-columns: 250px 1fr 1fr 1fr !important;
        gap: 40px !important;
    }
    .footer-brand-col { grid-column: 1 / 2; grid-row: 1 / 3; }
    
    /* 2 пункта сверху (Колонки 2 и 3 в сетке) */
    .footer-links-col:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
    .footer-links-col:nth-child(3) { grid-column: 3 / 4; grid-row: 1; }
    
    /* 3 пункта снизу (Колонки 2, 3 и 4 в сетке) */
    .footer-links-col:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
    .footer-links-col:nth-child(5) { grid-column: 3 / 4; grid-row: 2; }
    .footer-links-col:nth-child(6) { grid-column: 4 / 5; grid-row: 2; }
}

@media (max-width: 770px) {
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important; /* Убираем gap родителя, используем margin для контроля */
    }
    .footer-brand-col {
        display: contents !important;
    }
    .footer-links-col,
    .footer-brand-col > * {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    /* 1. Название (Логотип) */
    .footer-brand-col > a:first-child { order: 1; margin-bottom: 15px !important; }
    
    /* 2. Почта */
    .f-contact-row { order: 2; margin-bottom: 40px !important; flex-direction: row !important; gap: 10px !important; }
    
    /* 3. Списки категорий (Пункты меню) */
    .footer-links-col { order: 3; margin-bottom: 30px !important; }
    .footer-links-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-links-col ul { align-items: center !important; }
    
    /* 4. Дата реализации (Копирайт) */
    .f-copy { order: 4; margin-bottom: 20px !important; margin-top: 10px !important; }
    
    /* 5. Соцсети */
    .f-socials { order: 5; margin-bottom: 20px !important; flex-direction: row !important; gap: 20px !important; }
    
    /* 6. Переключение языка */
    .f-lang-selector { order: 6; }
}

/* Tooltip for coming-soon links */
span.coming-soon-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    cursor: not-allowed !important;
}

span.coming-soon-link:hover {
    color: #00e5ff;
}

span.coming-soon-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 30, 30, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: normal;
    font-family: inherit;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 100;
    margin-bottom: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Tooltip Arrow */
span.coming-soon-link::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(30, 30, 30, 0.9) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 100;
    margin-bottom: -2px;
}

span.coming-soon-link:hover::after,
span.coming-soon-link:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Tooltip fixes */
.footer-links-col ul li span.coming-soon-link {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-links-col ul li span.coming-soon-link:hover {
    color: var(--accent);
}

.footer-title-link.coming-soon-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-title-link.coming-soon-link:hover {
    color: var(--accent) !important;
}
