/* ===========================
   SIDEREAL - Premium CSS
   Dark Theme with Purple & Gold
   =========================== */

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

:root {
    /* Color Palette */
    --color-bg-primary: #050505;
    --color-bg-secondary: #000000;
    --color-purple-primary: #C77DFF;
    --color-purple-dark: #9D4EDD;
    --color-purple-darker: #7B2CBF;
    --color-gold: #FFD700;
    --color-gold-dark: #DAA520;
    --color-white: #FFFFFF;
    --color-gray-light: #E0E0E0;
    --color-gray: #CCCCCC;
    --color-gray-dark: #AAAAAA;
    --color-gray-darker: #888888;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-primary);
    font-family: var(--font-primary);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

/* === AMBIENT BACKGROUND === */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-1,11 L11,-1 M-1,1 L1,-1 M9,11 L11,9' stroke='%23222' stroke-width='1'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.6;
}

.bg-texture-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-1,-1 L11,11 M9,-1 L11,1 M-1,9 L1,11' stroke='%23222' stroke-width='1'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ambient-light-purple {
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background-color: rgba(157, 78, 221, 0.04);
}

.ambient-light-gold {
    bottom: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background-color: rgba(255, 215, 0, 0.06);
}

/* Optimize ambient lights for mobile */
@media (max-width: 768px) {
    .ambient-light-purple {
        width: 400px;
        height: 400px;
        left: -50%;
    }
    
    .ambient-light-gold {
        width: 400px;
        height: 400px;
        right: -50%;
    }
}

/* === NAVIGATION === */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(199, 125, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.top-nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: -1px;
}

.logo-dot {
    color: var(--color-purple-primary);
}

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

.nav-item {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--color-gray-darker);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-base);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-purple-primary);
    transition: var(--transition-base);
}

.nav-item:hover {
    color: var(--color-white);
}

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

.nav-item.active {
    color: var(--color-white);
}

.nav-item.cta-nav {
    background-color: var(--color-purple-darker);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.nav-item.cta-nav:hover {
    background-color: var(--color-purple-primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

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

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(199, 125, 255, 0.3);
    border-radius: 4px;
    background: rgba(199, 125, 255, 0.05);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
}

.lang-switch::after {
    display: none;
}

.lang-switch:hover {
    background: rgba(199, 125, 255, 0.15);
    border-color: rgba(199, 125, 255, 0.5);
    transform: translateY(-2px);
}

.lang-switch i {
    font-size: 14px;
}

.lang-switch-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(199, 125, 255, 0.3);
    border-radius: 6px;
    background: rgba(199, 125, 255, 0.1);
    margin-top: 10px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--color-white);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 80px 40px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(199, 125, 255, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-nav-item {
    display: block;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-gray);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.mobile-nav-item:hover {
    color: var(--color-purple-primary);
    padding-left: 10px;
}

/* === CONTAINER === */
.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

/* === SECTIONS === */
.section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

/* === CORNER BRACKETS === */
.corner-bracket {
    display: none; /* Скрыты для чистого дизайна */
}

/* === VERTICAL LINES === */
.vertical-line {
    display: none; /* Скрыты для чистого дизайна */
}

/* === TYPOGRAPHY === */
.section-title {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: var(--color-purple-primary);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle-small {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-gray-light);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.section-description {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-gray-light);
    margin-bottom: 45px;
    line-height: 1.5;
    font-weight: 300;
    max-width: 800px;
}

.title-line {
    width: 120px;
    height: 3px;
    background-color: var(--color-purple-primary);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.8);
    margin: 25px 0 35px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.section-header-center .title-line {
    margin-left: auto;
    margin-right: auto;
}

.highlight-purple {
    color: var(--color-purple-primary);
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

.highlight-text {
    color: var(--color-purple-primary);
    font-weight: 700;
}

.text-gold {
    color: var(--color-gold);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.gold-accent {
    color: var(--color-gold);
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    display: block;
    margin-top: 4px;
    font-size: 18px;
}

.gold-highlight {
    color: var(--color-gold);
    font-weight: 600;
}

/* === HERO SECTION === */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.section-hero .container-custom {
    padding-left: 60px;
    padding-right: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 100%;
    margin: 0;
}

.hero-text {
    z-index: 20;
}

.brand-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-purple-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-line {
    width: 30px;
    height: 1px;
    background-color: var(--color-purple-primary);
    margin-right: 12px;
    box-shadow: 0 0 5px rgba(157, 78, 221, 0.5);
}

.hero-title {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.85;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(157, 78, 221, 0.15);
}

.h1-underline {
    width: 120px;
    height: 2px;
    background-color: var(--color-purple-primary);
    margin-top: 25px;
    margin-bottom: 35px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.8);
}

.hero-subtitle {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.3;
    color: var(--color-gray-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.purple-mini-separator {
    width: 40px;
    height: 3px;
    background-color: var(--color-purple-primary);
    margin-bottom: 25px;
    box-shadow: 0 0 8px rgba(157, 78, 221, 0.6);
    animation: pulse-width 4s infinite alternate;
}

@keyframes pulse-width {
    0% { width: 40px; opacity: 0.8; }
    100% { width: 50px; opacity: 1; }
}

.hero-description {
    font-family: var(--font-primary);
    font-size: clamp(14px, 1.2vw, 17px);
    color: var(--color-gray-dark);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* === CTA BUTTON === */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-purple-darker);
    color: var(--color-white);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: 18px 42px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: visible;
    z-index: 5;
    border: none;
    cursor: pointer;
}



.cta-btn:hover {
    background-color: var(--color-purple-primary);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    transform: translateY(-1px);
}



.cta-icon {
    margin-left: 12px;
    font-size: 12px;
}

.cta-btn-large {
    font-size: 18px;
    padding: 22px 50px;
    margin-top: 40px;
}

/* === HERO VISUAL === */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    height: clamp(400px, 50vh, 550px);
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticleUp linear infinite;
}

.p-gold {
    background-color: var(--color-gold);
    box-shadow: 0 0 6px var(--color-gold);
    width: 4px;
    height: 4px;
}

.p-purple {
    background-color: var(--color-purple-primary);
    box-shadow: 0 0 6px var(--color-purple-primary);
    width: 2px;
    height: 2px;
}

.p-large {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.6);
}

@keyframes floatParticleUp {
    0% { transform: translateY(100px); opacity: 0; }
    20% { opacity: 0.7; }
    80% { opacity: 0.7; }
    100% { transform: translateY(-150px); opacity: 0; }
}

/* === 3D COIN === */
.coin-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float-premium 8s ease-in-out infinite;
}

@keyframes float-premium {
    0%, 100% { transform: translateY(0) rotateX(5deg); }
    50% { transform: translateY(-15px) rotateX(8deg); }
}

.coin-btc {
    width: clamp(280px, 28vw, 400px);
    height: clamp(280px, 28vw, 400px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-30deg) rotateX(10deg);
    z-index: 20;
}

.coin-eth {
    width: clamp(180px, 18vw, 260px);
    height: clamp(180px, 18vw, 260px);
    position: absolute;
    top: 5%;
    right: -10%;
    transform: rotateY(40deg) rotateZ(5deg);
    z-index: 5;
    animation: float-premium-bg 10s ease-in-out infinite reverse;
    filter: brightness(0.7);
}

@keyframes float-premium-bg {
    0%, 100% { transform: translateY(0) rotateY(40deg); }
    50% { transform: translateY(10px) rotateY(45deg); }
}

.coin-face-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0F0F0F;
    border: 4px solid var(--color-gold);
    outline: 2px solid var(--color-gold-dark);
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.9),
        0 20px 60px rgba(0,0,0,0.8),
        0 0 50px rgba(157, 78, 221, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rim-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.8);
    animation: spin-rim 3s linear infinite;
    pointer-events: none;
    z-index: 25;
    filter: blur(1px);
}

@keyframes spin-rim {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sheen-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    pointer-events: none;
}

.sheen-1 {
    background-color: rgba(199, 125, 255, 0.08);
    clip-path: polygon(30% 0, 50% 0, 30% 100%, 10% 100%);
}

.sheen-2 {
    background-color: rgba(199, 125, 255, 0.12);
    clip-path: polygon(60% 0, 65% 0, 45% 100%, 40% 100%);
}

.sheen-3 {
    background-color: rgba(199, 125, 255, 0.06);
    clip-path: polygon(0% 40%, 100% 60%, 100% 50%, 0% 30%);
    transform: rotate(-15deg);
}

.coin-inner {
    width: 78%;
    height: 78%;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: inset 0 0 25px rgba(0,0,0,1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a0b2e;
    position: relative;
}

.guilloche {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px dashed rgba(157, 78, 221, 0.2);
    animation: spin-slow 60s linear infinite;
}

.guilloche-2 {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1px dotted rgba(255, 215, 0, 0.1);
    animation: spin-slow 45s linear infinite reverse;
}

@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

.coin-symbol {
    font-size: 180px;
    color: var(--color-purple-primary);
    text-shadow: 
        0 -2px 1px rgba(0,0,0,0.9),
        0 -1px 0px rgba(0,0,0,0.9),
        0 2px 1px rgba(255,255,255,0.15),
        0 4px 2px rgba(0,0,0,0.5),
        0 0 25px rgba(157, 78, 221, 0.4);
    z-index: 10;
}

.eth-symbol {
    font-size: 110px;
}

.coin-edge {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 18px solid #B8860B;
    top: 10px;
    left: 5px;
    z-index: -1;
    filter: brightness(0.6);
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* === STAT BADGE === */
.stat-badge {
    position: absolute;
    bottom: 15%;
    left: -5%;
    background-color: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-left: 3px solid var(--color-purple-primary);
    padding: 18px 24px;
    border-radius: 8px;
    z-index: 30;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: float-delayed 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 15px;
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(157, 78, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple-primary);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
}

/* === GLASS CARDS === */
.cards-grid {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.glass-card {
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-purple-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px var(--color-purple-primary);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(25, 25, 35, 0.9);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-card:hover::after {
    transform: scaleX(1);
}

.check-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(199, 125, 255, 0.1);
    border: 1px solid rgba(199, 125, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.glass-card:hover .check-icon-box {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: rotateY(180deg);
}

.check-icon {
    color: var(--color-purple-primary);
    font-size: 20px;
    transition: color 0.3s;
}

.glass-card:hover .check-icon {
    color: var(--color-gold);
}

.card-text-group h3 {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text-group p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-gray-dark);
    margin: 0;
    line-height: 1.6;
}

/* === AUDIENCE SECTION === */
.audience-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.icon-container {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(199, 125, 255, 0.08);
    border: 1px solid rgba(199, 125, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    position: relative;
}

.glass-card:hover .icon-container {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.card-icon {
    font-size: 20px;
    color: var(--color-purple-primary);
    transition: color 0.4s ease;
}

.glass-card:hover .card-icon {
    color: var(--color-gold);
}

.card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.4;
    margin: 0;
}

.card-highlight {
    display: block;
    font-family: var(--font-headings);
    font-size: 17px;
    color: var(--color-white);
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.glass-card:hover .card-highlight {
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* === CONTROL SECTION === */
.control-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.control-left {
    display: flex;
    flex-direction: column;
}

.key-message {
    font-family: var(--font-headings);
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-gray-light);
    margin-bottom: 30px;
    font-weight: 400;
    padding-left: 20px;
    border-left: 4px solid var(--color-gold);
    box-shadow: -10px 0 20px -10px rgba(255, 215, 0, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.glass-card:hover .icon-box {
    border-color: var(--color-gold);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: rotate(5deg);
}

.card-text strong {
    display: block;
    font-family: var(--font-headings);
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 4px;
    font-weight: 700;
}

.card-text p {
    font-size: 14px;
    color: var(--color-gray);
    margin: 0;
}

/* === DIAGRAM VISUALIZATION === */
.control-right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.diagram-wrapper {
    position: relative;
    width: 450px;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
}

.diagram-depth {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background-color: rgba(157, 78, 221, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.node {
    position: absolute;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid var(--color-purple-primary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(157, 78, 221, 0.15);
    z-index: 10;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.node-icon {
    font-size: 24px;
    color: var(--color-purple-primary);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.6));
}

.node-label {
    font-family: var(--font-headings);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}

.node-exchange {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    padding: 15px;
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 30px rgba(255, 215, 0, 0.2);
    border-top: 3px solid var(--color-gold);
}

.node-exchange .node-icon {
    color: var(--color-gold);
    font-size: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.node-api {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px dashed var(--color-purple-primary);
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.1);
    animation: rotate-border 60s linear infinite;
}

@keyframes rotate-border {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.node-api-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-api .node-icon {
    font-size: 36px;
    margin-bottom: 5px;
}

.node-bots {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    border-top: 3px solid var(--color-purple-primary);
}

.bot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.bot-item:hover {
    transform: translateY(-3px);
}

.bot-item .node-icon {
    font-size: 26px;
    margin-bottom: 6px;
}

.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.static-line {
    stroke-width: 3;
    opacity: 0.3;
}

.flow-line {
    stroke-width: 3;
    stroke-dasharray: 12 12;
    animation: flow 1s linear infinite;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

@keyframes flow {
    to { stroke-dashoffset: -24; }
}

.security-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: #00FF88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px #00FF88;
    animation: pulse-badge 2s infinite;
    border: 2px solid #000;
    z-index: 20;
}

@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); transform: scale(1.1); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); transform: scale(1); }
}

.security-badge i {
    font-size: 14px;
    color: #000;
}

.wallet-info {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #888;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* === CONDITIONS SECTION === */
.card-icon-box {
    width: 46px;
    height: 46px;
    background-color: rgba(199, 125, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid rgba(199, 125, 255, 0.3);
    box-shadow: 0 0 15px rgba(199, 125, 255, 0.2);
    transition: var(--transition-smooth);
}

.glass-card:hover .card-icon-box {
    border-color: var(--color-gold);
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: rotate(15deg) scale(1.1);
}

.card-content-vertical {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card-title {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* === GUARANTEE SECTION === */
.stages-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.icon-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stage-title {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    margin: 0;
    text-transform: uppercase;
}

.stage-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin: 0;
}

.example-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 16px;
    padding: 20px 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.example-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: rgba(157, 78, 221, 0.05);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.example-content {
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.example-title {
    font-family: var(--font-headings);
    font-size: 14px;
    color: var(--color-purple-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.calc-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-white);
}

.calc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.calc-label {
    font-size: 12px;
    color: var(--color-gray-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.calc-value {
    font-size: 24px;
    font-weight: 700;
}

.val-gold {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.val-red {
    color: #FF4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.val-green {
    color: #00FF88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.flow-arrow {
    color: var(--color-purple-primary);
    font-size: 18px;
    opacity: 0.7;
}

/* === GUARANTEE CONDITIONS === */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.guarantee-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.theme-green {
    border-left: 4px solid #00D896;
    border-top: none;
    background-color: rgba(0, 216, 150, 0.03);
}

.theme-green:hover {
    background-color: rgba(0, 216, 150, 0.08);
    border-left-color: #00FF88;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.title-green {
    color: #00D896;
    text-shadow: none;
    font-weight: 800;
}

.theme-orange {
    border-left: 4px solid #FFA726;
    border-top: none;
    background-color: rgba(255, 167, 38, 0.03);
}

.theme-orange:hover {
    background-color: rgba(255, 167, 38, 0.08);
    border-left-color: #FFB74D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.title-orange {
    color: #FFA726;
    text-shadow: none;
    font-weight: 800;
}

.theme-red {
    border-left: 4px solid #E53935;
    border-top: none;
    background-color: rgba(229, 57, 53, 0.03);
}

.theme-red:hover {
    background-color: rgba(229, 57, 53, 0.08);
    border-left-color: #EF5350;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.title-red {
    color: #E53935;
    text-shadow: none;
    font-weight: 800;
}

.theme-gold {
    background-color: rgba(255, 193, 7, 0.08);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-left: 4px solid #FFC107;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.title-gold {
    color: #FFC107;
    font-weight: 700;
}

/* === GUARANTEE CONDITIONS - СТРОГИЙ СТИЛЬ === */
.section-guarantee-conditions {
    background-color: rgba(5, 5, 5, 0.5);
}

.section-guarantee-conditions .glass-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.section-guarantee-conditions .card-title {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-guarantee-conditions .card-title i {
    font-size: 20px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    line-height: 1.65;
    color: #D0D0D0;
    font-weight: 400;
}

.list-icon {
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.disclaimer-text {
    font-size: 13px;
    color: #BBBBBB;
    margin-left: 20px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* === PARTNER INTRO === */
.partner-intro-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0.4;
    text-align: center;
}

.big-percent {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 140px;
    line-height: 1;
    color: var(--color-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    margin: 0;
}

.percent-label {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0.6;
    max-width: 650px;
}

/* === STRUCTURE SECTION === */
.subtitle {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-purple-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.structure-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.visualization-column {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 320px;
}

.concentric-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-level {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(199, 125, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.1);
    transition: var(--transition-smooth);
}

.level-label {
    position: absolute;
    top: -12px;
    background-color: #000000;
    padding: 0 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-purple-primary);
    font-weight: 700;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(199, 125, 255, 0.1);
    z-index: 1;
    animation: pulse-circle 4s infinite 0s;
}

.circle-2 {
    width: 240px;
    height: 240px;
    border-color: rgba(199, 125, 255, 0.2);
    z-index: 2;
    animation: pulse-circle 4s infinite 0.5s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    border-color: rgba(199, 125, 255, 0.3);
    z-index: 3;
    animation: pulse-circle 4s infinite 1s;
}

.circle-4 {
    width: 110px;
    height: 110px;
    border-color: rgba(199, 125, 255, 0.5);
    z-index: 4;
    animation: pulse-circle 4s infinite 1.5s;
}

@keyframes pulse-circle {
    0% { transform: scale(1); border-color: rgba(199, 125, 255, 0.3); }
    50% { transform: scale(1.02); border-color: rgba(199, 125, 255, 0.6); }
    100% { transform: scale(1); border-color: rgba(199, 125, 255, 0.3); }
}

.center-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(20, 20, 25, 0.9);
    border: 3px solid var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: pulse-gold 3s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
}

.center-text {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 20px;
    color: var(--color-white);
}

.user-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-purple-dark);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-purple-dark);
}

.node-gold {
    background-color: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
}

.conn-line {
    position: absolute;
    background-color: rgba(255, 215, 0, 0.3);
    height: 1px;
    transform-origin: left center;
    z-index: 5;
}

/* === HOW IT WORKS === */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 20px;
}

.flow-line-bg {
    position: absolute;
    top: 70px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: rgba(199, 125, 255, 0.2);
    z-index: -1;
}

.step-card {
    flex: 1;
    background-color: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(199, 125, 255, 0.2);
    border-top: 4px solid var(--color-purple-primary);
    border-radius: 16px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background-color: rgba(30, 30, 40, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
    border-top-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -15px;
    background-color: #000000;
    border: 2px solid var(--color-purple-primary);
    color: var(--color-purple-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(199, 125, 255, 0.4);
    transition: var(--transition-base);
}

.step-card:hover .step-number {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.flow-arrow {
    position: absolute;
    top: 70px;
    right: -25px;
    color: var(--color-purple-primary);
    font-size: 20px;
    opacity: 0.5;
    z-index: 5;
}

.step-card:last-child .flow-arrow {
    display: none;
}

.bottom-note {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.note-icon {
    color: var(--color-gold);
    font-size: 18px;
}

.note-text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-gray-light);
}

/* === COMMISSION LEVELS === */
.commission-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.system-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 15px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 0 5px;
}

.section-total {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    background-color: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.level-card {
    background-color: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(199, 125, 255, 0.2);
    border-top: 3px solid var(--color-purple-primary);
    border-radius: 8px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-base);
    position: relative;
    min-height: 52px;
}

.level-card:hover {
    transform: translateY(-2px);
    background-color: rgba(30, 30, 40, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
    border-top-color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.aum-card {
    border-top-color: #00D4FF;
}

.aum-card:hover {
    border-top-color: var(--color-gold);
}

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

.level-badge {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-gray-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.level-card:hover .level-badge {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.level-desc {
    font-family: var(--font-headings);
    font-size: 13px;
    color: #DDDDDD;
    font-weight: 500;
}

.level-desc span {
    color: var(--color-gray-dark);
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

.commission-amount {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 20px;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    text-align: right;
}

.level-1 {
    background-color: rgba(199, 125, 255, 0.1);
    border-top-width: 4px;
    padding: 12px 18px;
}

.level-1 .commission-amount {
    font-size: 24px;
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.level-1 .level-desc {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
}

.level-1 .level-badge {
    border-color: var(--color-purple-primary);
    color: var(--color-purple-primary);
}

.aum-level-1 {
    background-color: rgba(0, 212, 255, 0.1);
}

.aum-level-1 .level-badge {
    border-color: #00D4FF;
    color: #00D4FF;
}

/* === CALCULATIONS === */
.scenarios-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.scenario-card {
    flex: 1;
    background-color: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(199, 125, 255, 0.2);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    max-width: 550px;
}

.scenario-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-header {
    padding: 20px;
    background-color: rgba(157, 78, 221, 0.1);
    border-bottom: 1px solid rgba(199, 125, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scenario-title {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    text-transform: uppercase;
}

.duplication-badge {
    background-color: #000000;
    color: var(--color-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pyramid-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pyramid-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #444;
    transition: var(--transition-base);
}

.scenario-card:hover .pyramid-level {
    background-color: rgba(255, 255, 255, 0.06);
    border-left-color: var(--color-purple-primary);
}

.level-name {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--color-gray-dark);
}

.level-calc {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-white);
    font-weight: 500;
}

.level-sum {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-purple-primary);
    text-align: right;
    min-width: 60px;
}

.arrow-down {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    margin: -6px 0;
    z-index: 1;
}

.total-block {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.total-label {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.total-amount {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 42px;
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    line-height: 1;
    margin-bottom: 5px;
}

.participants-count {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--color-gray-dark);
}

.scenario-b {
    border-top: 4px solid var(--color-gold);
}

.scenario-b .card-header {
    background-color: rgba(255, 215, 0, 0.05);
    border-bottom-color: rgba(255, 215, 0, 0.2);
}

.scenario-b .pyramid-level {
    border-left-color: #666;
}

.scenario-b:hover .pyramid-level {
    border-left-color: var(--color-gold);
}

.scenario-b .level-sum {
    color: var(--color-gold);
}

/* === BONUSES === */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background-color: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(199, 125, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: rgba(30, 30, 40, 0.8);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(199, 125, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
    transition: var(--transition-base);
}

.bonus-card:hover .icon-circle {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: rotateY(180deg);
}

.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.bonus-card:hover .shine {
    left: 150%;
    transition: left 0.5s;
}

/* === INDEX SYSTEM SECTION === */
.section-index-system {
    background: var(--color-bg-primary);
    padding: 40px 0;
}

.section-compact {
    padding: 40px 0 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-compact .section-header-center {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.section-compact .section-title {
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.section-compact .title-line {
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc-compact {
    margin-top: 0;
    font-size: 14px;
    color: var(--color-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    padding: 0 20px;
}

.index-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.index-intro .glass-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

.index-intro .card-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(199, 125, 255, 0.1);
    border: 2px solid rgba(199, 125, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.index-intro .card-icon {
    font-size: 32px;
    color: var(--color-purple-primary);
}

.index-intro .card-content {
    flex: 1;
}

.index-intro .card-title {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.index-intro .card-text {
    color: var(--color-gray-light);
    line-height: 1.6;
    font-size: 16px;
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.index-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.index-card {
    padding: 28px;
    transition: var(--transition-smooth);
}

.index-card.index-alt {
    border-left: 4px solid #3B82F6;
}

.index-card.index-btc {
    border-left: 4px solid #F59E0B;
}

.index-card.index-risk {
    border-left: 4px solid #EF4444;
}

.index-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.index-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3B82F6;
    font-size: 24px;
}

.index-icon-btc {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.index-icon-risk {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.index-title-group {
    flex: 1;
}

.index-name {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.index-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #3B82F6;
}

.index-card.index-btc .index-subtitle {
    color: #F59E0B;
}

.index-card.index-risk .index-subtitle {
    color: #EF4444;
}

.index-desc {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 15px;
}

.strategy-name {
    font-weight: 600;
    color: var(--color-white);
}

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strategy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.strategy-label {
    font-weight: 600;
    color: var(--color-white);
    font-size: 15px;
}

.strategy-info {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--color-gray-light);
}

.goal-card {
    background: rgba(199, 125, 255, 0.05);
    border-left: 4px solid var(--color-purple-primary);
    padding: 24px;
}

.goal-title {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.goal-title i {
    color: var(--color-purple-primary);
    font-size: 20px;
}

.goal-text {
    color: var(--color-gray-light);
    line-height: 1.7;
    font-size: 14px;
}

.gold-accent {
    color: var(--color-gold);
    font-weight: 600;
}

/* Index Stats Badges */
.index-stats {
    margin-top: 16px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #3B82F6;
    transition: var(--transition-base);
}

.stat-badge i {
    font-size: 14px;
}

.stat-badge strong {
    color: var(--color-white);
}

.stat-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.stat-badge-risk {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.stat-badge-risk:hover {
    background: rgba(239, 68, 68, 0.15);
}

.stat-badge-general {
    background: rgba(199, 125, 255, 0.1);
    border-color: rgba(199, 125, 255, 0.3);
    color: var(--color-purple-primary);
}

.stat-badge-general:hover {
    background: rgba(199, 125, 255, 0.15);
}

/* General Index Card */
.index-general {
    border-left: 4px solid var(--color-purple-primary);
    background: rgba(199, 125, 255, 0.03);
}

.index-icon-general {
    background: rgba(199, 125, 255, 0.15);
    border-color: rgba(199, 125, 255, 0.3);
    color: var(--color-purple-primary);
}

.index-card.index-general .index-subtitle {
    color: var(--color-purple-primary);
}

/* Strategy List Icons */
.strategy-label i {
    margin-right: 6px;
    opacity: 0.7;
}

/* Goal Features */
.goal-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.goal-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition-base);
}

.goal-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.goal-feature > i {
    color: var(--color-gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.goal-feature div {
    flex: 1;
}

.goal-feature strong {
    display: block;
    color: var(--color-white);
    font-family: var(--font-headings);
    font-size: 15px;
    margin-bottom: 4px;
}

.goal-feature p {
    color: var(--color-gray);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* === COMPACT INDEX GRID === */
.index-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 24px auto 0 auto;
}

.index-card-compact {
    padding: 14px 18px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: visible !important;
}

.index-card-compact.glass-card {
    overflow: visible !important;
}

.index-card-compact:hover {
    transform: translateY(-4px);
}

.recommended-badge {
    position: absolute;
    top: 8px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-gold), #FFA500);
    color: #000;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.recommended-badge i {
    font-size: 10px;
}

.highlight-card {
    border: 2px solid rgba(199, 125, 255, 0.3);
    background: rgba(199, 125, 255, 0.05);
}

.index-compact-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.index-icon-box-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3B82F6;
    font-size: 20px;
}

.index-icon-box-compact.index-icon-btc {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.index-icon-box-compact.index-icon-risk {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.index-icon-box-compact.index-icon-general {
    background: rgba(199, 125, 255, 0.15);
    border-color: rgba(199, 125, 255, 0.3);
    color: var(--color-purple-primary);
}

.index-info {
    flex: 1;
    min-width: 0;
}

.index-name-compact {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3px;
}

.index-card-compact.index-alt .index-name-compact {
    color: #3B82F6;
}

.index-card-compact.index-btc .index-name-compact {
    color: #F59E0B;
}

.index-card-compact.index-risk .index-name-compact {
    color: #EF4444;
}

.index-card-compact.index-general .index-name-compact {
    color: var(--color-purple-primary);
}

.index-desc-compact {
    font-size: 12px;
    color: var(--color-gray);
    line-height: 1.3;
}

.index-performance {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.performance-label {
    font-size: 10px;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.performance-value {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
}

/* === COMPACT BENEFITS === */
.benefits-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 20px auto 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(199, 125, 255, 0.3);
    transform: translateY(-2px);
}

.benefit-item > i {
    font-size: 22px;
    color: var(--color-purple-primary);
    flex-shrink: 0;
}

.benefit-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-item strong {
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
}

.benefit-item span {
    font-size: 11px;
    color: var(--color-gray);
}

/* === PERFORMANCE CHART SECTION === */
.section-performance {
    background: var(--color-bg-primary);
    padding: 80px 0;
}

.performance-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-alt {
    color: #3B82F6;
}

.legend-alt .legend-dot {
    background-color: #3B82F6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.legend-btc {
    color: #F59E0B;
}

.legend-btc .legend-dot {
    background-color: #F59E0B;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.legend-risk {
    color: #EF4444;
}

.legend-risk .legend-dot {
    background-color: #EF4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.legend-general {
    color: var(--color-purple-primary);
}

.legend-general .legend-dot {
    background-color: var(--color-purple-primary);
    box-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.chart-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.chart-container {
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 30px;
    height: 400px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.chart-container canvas {
    max-width: 100% !important;
    height: auto !important;
}

.table-section {
    max-width: 1200px;
    margin: 0 auto;
}

.table-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.table-header i {
    color: var(--color-purple-primary);
    font-size: 18px;
}

.table-header h3 {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-wrapper {
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table thead {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 2px solid rgba(199, 125, 255, 0.3);
}

.data-table th {
    padding: 12px 10px;
    text-align: center;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-gray);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.data-table th:first-child {
    text-align: left;
    padding-left: 20px;
}

.data-table th.total-col {
    background: rgba(199, 125, 255, 0.1);
    color: var(--color-purple-primary);
}

.data-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.data-table td {
    padding: 12px 10px;
    text-align: center;
    color: var(--color-gray-light);
    font-weight: 500;
}

.data-table td:first-child {
    text-align: left;
    padding-left: 20px;
}

.data-table .index-name {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-table .row-alt .index-name {
    color: #3B82F6;
}

.data-table .row-btc .index-name {
    color: #F59E0B;
}

.data-table .row-risk .index-name {
    color: #EF4444;
}

.data-table .row-general .index-name {
    color: var(--color-purple-primary);
}

.data-table .row-general {
    background: rgba(199, 125, 255, 0.05);
    font-weight: 600;
}

.data-table .inactive {
    color: rgba(255, 255, 255, 0.2);
}

.data-table .highlight {
    font-weight: 700;
    color: var(--color-white);
}

.data-table .total-cell {
    background: rgba(199, 125, 255, 0.1);
    color: var(--color-purple-primary);
    font-weight: 700;
    font-size: 15px;
    border-left: 1px solid rgba(199, 125, 255, 0.3);
}

.data-table .total-general {
    background: rgba(199, 125, 255, 0.2);
    color: var(--color-gold);
    font-weight: 800;
}

/* === FOOTER === */
.footer {
    background-color: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(199, 125, 255, 0.1);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-text-large {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 32px;
    color: var(--color-white);
    letter-spacing: -1px;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-gray-dark);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(199, 125, 255, 0.1);
    border: 1px solid rgba(199, 125, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple-primary);
    font-size: 18px;
    transition: var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-note {
    font-family: var(--font-primary);
    font-size: 12px;
    color: var(--color-gray-dark);
    max-width: 400px;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-primary);
    font-size: 12px;
    color: var(--color-gray-dark);
}

/* === DEVELOPER BADGE === */
.developer-badge {
    background: rgba(18, 18, 24, 0.95);
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    padding: 12px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.developer-badge .developer-link {
    margin-right: 100px;
}

.developer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-gray-dark);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
}

.developer-link:hover {
    background: rgba(157, 78, 221, 0.1);
    transform: translateY(-2px);
}

.developer-link span {
    font-size: 11px;
    opacity: 0.7;
    font-family: var(--font-primary);
}

.developer-logo {
    height: 18px;
    width: auto;
    transition: all 0.3s ease;
}

.developer-link:hover .developer-logo {
    filter: brightness(1.2);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-purple-primary);
}

/* === SCROLL TO TOP === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-purple-darker);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--color-purple-primary);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
    transform: translateY(-5px);
}

/* === ANIMATIONS === */
.reveal {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

/* === RESPONSIVE === */

/* Large Desktops (1920px+) */
@media (min-width: 1920px) {
    .hero-grid {
        max-width: 1600px;
        gap: 100px;
    }
    
    .hero-visual {
        height: 600px;
    }
    
    .coin-btc {
        width: 480px;
        height: 480px;
    }
    
    .coin-eth {
        width: 300px;
        height: 300px;
    }
}

/* Desktop optimizations (1400px - 1920px) */
@media (min-width: 1921px) {
    .section-hero .container-custom {
        max-width: 1800px;
        margin: 0 auto;
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1920px) and (min-width: 1400px) {
    .section-hero .container-custom {
        max-width: 1600px;
        margin: 0 auto;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1400px) {
    .container-custom {
        padding: 0 60px;
    }
    
    .section-hero .container-custom {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-grid {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .container-custom {
        padding: 0 40px;
    }
    
    .section-hero .container-custom {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .section-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 800px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .coin-btc {
        width: 320px;
        height: 320px;
    }
    
    .coin-eth {
        width: 200px;
        height: 200px;
    }
    
    .control-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .structure-grid {
        flex-direction: column;
    }
    
    .partner-intro-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .commission-grid {
        flex-direction: column;
    }
    
    .scenarios-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cards-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .audience-row-2,
    .audience-row-3 {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .stages-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .stage-title {
        font-size: 17px;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .stage-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .icon-header {
        margin-bottom: 12px;
        gap: 12px;
    }
    
    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .example-section {
        padding: 20px 18px;
        flex-direction: column;
    }
    
    .example-title {
        font-size: 12px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .calc-flow {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .calc-item {
        flex: 0 1 auto;
        min-width: 120px;
    }
    
    .calc-label {
        font-size: 10px;
    }
    
    .calc-value {
        font-size: 18px;
    }
    
    .flow-arrow {
        font-size: 14px;
        transform: rotate(90deg);
    }
    
    .flow-container {
        flex-direction: column;
        max-height: none;
    }
    
    .flow-line-bg {
        display: none;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .container-custom {
        padding: 0 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .section-hero .container-custom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .cta-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .coin-btc {
        width: 280px;
        height: 280px;
    }
    
    .coin-eth {
        width: 180px;
        height: 180px;
    }
    
    .coin-symbol {
        font-size: 120px;
    }
    
    .big-percent {
        font-size: 80px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .index-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .index-grid-compact {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px auto;
    }
    
    .index-card-compact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
    }
    
    .recommended-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: -8px;
    }
    
    /* Полное центрирование элементов карточек индексов на мобильных */
    .index-compact-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }
    
    .index-icon-box-compact {
        margin: 0 auto;
    }
    
    .index-info {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .index-name-compact {
        text-align: center;
    }
    
    .index-desc-compact {
        text-align: center;
    }
    
    .index-performance {
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .performance-label {
        text-align: center;
    }
    
    .performance-value {
        text-align: center;
    }
    
    .benefits-compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .index-intro .glass-card {
        flex-direction: column;
        text-align: center;
    }
    
    .index-intro .card-icon-box {
        width: 56px;
        height: 56px;
    }
    
    .goal-features {
        gap: 12px;
    }
    
    .goal-feature {
        padding: 10px;
    }
    
    .goal-feature strong {
        font-size: 14px;
    }
    
    .goal-feature p {
        font-size: 12px;
    }
    
    .stages-container .glass-card {
        padding: 18px 16px;
    }
    
    .stage-title {
        font-size: 16px;
    }
    
    .stage-desc {
        font-size: 13px;
    }
    
    .icon-box {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }
    
    .example-section {
        padding: 18px 16px;
    }
    
    .example-title {
        font-size: 11px;
    }
    
    .calc-value {
        font-size: 16px;
    }
    
    .stat-badge {
        font-size: 12px;
        padding: 6px 12px;
        left: 5%;
        bottom: 10%;
    }
    
    .section-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    
    /* РАЗДЕЛ "КУМУЛЯТИВНАЯ ДОХОДНОСТЬ" - ПОЛНАЯ ПЕРЕВЕРСТКА ДЛЯ TABLET */
    .section-performance .section-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .performance-legend {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 16px;
        padding: 0;
    }
    
    .legend-item {
        font-size: 11px;
        padding: 6px 10px;
        width: 100%;
        justify-content: center;
        border-radius: 6px;
    }
    
    .legend-dot {
        width: 8px;
        height: 8px;
    }
    
    .chart-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 5px;          /* Уменьшено с 10px для большей ширины графика */
        margin-bottom: 20px;
    }
    
    .chart-container {
        height: 200px;
        padding: 8px 4px;        /* Уменьшено для большей ширины canvas */
        max-width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .table-section {
        margin-top: 16px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 5px;          /* Уменьшено с 10px для большей ширины таблицы */
    }
    
    .table-header {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
        padding: 0;
    }
    
    .table-header h3 {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .table-header i {
        font-size: 13px;
    }
    
    .table-wrapper {
        margin: 0;
        border-radius: 8px;
    }
    
    .legend-item {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .data-table {
        font-size: 11px;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px 6px;
    }
    
    .data-table th:first-child,
    .data-table td:first-child {
        padding-left: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-note {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .developer-badge {
        justify-content: center;
    }
    
    .developer-badge .developer-link {
        margin-right: 0;
    }
    
    .key-message {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .diagram-wrapper {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 350px;
        transform: scale(0.85);
    }
    
    .control-right {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .container-custom {
        padding: 0 15px;
    }
    
    .section-hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .section-hero .container-custom {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .cta-btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 18px;
        line-height: 1.4;
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .coin-btc {
        width: 240px;
        height: 240px;
    }
    
    .coin-eth {
        width: 150px;
        height: 150px;
    }
    
    .coin-symbol {
        font-size: 100px;
    }
    
    .big-percent {
        font-size: 60px;
    }
    
    .stages-container {
        gap: 14px;
        padding: 0 5px;
    }
    
    .stages-container .glass-card {
        padding: 16px 14px;
    }
    
    .stage-title {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .stage-desc {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .icon-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .icon-box {
        width: 42px;
        height: 42px;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .example-section {
        padding: 16px 14px;
        flex-direction: column;
    }
    
    .example-title {
        font-size: 11px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .calc-flow {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .calc-item {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        text-align: left;
    }
    
    .calc-label {
        font-size: 11px;
        margin-bottom: 0;
        text-align: left;
    }
    
    .calc-value {
        font-size: 16px;
        text-align: right;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .key-message {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
        padding-left: 12px;
    }
    
    .section-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }
    
    /* РАЗДЕЛ "КУМУЛЯТИВНАЯ ДОХОДНОСТЬ" - ПОЛНАЯ ПЕРЕВЕРСТКА ДЛЯ MOBILE */
    .section-performance .section-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 12px;
        text-align: center;
        word-break: break-word;
    }
    
    .performance-legend {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 12px;
        padding: 0;
    }
    
    .legend-item {
        font-size: 10px;
        padding: 6px 8px;
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .legend-dot {
        width: 7px;
        height: 7px;
    }
    
    .chart-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 3px;          /* Уменьшено с 8px для максимальной ширины */
        margin-bottom: 12px;
    }
    
    .chart-container {
        height: 150px;
        padding: 6px 2px;        /* Уменьшено для максимальной ширины canvas */
        max-width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .table-section {
        margin-top: 10px;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 3px;          /* Уменьшено с 8px для максимальной ширины таблицы */
    }
    
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
        padding: 0;
    }
    
    .table-header h3 {
        font-size: 10px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .table-header i {
        font-size: 11px;
    }
    
    .table-wrapper {
        margin: 0;
        overflow-x: auto;
        border-radius: 6px;
    }
    
    .data-table {
        font-size: 9px;          /* Уменьшено с 10px */
    }
    
    .data-table th {
        font-size: 8px;
        padding: 4px 2px;        /* Уменьшено для большей ширины */
    }
    
    .data-table td {
        padding: 4px 2px;        /* Уменьшено для большей ширины */
    }
    
    .data-table th:first-child,
    .data-table td:first-child {
        padding-left: 4px;       /* Уменьшено с 6px */
    }
    
    .data-table .index-name {
        font-size: 10px;         /* Уменьшено с 11px */
        gap: 4px;                /* Уменьшено */
    }
    
    .data-table .index-name i {
        font-size: 9px;          /* Уменьшено с 10px */
    }
    
    .stages-container {
        gap: 16px;
    }
    
    .stage-title {
        font-size: 16px;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .stage-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .icon-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .table-wrapper {
        margin: 0 15px;
        overflow-x: auto;
    }
    
    .data-table {
        font-size: 10px;
        min-width: 800px;
    }
    
    .data-table th,
    .data-table td {
        padding: 6px 4px;
    }
    
    .data-table th:first-child,
    .data-table td:first-child {
        padding-left: 10px;
    }
    
    .data-table .index-name {
        font-size: 12px;
    }
    
    .section-compact {
        padding: 40px 0 !important;
        min-height: auto;
    }
    
    /* Убрано дублирование - стили для .index-compact-header уже есть в @media (max-width: 768px) */
    
    .index-icon-box-compact {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .performance-value {
        font-size: 18px;
    }
    
    .benefit-item {
        padding: 12px 16px;
    }
    
    .benefit-item > i {
        font-size: 24px;
    }
    
    .benefit-item strong {
        font-size: 13px;
    }
    
    .benefit-item span {
        font-size: 11px;
    }
    
    .recommended-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .stat-badge {
        left: 5%;
        bottom: 5%;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-value {
        font-size: 14px;
    }
}

/* ===========================
   ORIGINAL PURPLE THEME RESTORED
   =========================== */