/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT US REVOLUTIONARY 2025 - MAXIMUM EVOLUTION DESIGN SYSTEM
   Advanced 3D • Glassmorphism • Neural Networks • Particle Systems
   ═══════════════════════════════════════════════════════════════════════════ */

/* ===== REVOLUTIONARY FOUNDATION ===== */
.about-revolutionary-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Enhanced Section Foundation with 3D Perspective */
.revolutionary-section {
    width: 100%;
    min-height: 100vh;
    padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem);
    position: relative;
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
    background: 
        radial-gradient(ellipse at top left, rgba(228, 169, 96, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(228, 169, 96, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

.revolutionary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(228, 169, 96, 0.02) 25%,
            transparent 50%,
            rgba(228, 169, 96, 0.02) 75%,
            transparent 100%);
    pointer-events: none;
    animation: revolutionaryAura 20s ease-in-out infinite;
}

.section-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== REVOLUTIONARY GRID SYSTEMS ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-20);
    align-items: center;
    min-height: 70vh;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-20);
    align-items: center;
    min-height: 70vh;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 70vh;
    padding: var(--space-12) var(--space-20);
    max-width: 1400px;
    margin: 0 auto;
}

.technical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 70vh;
    padding: var(--space-12) var(--space-20);
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== UNIFIED CONTENT COLUMN STYLES FOR ALL SECTIONS ===== */
.content-column-immersive,
.content-column.map-content,
.content-column.resources-content,
.content-column.technical-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
    padding-right: var(--space-8);
}

/* ===== PROFESSIONAL TYPOGRAPHY - SMALLER SCALE ===== */
.revolutionary-title {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.revolutionary-text {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    text-align: left;
    text-shadow: none;
}

.torg-brand-glow {
    color: var(--torg-orange);
    font-weight: 700;
    position: relative;
    text-shadow: 
        0 0 10px var(--torg-orange-glow),
        0 0 20px var(--torg-orange-glow),
        0 0 30px var(--torg-orange-glow);
    animation: brandPulse 4s ease-in-out infinite;
}

/* ===== REVOLUTIONARY ORANGE QUANTUM LINES ===== */
.orange-quantum-line {
    width: 8px;
    height: 150px;
    background: linear-gradient(180deg, 
        var(--torg-orange) 0%, 
        var(--torg-orange-light) 30%,
        var(--torg-orange) 60%,
        var(--torg-orange-light) 100%);
    border-radius: 4px;
    margin-bottom: var(--space-8);
    position: relative;
    box-shadow: 
        0 0 15px var(--torg-orange-glow),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    transform: rotateY(15deg);
    transform-style: preserve-3d;
    animation: quantumPulse 3s ease-in-out infinite;
}

.orange-quantum-line.micro {
    height: 80px;
    width: 6px;
    margin-right: var(--space-6);
    margin-bottom: 0;
    transform: rotateY(-15deg);
}

.orange-quantum-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--torg-orange-glow) 50%, 
        transparent 100%);
    border-radius: 6px;
    z-index: -1;
    animation: quantumAura 2s ease-in-out infinite alternate;
}

/* ===== SECTION 1: NEW MINIMALIST INTRO WITH LOGO ===== */

.intro-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 80vh;
    padding: var(--space-12) var(--space-20);
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
    padding-right: var(--space-8);
}

.intro-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.intro-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: var(--space-4);
}

.intro-logo-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.intro-logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Responsive для нового intro layout */
@media (max-width: 1024px) {
    .intro-layout-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-8) var(--space-6);
    }
    
    .intro-text-column {
        text-align: center;
        padding-right: 0;
    }
    
    .intro-main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .intro-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* ===== SECTION 1: OLD EXPERTISE REVOLUTIONARY ELEMENTS ===== */
.uniqueness-glassmorphism-panel {
    display: flex;
    align-items: flex-start;
    margin-top: var(--space-10);
    padding: var(--space-8);
    background: rgba(43, 43, 43, 0.4);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(228, 169, 96, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateX(2deg) rotateY(-1deg);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.uniqueness-glassmorphism-panel:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    border-color: var(--torg-orange);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 25px var(--torg-orange-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ===== REVOLUTIONARY INVESTMENT PROFIT DASHBOARD ===== */
.investment-profit-dashboard {
    position: relative;
    width: 100%;
    max-width: min(380px, 95vw);
    margin: 0 auto clamp(1rem, 3vw, 2rem);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(228, 169, 96, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 25px var(--torg-orange-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    container-type: inline-size;
    transform: rotateX(2deg) rotateY(-1deg);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.investment-profit-dashboard:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    border-color: var(--torg-orange);
    box-shadow: 
        0 16px 50px rgba(0, 0, 0, 0.4),
        0 0 35px var(--torg-orange-glow),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.dashboard-header {
    padding: clamp(1rem, 4vw, 1.5rem);
    background: linear-gradient(135deg, 
        rgba(228, 169, 96, 0.8) 0%, 
        rgba(228, 169, 96, 0.6) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: headerShimmer 3s ease-in-out infinite;
}

.header-title {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 0.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.profit-visualization-main {
    padding: clamp(1rem, 4vw, 1.5rem);
}

/* Investment Calculator */
.investment-calculator {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.8rem, 3vw, 1rem);
    margin-bottom: clamp(0.5rem, 2vw, 0.8rem);
    background: rgba(43, 43, 43, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.calculation-row:hover {
    background: rgba(228, 169, 96, 0.1);
    border-color: rgba(228, 169, 96, 0.3);
    transform: translateX(4px);
}

.calc-label {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.3;
}

.calc-value {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    font-weight: 700;
}

.market-value {
    color: rgba(180, 180, 180, 0.9);
}

.auction-value {
    color: var(--torg-orange);
    text-shadow: 0 0 8px var(--torg-orange-glow);
}

.currency-symbol {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    opacity: 0.8;
}

.value-counter {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-family: var(--font-mono);
    animation: counterPulse 2s ease-in-out infinite;
}

.value-unit {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    opacity: 0.7;
    font-weight: 500;
}

/* Profit Arrow Down */
.profit-arrow-down {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(1rem, 3vw, 1.5rem) 0;
}

.arrow-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(180, 180, 180, 0.8) 0%, 
        var(--torg-orange) 100%);
    border-radius: 2px;
    position: relative;
    animation: arrowLineGlow 2s ease-in-out infinite;
}

.arrow-tip {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--torg-orange);
    filter: drop-shadow(0 0 8px var(--torg-orange-glow));
    animation: arrowTipPulse 2s ease-in-out infinite;
}

.savings-badge {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, 
        #4ade80 0%, 
        #22c55e 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.badge-text {
    display: block;
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-percentage {
    display: block;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Profit Scenarios */
.profit-scenarios {
    background: rgba(58, 58, 58, 0.4);
    border-radius: 12px;
    padding: clamp(1rem, 3vw, 1.2rem);
    border: 1px solid rgba(228, 169, 96, 0.2);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.scenario-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: clamp(1rem, 3vw, 1.2rem);
    background: rgba(43, 43, 43, 0.6);
    padding: 0.3rem;
    border-radius: 8px;
}

.scenario-tab {
    flex: 1;
    padding: clamp(0.5rem, 2vw, 0.7rem);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scenario-tab.active {
    background: var(--torg-orange);
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.scenario-tab:hover:not(.active) {
    background: rgba(228, 169, 96, 0.2);
    color: var(--text-secondary);
}

.scenario-content {
    position: relative;
    min-height: 80px;
}

.scenario-item {
    display: none;
    animation: scenarioFadeIn 0.5s ease-out;
}

.scenario-item.active {
    display: block;
}

.profit-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(0.8rem, 2.5vw, 1rem);
    padding: clamp(0.6rem, 2.5vw, 0.8rem);
    background: rgba(43, 43, 43, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(228, 169, 96, 0.2);
}

.metric-label {
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    font-weight: 500;
    color: var(--text-secondary);
}

.metric-value {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    font-weight: 700;
    color: #4ade80;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.profit-counter {
    font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    font-family: var(--font-mono);
    animation: profitCounterGlow 3s ease-in-out infinite;
}

.profit-unit {
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
    opacity: 0.8;
    font-weight: 500;
}

.roi-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 0.6rem);
    background: linear-gradient(135deg, 
        rgba(74, 222, 128, 0.1) 0%, 
        rgba(34, 197, 94, 0.05) 100%);
    border-radius: 6px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.roi-label {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    color: var(--text-secondary);
}

.roi-value {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    animation: roiPulse 4s ease-in-out infinite;
}

/* Money Flow System */
.money-flow-system {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    background: rgba(43, 43, 43, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(228, 169, 96, 0.2);
    overflow: hidden;
}

.flow-source,
.flow-destination {
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    background: rgba(58, 58, 58, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(228, 169, 96, 0.3);
    backdrop-filter: blur(5px);
}

.flow-destination {
    color: var(--torg-orange);
    text-shadow: 0 0 6px var(--torg-orange-glow);
    animation: destinationGlow 4s ease-in-out infinite;
}

.flow-path {
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(180, 180, 180, 0.3) 0%, 
        var(--torg-orange) 50%, 
        #4ade80 100%);
    border-radius: 2px;
    transform: translateY(-50%);
}

.profit-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(74, 222, 128, 0.6) 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: profitTrailMove 2s ease-in-out infinite;
}

.money-particle {
    position: absolute;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 700;
    color: var(--torg-orange);
    text-shadow: 0 0 6px var(--torg-orange-glow);
    animation: moneyParticleFlow 3s linear infinite;
    top: 50%;
    transform: translateY(-50%);
}

.money-particle.m1 {
    left: 30%;
    animation-delay: 0s;
}

.money-particle.m2 {
    left: 50%;
    animation-delay: 1s;
}

.money-particle.m3 {
    left: 70%;
    animation-delay: 2s;
}

.profit-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: clamp(0.8rem, 3vw, 1rem);
    background: rgba(43, 43, 43, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 169, 96, 0.2);
    z-index: 5;
}

.profit-title {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.building-transformation-scene {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 50px;
    perspective: 800px;
    transform-style: preserve-3d;
    overflow: visible;
}

/* 3D Building Animation System */
.building-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform-style: preserve-3d;
}

.building-before,
.building-after {
    position: relative;
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.building-3d {
    position: relative;
    width: clamp(60px, 15vw, 80px);
    height: clamp(80px, 20vw, 100px);
    transform-style: preserve-3d;
    animation: buildingFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.4s ease;
}

.building-3d:hover {
    transform: scale(1.1) rotateY(15deg);
}

/* Market Building (Gray) */
.market-building .building-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(160, 160, 160, 0.9) 0%, 
        rgba(120, 120, 120, 0.8) 100%);
    transform: translateZ(25px);
    border-radius: 4px;
    border: 1px solid rgba(180, 180, 180, 0.5);
}

.market-building .building-top {
    position: absolute;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, 
        rgba(180, 180, 180, 0.9) 0%, 
        rgba(140, 140, 140, 0.8) 100%);
    transform: rotateX(90deg) translateZ(25px);
    border-radius: 4px 4px 0 0;
}

.market-building .building-side {
    position: absolute;
    width: 50px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(140, 140, 140, 0.8) 0%, 
        rgba(100, 100, 100, 0.7) 100%);
    transform: rotateY(90deg) translateZ(25px);
    right: 0;
    border-radius: 0 4px 4px 0;
}

/* Auction Building (Orange Enhanced) */
.auction-building .building-front.enhanced {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--torg-orange) 0%, 
        var(--torg-orange-light) 50%,
        var(--torg-orange) 100%);
    transform: translateZ(25px);
    border-radius: 4px;
    border: 1px solid var(--torg-orange-light);
    box-shadow: 0 0 20px var(--torg-orange-glow);
}

.auction-building .building-top.enhanced {
    position: absolute;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, 
        var(--torg-orange-light) 0%, 
        var(--torg-orange) 100%);
    transform: rotateX(90deg) translateZ(25px);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 15px var(--torg-orange-glow);
}

.auction-building .building-side.enhanced {
    position: absolute;
    width: 50px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--torg-orange) 0%, 
        rgba(228, 169, 96, 0.8) 100%);
    transform: rotateY(90deg) translateZ(25px);
    right: 0;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 12px var(--torg-orange-glow);
}

.profit-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, 
        var(--torg-orange-glow) 0%, 
        transparent 70%);
    animation: profitGlowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.building-shadow {
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse, 
        rgba(0, 0, 0, 0.3) 0%, 
        transparent 70%);
    transform: rotateX(90deg) translateZ(-35px);
    animation: shadowFloat 4s ease-in-out infinite;
}

.building-shadow.enhanced {
    background: radial-gradient(ellipse, 
        rgba(228, 169, 96, 0.2) 0%, 
        rgba(0, 0, 0, 0.3) 30%,
        transparent 70%);
    box-shadow: 0 0 15px var(--torg-orange-glow);
}

.value-label {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    margin-top: clamp(0.5rem, 2vw, 0.8rem);
    padding: clamp(0.3rem, 1vw, 0.5rem);
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auction-label {
    color: var(--torg-orange);
    border-color: rgba(228, 169, 96, 0.3);
    text-shadow: 0 0 8px var(--torg-orange-glow);
}

/* Flying Money Particles */
.money-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.ruble-particle {
    position: absolute;
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--torg-orange);
    text-shadow: 0 0 10px var(--torg-orange-glow);
    animation: rubleFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.percentage-particle {
    position: absolute;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 700;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    animation: percentageFloat 5s ease-in-out infinite;
    transform-style: preserve-3d;
}

.ruble-particle.r1 {
    top: 20%; left: 20%; animation-delay: 0s; transform: translateZ(30px);
}
.ruble-particle.r2 {
    top: 40%; right: 25%; animation-delay: 2s; transform: translateZ(20px);
}
.ruble-particle.r3 {
    bottom: 30%; left: 30%; animation-delay: 4s; transform: translateZ(40px);
}

.percentage-particle.p1 {
    top: 60%; right: 20%; animation-delay: 1s; transform: translateZ(35px);
}
.percentage-particle.p2 {
    bottom: 20%; right: 40%; animation-delay: 3s; transform: translateZ(25px);
}

/* Profit Arrow System */
.profit-arrow-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.profit-arrow {
    position: relative;
    width: 60px;
    height: 8px;
    margin-bottom: 10px;
}

.arrow-body {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #4ade80 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: arrowFlow 2s ease-in-out infinite;
}

.arrow-head {
    position: absolute;
    right: 0;
    top: -2px;
    width: 0;
    height: 0;
    border-left: 8px solid #4ade80;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    animation: arrowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.5));
}

.arrow-glow {
    position: absolute;
    top: -2px;
    left: -5px;
    right: -5px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(74, 222, 128, 0.3) 50%, 
        transparent 100%);
    border-radius: 4px;
    animation: arrowGlow 2s ease-in-out infinite;
}

.profit-text {
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    font-weight: 700;
    color: #4ade80;
    text-align: center;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: textPulse 3s ease-in-out infinite;
}

.profit-summary {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(0.8rem, 3vw, 1rem);
    background: rgba(43, 43, 43, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(228, 169, 96, 0.2);
    border-radius: 0 0 14px 14px;
}

.savings-display {
    text-align: center;
}

.savings-number {
    display: block;
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 700;
    color: var(--torg-orange);
    text-shadow: 0 0 12px var(--torg-orange-glow);
    animation: savingsNumberPulse 4s ease-in-out infinite;
}

.savings-text {
    display: block;
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-weight: 500;
}

.profit-scene-3d {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.webgl-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(43, 43, 43, 0.8) 100%);
}

/* Enhanced 2D Fallback */
.profit-fallback-2d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(43, 43, 43, 0.9) 100%);
}

.market-value-display {
    text-align: center;
    padding: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
}

.value-label {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.3;
}

.value-bar-container {
    position: relative;
    height: 80px;
    margin: clamp(1rem, 3vw, 1.5rem) 0;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.market-bar {
    width: clamp(30px, 8vw, 40px);
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(180, 180, 180, 0.8) 0%, 
        rgba(140, 140, 140, 0.6) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: barGrowMarket 2s ease-out;
}

.auction-bar {
    width: clamp(30px, 8vw, 40px);
    height: 35%;
    background: linear-gradient(180deg, 
        var(--torg-orange) 0%, 
        var(--torg-orange-light) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: barGrowAuction 2s ease-out 0.5s both;
    box-shadow: 0 0 15px var(--torg-orange-glow);
}

.market-bar::after {
    content: 'Рынок';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.auction-bar::after {
    content: 'Торги';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--torg-orange);
    white-space: nowrap;
    font-weight: 600;
}

.discount-indicator {
    margin-top: clamp(1rem, 3vw, 1.5rem);
}

.discount-percentage {
    display: block;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 700;
    color: var(--torg-orange);
    text-shadow: 0 0 10px var(--torg-orange-glow);
    animation: discountPulse 3s ease-in-out infinite;
}

.discount-text {
    display: block;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Interactive Controls */
.profit-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    border-top: 1px solid rgba(228, 169, 96, 0.2);
}

.control-btn {
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
    background: rgba(228, 169, 96, 0.2);
    border: 1px solid var(--torg-orange-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background: rgba(228, 169, 96, 0.4);
    border-color: var(--torg-orange);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 169, 96, 0.3);
}

.market-price-container-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.price-label-floating {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
    padding: var(--space-3);
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(228, 169, 96, 0.2);
    transform: translateZ(20px);
    animation: floatingLabel 4s ease-in-out infinite;
}

.price-visualization-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 4;
}

.price-core-3d {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--torg-orange) 0%, 
        var(--torg-orange-light) 50%,
        var(--torg-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotateX(15deg) rotateY(15deg);
    transform-style: preserve-3d;
    box-shadow: 
        0 0 30px var(--torg-orange-glow),
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: priceCore3D 6s ease-in-out infinite;
}

.currency-symbol-3d {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateZ(10px);
}

.price-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.price-particles::before,
.price-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleOrbit 3s linear infinite;
}

.price-particles::before {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.price-particles::after {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

.auction-context-floating {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.context-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(228, 169, 96, 0.2);
    transform: translateZ(15px);
    animation: contextFloat 5s ease-in-out infinite;
}

.discount-showcase-3d {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transform: translateZ(25px);
}

.percentage-display-main {
    font-size: 2rem;
    font-weight: 900;
    color: var(--torg-orange);
    text-shadow: 
        0 0 15px var(--torg-orange-glow),
        0 2px 8px rgba(0, 0, 0, 0.5);
    animation: percentagePulse 3s ease-in-out infinite;
}

.percentage-context {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-2);
    font-weight: 500;
}

/* ===== REVOLUTIONARY 3D CLOUD SYSTEM ===== */
.ai-cloud-revolutionary-3d {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.cloud-particle-system {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform-style: preserve-3d;
}

.cloud-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, 
        var(--torg-orange) 0%, 
        var(--torg-orange-glow) 70%, 
        transparent 100%);
    border-radius: 50%;
    animation: cloudParticleFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
    box-shadow: 0 0 10px var(--torg-orange-glow);
}

.cloud-particle[data-particle="1"] {
    top: 20px; left: 50px; animation-delay: 0s; transform: translateZ(30px);
}
.cloud-particle[data-particle="2"] {
    top: 40px; left: 80px; animation-delay: 1s; transform: translateZ(50px);
}
.cloud-particle[data-particle="3"] {
    top: 60px; left: 120px; animation-delay: 2s; transform: translateZ(20px);
}
.cloud-particle[data-particle="4"] {
    top: 80px; left: 160px; animation-delay: 3s; transform: translateZ(40px);
}
.cloud-particle[data-particle="5"] {
    top: 100px; left: 200px; animation-delay: 4s; transform: translateZ(25px);
}
.cloud-particle[data-particle="6"] {
    top: 120px; left: 180px; animation-delay: 5s; transform: translateZ(45px);
}
.cloud-particle[data-particle="7"] {
    top: 140px; left: 100px; animation-delay: 6s; transform: translateZ(35px);
}
.cloud-particle[data-particle="8"] {
    top: 160px; left: 60px; animation-delay: 7s; transform: translateZ(15px);
}

.ai-neural-core {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    transform-style: preserve-3d;
}

.neural-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--torg-orange);
    animation: neuralRingRotate 8s linear infinite;
    box-shadow: 0 0 15px var(--torg-orange-glow);
}

.neural-ring.ring-1 {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    animation-duration: 8s;
}

.neural-ring.ring-2 {
    width: 80px;
    height: 80px;
    top: 10px;
    left: 10px;
    animation-duration: 6s;
    animation-direction: reverse;
    opacity: 0.7;
}

.neural-ring.ring-3 {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    animation-duration: 4s;
    opacity: 0.5;
}

.ai-core-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 
        0 0 10px var(--torg-orange-glow),
        0 2px 5px rgba(0, 0, 0, 0.5);
    animation: aiCorePulse 2s ease-in-out infinite alternate;
}

.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.neural-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--torg-orange-glow) 20%, 
        var(--torg-orange) 50%, 
        var(--torg-orange-glow) 80%, 
        transparent 100%);
    border-radius: 1px;
    animation: neuralPulse 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

.neural-line.line-alpha {
    width: 60px; top: 30px; left: 120px; transform: rotate(30deg) translateZ(10px); animation-delay: 0s;
}
.neural-line.line-beta {
    width: 50px; top: 60px; left: 140px; transform: rotate(-45deg) translateZ(15px); animation-delay: 0.8s;
}
.neural-line.line-gamma {
    width: 70px; top: 90px; left: 100px; transform: rotate(60deg) translateZ(5px); animation-delay: 1.6s;
}
.neural-line.line-delta {
    width: 55px; top: 120px; left: 80px; transform: rotate(-30deg) translateZ(20px); animation-delay: 2.4s;
}
.neural-line.line-epsilon {
    width: 65px; top: 50px; left: 60px; transform: rotate(15deg) translateZ(25px); animation-delay: 3.2s;
}

/* ===== SECTION 2: WORKFLOW REVOLUTIONARY SYSTEM ===== */
.workflow-revolutionary-system {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.workflow-core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.workflow-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--torg-orange);
    border-radius: 50%;
    animation: workflowPulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px var(--torg-orange-glow),
        inset 0 0 15px rgba(228, 169, 96, 0.2);
}

.workflow-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--torg-orange);
    text-shadow: 0 0 15px var(--torg-orange-glow);
}

.workflow-center-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: var(--space-1);
}

.workflow-step-enhanced {
    position: absolute;
    width: 160px;
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.workflow-step-enhanced:hover {
    transform: scale(1.1) translateZ(20px);
    z-index: 5;
}

.step-circle-3d {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, 
        var(--torg-orange) 0%, 
        var(--torg-orange-light) 50%,
        var(--torg-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateX(10deg) rotateY(10deg);
    transform-style: preserve-3d;
    box-shadow: 
        0 0 25px var(--torg-orange-glow),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: stepCircle3D 5s ease-in-out infinite;
}

.step-icon-enhanced {
    font-size: 2.2rem;
    transform: translateZ(15px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.step-glow-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--torg-orange-glow);
    border-radius: 50%;
    animation: stepGlowPulse 3s ease-in-out infinite;
    transform: translateZ(-5px);
}

.step-label-enhanced {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateZ(5px);
}

.step-number-floating {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--bg-primary);
    border: 3px solid var(--torg-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--torg-orange);
    transform: translateZ(30px);
    box-shadow: 
        0 0 15px var(--torg-orange-glow),
        0 4px 12px rgba(0, 0, 0, 0.3);
    animation: numberFloat 4s ease-in-out infinite;
}

/* Workflow Step Positions (Enhanced Circular Layout) */
.workflow-step-enhanced.step-1 {
    top: 0; left: 50%; transform: translateX(-50%);
}
.workflow-step-enhanced.step-2 {
    top: 15%; right: 0;
}
.workflow-step-enhanced.step-3 {
    top: 55%; right: 0;
}
.workflow-step-enhanced.step-4 {
    bottom: 0; left: 50%; transform: translateX(-50%);
}
.workflow-step-enhanced.step-5 {
    top: 55%; left: 0;
}
.workflow-step-enhanced.step-6 {
    top: 15%; left: 0;
}

.workflow-neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neural-path {
    position: absolute;
    background: linear-gradient(45deg, 
        transparent 0%, 
        var(--torg-orange-glow) 30%, 
        var(--torg-orange) 50%, 
        var(--torg-orange-glow) 70%, 
        transparent 100%);
    height: 4px;
    border-radius: 2px;
    animation: neuralPathFlow 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.neural-path.path-1-2 {
    width: 140px; top: 18%; left: 55%; transform: rotate(40deg) translateZ(5px); animation-delay: 0s;
}
.neural-path.path-2-3 {
    width: 100px; top: 35%; right: 5%; transform: rotate(85deg) translateZ(8px); animation-delay: 1s;
}
.neural-path.path-3-4 {
    width: 140px; bottom: 18%; right: 55%; transform: rotate(-40deg) translateZ(3px); animation-delay: 2s;
}
.neural-path.path-4-5 {
    width: 140px; bottom: 18%; left: 55%; transform: rotate(40deg) translateZ(7px); animation-delay: 3s;
}
.neural-path.path-5-6 {
    width: 100px; top: 35%; left: 5%; transform: rotate(-85deg) translateZ(4px); animation-delay: 4s;
}
.neural-path.path-6-1 {
    width: 140px; top: 18%; left: 55%; transform: rotate(-40deg) translateZ(6px); animation-delay: 5s;
}

/* ===== PERFECT WORKFLOW ARROWS - COMPUTER VISION OPTIMIZED ===== */
.workflow-arrow-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.workflow-arrows-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.workflow-arrows-svg:hover {
    opacity: 1;
}

.workflow-arrow-path {
    stroke-width: 2;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: arrowDashFlow 4s linear infinite;
    filter: drop-shadow(0 0 6px var(--torg-orange-glow));
}

.workflow-arrow-path:hover {
    opacity: 1;
    stroke-width: 3;
    filter: drop-shadow(0 0 10px var(--torg-orange-glow));
}

.arrow-head {
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px var(--torg-orange-glow));
    animation: arrowHeadPulse 3s ease-in-out infinite;
}

/* Enhanced Sequential Animation with Perfect Timing */
.workflow-arrow-path[id="arrow-1-2"] { 
    animation-delay: 0s; 
    stroke-dasharray: 6,3;
}
.workflow-arrow-path[id="arrow-2-3"] { 
    animation-delay: 0.6s; 
    stroke-dasharray: 6,3;
}
.workflow-arrow-path[id="arrow-3-4"] { 
    animation-delay: 1.2s; 
    stroke-dasharray: 6,3;
}
.workflow-arrow-path[id="arrow-4-5"] { 
    animation-delay: 1.8s; 
    stroke-dasharray: 6,3;
}
.workflow-arrow-path[id="arrow-5-6"] { 
    animation-delay: 2.4s; 
    stroke-dasharray: 6,3;
}
.workflow-arrow-path[id="arrow-6-1"] { 
    animation-delay: 3s; 
    stroke-dasharray: 6,3;
}

/* ===== SECTION 3: INFORMATION HUB 3D ===== */
.information-hub-3d {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hub-core-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 5;
}

.core-glassmorphism {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(228, 169, 96, 0.1) 0%, transparent 50%),
        rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(25px);
    border: 2px solid var(--torg-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotateX(10deg) rotateY(10deg);
    transform-style: preserve-3d;
    box-shadow: none; /* УБРАЛ ВСЕ GLOW ЭФФЕКТЫ */
    animation: none; /* УБРАЛ АНИМАЦИЮ */
}

.core-glassmorphism::before {
    display: none; /* УБРАЛ ВНУТРЕННИЙ GLOW */
}

.core-glassmorphism::after {
    display: none; /* УБРАЛ ВНЕШНИЙ GLOW RING */
}

.core-text-3d {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    transform: translateZ(15px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.core-accent {
    color: var(--torg-orange);
    text-shadow: 
        0 0 10px var(--torg-orange-glow),
        0 2px 8px rgba(0, 0, 0, 0.5);
}

.core-neural-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, var(--torg-orange-glow) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, var(--torg-orange-glow) 1px, transparent 1px),
        radial-gradient(circle at 50% 20%, var(--torg-orange-glow) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, var(--torg-orange-glow) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    opacity: 0.3;
    animation: neuralGridPulse 5s ease-in-out infinite;
}

.resource-satellites {
    position: relative;
    width: 100%;
    height: 100%;
}

.resource-satellite {
    position: absolute;
    width: 90px;
    height: 90px;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.resource-satellite:hover {
    transform: scale(1.15) translateZ(25px) rotateY(15deg);
    z-index: 8;
}

.satellite-core {
    width: 90px;
    height: 90px;
    background: rgba(43, 43, 43, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid var(--torg-orange-glow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 0 20px rgba(228, 169, 96, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 8px rgba(255, 255, 255, 0.1);
}

.satellite-icon {
    font-size: 1.8rem;
    margin-bottom: var(--space-1);
    transform: translateZ(10px);
}

.satellite-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.1;
    transform: translateZ(8px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.satellite-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--torg-orange-glow);
    border-radius: 50%;
    opacity: 0;
    animation: satelliteGlow 4s ease-in-out infinite;
    transform: translateZ(-5px);
}

/* Resource Satellite Positions (3D Circular Layout) */
.resource-satellite.sat-1 { top: 0; left: 50%; transform: translateX(-50%) translateZ(20px); }
.resource-satellite.sat-2 { top: 20%; right: 0; transform: translateZ(30px); }
.resource-satellite.sat-3 { bottom: 20%; right: 0; transform: translateZ(15px); }
.resource-satellite.sat-4 { bottom: 0; left: 50%; transform: translateX(-50%) translateZ(25px); }
.resource-satellite.sat-5 { bottom: 20%; left: 0; transform: translateZ(35px); }
.resource-satellite.sat-6 { top: 20%; left: 0; transform: translateZ(10px); }

.neural-web-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neural-beam {
    position: absolute;
    background: linear-gradient(45deg, 
        transparent 0%, 
        var(--torg-orange-glow) 40%, 
        var(--torg-orange) 50%, 
        var(--torg-orange-glow) 60%, 
        transparent 100%);
    width: 3px;
    border-radius: 2px;
    animation: neuralBeamPulse 5s ease-in-out infinite;
    transform-style: preserve-3d;
}

.neural-beam.beam-1 { height: 150px; top: 100px; left: 50%; transform: translateX(-50%) translateZ(12px); animation-delay: 0s; }
.neural-beam.beam-2 { width: 150px; top: 50%; left: 250px; transform: translateY(-50%) rotate(60deg) translateZ(8px); animation-delay: 0.8s; }
.neural-beam.beam-3 { width: 150px; top: 50%; left: 250px; transform: translateY(-50%) rotate(-60deg) translateZ(15px); animation-delay: 1.6s; }
.neural-beam.beam-4 { height: 150px; bottom: 100px; left: 50%; transform: translateX(-50%) translateZ(18px); animation-delay: 2.4s; }
.neural-beam.beam-5 { width: 150px; top: 50%; right: 250px; transform: translateY(-50%) rotate(-60deg) translateZ(10px); animation-delay: 3.2s; }
.neural-beam.beam-6 { width: 150px; top: 50%; right: 250px; transform: translateY(-50%) rotate(60deg) translateZ(22px); animation-delay: 4s; }

/* ===== SECTION 4: TECHNICAL PROCESS 3D ===== */
.technical-process-3d {
    background: rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    border: 2px solid rgba(228, 169, 96, 0.3);
    transform: rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    box-shadow: none; /* УБРАЛ ВСЮ ПОДСВЕТКУ */
    transition: all 0.4s ease;
}

.technical-process-3d:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: var(--torg-orange);
}

.process-header-3d {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-10);
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--torg-orange), var(--torg-orange-light));
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    position: relative;
    transform: translateZ(15px);
    /* box-shadow: 0 8px 20px rgba(228, 169, 96, 0.4), 0 0 15px var(--torg-orange-glow); */ /* УБРАЛ GLOW */
}

.process-icon-3d {
    font-size: 2.5rem;
    margin-right: var(--space-6);
    transform: translateZ(10px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.process-title-3d {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    transform: translateZ(8px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.title-accent {
    font-weight: 900;
    text-shadow: none; /* УБРАЛ GLOW ПОДСВЕТКУ */
}

.header-neural-grid {
    display: none; /* УБРАЛ ВЕСЬ КВАДРАТИК С ПОДСВЕТКОЙ */
}

.process-steps-enhanced {
    position: relative;
    padding-left: var(--space-8);
    transform: translateZ(10px);
}

.process-step-3d {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-8);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    padding: var(--space-3);
    border-radius: var(--radius-lg);
}

.process-step-3d:hover {
    background: rgba(228, 169, 96, 0.1);
    transform: translateX(15px) translateZ(5px);
    box-shadow: 0 5px 15px rgba(228, 169, 96, 0.2);
}

.step-bullet-3d {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--torg-orange), var(--torg-orange-light));
    border-radius: 50%;
    margin-right: var(--space-6);
    flex-shrink: 0;
    transform: translateZ(8px);
    box-shadow: 
        0 0 12px var(--torg-orange-glow),
        0 3px 8px rgba(0, 0, 0, 0.3);
    animation: bulletPulse 3s ease-in-out infinite;
}

.step-content-3d {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
    transform: translateZ(5px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.process-flow-3d {
    position: absolute;
    left: 9px;
    top: 18px;
    bottom: 18px;
    width: 6px;
    background: linear-gradient(180deg, 
        var(--torg-orange) 0%, 
        var(--torg-orange-glow) 30%, 
        var(--torg-orange) 60%, 
        var(--torg-orange-glow) 100%);
    border-radius: 3px;
    transform: translateZ(-2px);
    box-shadow: 
        0 0 15px var(--torg-orange-glow),
        inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.flow-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--torg-orange);
    border-radius: 50%;
    left: 0;
    box-shadow: 0 0 8px var(--torg-orange-glow);
    animation: flowParticleMove 4s ease-in-out infinite;
}

.flow-particle.flow-1 { animation-delay: 0s; }
.flow-particle.flow-2 { animation-delay: 0.8s; }
.flow-particle.flow-3 { animation-delay: 1.6s; }
.flow-particle.flow-4 { animation-delay: 2.4s; }
.flow-particle.flow-5 { animation-delay: 3.2s; }

/* ═══════════════════════════════════════════════════════════════════════════
   REVOLUTIONARY ANIMATIONS - MAXIMUM EVOLUTION
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes revolutionaryAura {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes brandPulse {
    0%, 100% { text-shadow: 0 0 10px var(--torg-orange-glow), 0 0 20px var(--torg-orange-glow); }
    50% { text-shadow: 0 0 15px var(--torg-orange-glow), 0 0 30px var(--torg-orange-glow), 0 0 40px var(--torg-orange-glow); }
}

@keyframes quantumPulse {
    0%, 100% { transform: rotateY(15deg) scale(1); box-shadow: 0 0 15px var(--torg-orange-glow); }
    50% { transform: rotateY(25deg) scale(1.05); box-shadow: 0 0 25px var(--torg-orange-glow), 0 0 35px var(--torg-orange-glow); }
}

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

@keyframes cloudParticleFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); opacity: 0.6; }
    25% { transform: translateY(-15px) rotateZ(90deg); opacity: 1; }
    50% { transform: translateY(-8px) rotateZ(180deg); opacity: 0.8; }
    75% { transform: translateY(-20px) rotateZ(270deg); opacity: 1; }
}

@keyframes neuralRingRotate {
    0% { transform: rotateZ(0deg) rotateX(10deg); }
    100% { transform: rotateZ(360deg) rotateX(10deg); }
}

@keyframes aiCorePulse {
    0% { transform: translate(-50%, -50%) translateZ(20px) scale(1); }
    100% { transform: translate(-50%, -50%) translateZ(25px) scale(1.1); }
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes floatingLabel {
    0%, 100% { transform: translateZ(20px) translateY(0); }
    50% { transform: translateZ(25px) translateY(-5px); }
}

@keyframes priceCore3D {
    0%, 100% { transform: rotateX(15deg) rotateY(15deg) scale(1); }
    50% { transform: rotateX(25deg) rotateY(25deg) scale(1.05); }
}

@keyframes particleOrbit {
    0% { transform: rotateZ(0deg) translateX(40px) rotateZ(0deg); }
    100% { transform: rotateZ(360deg) translateX(40px) rotateZ(-360deg); }
}

@keyframes contextFloat {
    0%, 100% { transform: translateZ(15px) translateY(0); }
    50% { transform: translateZ(20px) translateY(-3px); }
}

@keyframes percentagePulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 15px var(--torg-orange-glow); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px var(--torg-orange-glow), 0 0 30px var(--torg-orange-glow); }
}

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

@keyframes stepCircle3D {
    0%, 100% { transform: rotateX(10deg) rotateY(10deg) scale(1); }
    50% { transform: rotateX(15deg) rotateY(15deg) scale(1.02); }
}

@keyframes stepGlowPulse {
    0%, 100% { opacity: 0.5; transform: translateZ(-5px) scale(1); }
    50% { opacity: 1; transform: translateZ(-2px) scale(1.1); }
}

@keyframes numberFloat {
    0%, 100% { transform: translateZ(30px) rotateZ(0deg); }
    50% { transform: translateZ(35px) rotateZ(5deg); }
}

@keyframes neuralPathFlow {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes coreGlassmorphism {
    0%, 100% { transform: rotateX(10deg) rotateY(10deg) scale(1); }
    50% { transform: rotateX(15deg) rotateY(15deg) scale(1.03); }
}

@keyframes neuralGridPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes satelliteGlow {
    0%, 100% { opacity: 0; transform: translateZ(-5px) scale(1); }
    50% { opacity: 0.8; transform: translateZ(-2px) scale(1.1); }
}

@keyframes neuralBeamPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes headerGridPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

@keyframes bulletPulse {
    0%, 100% { transform: translateZ(8px) scale(1); }
    50% { transform: translateZ(12px) scale(1.1); }
}

@keyframes flowParticleMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes barGrowMarket {
    from { height: 0%; }
    to { height: 100%; }
}

@keyframes barGrowAuction {
    from { height: 0%; }
    to { height: 35%; }
}

@keyframes discountPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 10px var(--torg-orange-glow); 
    }
    50% { 
        transform: scale(1.05); 
        text-shadow: 0 0 15px var(--torg-orange-glow), 0 0 25px var(--torg-orange-glow); 
    }
}

/* Building & Profit Animations */
@keyframes buildingFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-8px) rotateY(5deg); }
}

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

@keyframes shadowFloat {
    0%, 100% { opacity: 0.3; transform: rotateX(90deg) translateZ(-35px) scale(1); }
    50% { opacity: 0.5; transform: rotateX(90deg) translateZ(-35px) scale(1.1); }
}

@keyframes rubleFloat {
    0%, 100% { 
        transform: translateY(0) rotateZ(0deg) scale(1); 
        opacity: 0.7; 
    }
    25% { 
        transform: translateY(-15px) rotateZ(90deg) scale(1.1); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-8px) rotateZ(180deg) scale(0.9); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-20px) rotateZ(270deg) scale(1.1); 
        opacity: 1; 
    }
}

@keyframes percentageFloat {
    0%, 100% { 
        transform: translateY(0) rotateZ(0deg) scale(1); 
        opacity: 0.8; 
    }
    33% { 
        transform: translateY(-12px) rotateZ(120deg) scale(1.05); 
        opacity: 1; 
    }
    66% { 
        transform: translateY(-6px) rotateZ(240deg) scale(0.95); 
        opacity: 0.9; 
    }
}

@keyframes arrowFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

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

@keyframes arrowGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes savingsNumberPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 12px var(--torg-orange-glow); 
    }
    50% { 
        transform: scale(1.03); 
        text-shadow: 0 0 18px var(--torg-orange-glow), 0 0 25px var(--torg-orange-glow); 
    }
}

/* SVG Arrow Animations - Enhanced */
@keyframes arrowDashFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 18; }
}

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

/* Investment Dashboard Animations */
@keyframes headerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes profitCounterGlow {
    0%, 100% { 
        text-shadow: 0 0 8px rgba(74, 222, 128, 0.5); 
    }
    50% { 
        text-shadow: 0 0 12px rgba(74, 222, 128, 0.8), 0 0 20px rgba(74, 222, 128, 0.3); 
    }
}

@keyframes roiPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 10px rgba(74, 222, 128, 0.5); 
    }
    50% { 
        transform: scale(1.08); 
        text-shadow: 0 0 15px rgba(74, 222, 128, 0.8), 0 0 25px rgba(74, 222, 128, 0.3); 
    }
}

@keyframes arrowLineGlow {
    0%, 100% { 
        box-shadow: 0 0 8px var(--torg-orange-glow); 
    }
    50% { 
        box-shadow: 0 0 15px var(--torg-orange-glow), 0 0 25px var(--torg-orange-glow); 
    }
}

@keyframes arrowTipPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        filter: drop-shadow(0 0 8px var(--torg-orange-glow)); 
    }
    50% { 
        transform: translateX(-50%) scale(1.1); 
        filter: drop-shadow(0 0 12px var(--torg-orange-glow)); 
    }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

@keyframes destinationGlow {
    0%, 100% { 
        text-shadow: 0 0 6px var(--torg-orange-glow); 
        transform: scale(1); 
    }
    50% { 
        text-shadow: 0 0 10px var(--torg-orange-glow), 0 0 15px var(--torg-orange-glow); 
        transform: scale(1.03); 
    }
}

@keyframes profitTrailMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes moneyParticleFlow {
    0% { 
        transform: translateY(-50%) translateX(-20px) scale(0.8); 
        opacity: 0; 
    }
    20% { 
        opacity: 1; 
        transform: translateY(-50%) translateX(0) scale(1); 
    }
    80% { 
        opacity: 1; 
        transform: translateY(-50%) translateX(20px) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-50%) translateX(40px) scale(0.8); 
    }
}

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

/* Enhanced Glassmorphism Animations */
@keyframes coreGlassmorphismEnhanced {
    0%, 100% { 
        transform: rotateX(10deg) rotateY(10deg) scale(1); 
        box-shadow: 
            0 0 40px var(--torg-orange-glow),
            0 15px 30px rgba(0, 0, 0, 0.4),
            0 0 60px rgba(228, 169, 96, 0.2),
            inset 0 2px 15px rgba(255, 255, 255, 0.1),
            inset 0 0 30px rgba(228, 169, 96, 0.05);
    }
    50% { 
        transform: rotateX(15deg) rotateY(15deg) scale(1.03); 
        box-shadow: 
            0 0 50px var(--torg-orange-glow),
            0 20px 40px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(228, 169, 96, 0.3),
            inset 0 3px 20px rgba(255, 255, 255, 0.15),
            inset 0 0 40px rgba(228, 169, 96, 0.08);
    }
}

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

@keyframes outerRing {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.05) rotate(180deg); 
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - MAXIMUM DEVICE COMPATIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */

@container (max-width: 1200px) {
    .expertise-grid,
    .workflow-grid,
    .resources-grid,
    .technical-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }
    
    .workflow-visual,
    .resources-visual {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .revolutionary-section {
        min-height: auto;
        padding: var(--space-20) var(--space-6);
    }
    
    .workflow-revolutionary-system {
        width: 500px;
        height: 500px;
    }
    
    .information-hub-3d {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-revolutionary-container {
        padding: 0 var(--space-3);
    }
    
    .revolutionary-section {
        padding: var(--space-8) var(--space-4);
        min-height: auto;
    }
    
    .revolutionary-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }
    
    .workflow-revolutionary-system {
        width: 350px;
        height: 350px;
    }
    
    .information-hub-3d {
        width: 300px;
        height: 300px;
    }
    
    .step-circle-3d {
        width: 70px;
        height: 70px;
    }
    
    .resource-satellite {
        width: 70px;
        height: 70px;
    }
    
    .satellite-core {
        width: 70px;
        height: 70px;
    }
    
    .core-glassmorphism {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .revolutionary-section {
        padding: var(--space-6) var(--space-3);
        min-height: auto;
    }
    
    .orange-quantum-line {
        height: 100px;
        width: 6px;
    }
    
    .workflow-revolutionary-system {
        width: 280px;
        height: 280px;
    }
    
    .information-hub-3d {
        width: 250px;
        height: 250px;
    }
    
    .uniqueness-glassmorphism-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-6);
    }
    
    .orange-quantum-line.micro {
        margin-right: 0;
        margin-bottom: var(--space-4);
    }
    
    /* Reduce 3D complexity on mobile for performance */
    .step-circle-3d,
    .core-glassmorphism,
    .technical-process-3d {
        transform: none;
    }
    
    .neural-ring,
    .neural-line,
    .neural-beam {
        animation-duration: 2s;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY & PERFORMANCE OPTIMIZATION
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .revolutionary-section {
        transform: none;
    }
    
    .step-circle-3d,
    .core-glassmorphism,
    .technical-process-3d {
        transform: none;
    }
}

/* Focus States for Accessibility */
.workflow-step-enhanced:focus,
.resource-satellite:focus {
    outline: 3px solid var(--torg-orange);
    outline-offset: 6px;
    transform: scale(1.1) translateZ(20px);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .torg-brand-glow {
        text-shadow: none;
        color: #FFA500;
        font-weight: 900;
    }
    
    .orange-quantum-line {
        background: #FFA500;
        box-shadow: none;
    }
    
    .step-circle-3d,
    .core-glassmorphism {
        border-width: 3px;
        border-color: #FFA500;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT STYLES - PROFESSIONAL PRESENTATION
   ═══════════════════════════════════════════════════════════════════════════ */

@media print {
    .about-revolutionary-container {
        background: white;
        perspective: none;
        transform: none;
    }
    
    .revolutionary-section {
        min-height: auto;
        page-break-inside: avoid;
        border-left: 4px solid #CC8800;
        background: white;
        transform: none;
    }
    
    .revolutionary-title,
    .revolutionary-text {
        color: black;
        text-shadow: none;
    }
    
    .torg-brand-glow {
        color: #CC8800 !important;
        text-shadow: none;
    }
    
    .orange-quantum-line {
        background: #CC8800;
        box-shadow: none;
        transform: none;
    }
    
    .step-circle-3d,
    .core-glassmorphism,
    .technical-process-3d {
        transform: none;
        box-shadow: none;
        backdrop-filter: none;
        background: #f5f5f5;
        border: 2px solid #CC8800;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS - GPU ACCELERATION
   ═══════════════════════════════════════════════════════════════════════════ */

.revolutionary-section,
.step-circle-3d,
.core-glassmorphism,
.technical-process-3d,
.orange-quantum-line {
    will-change: transform;
    backface-visibility: hidden;
}

.cloud-particle,
.neural-ring,
.flow-particle {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Container Queries for Modern Responsive Design */
@container (max-width: 600px) {
    .workflow-revolutionary-system {
        width: 250px;
        height: 250px;
    }
    
    .information-hub-3d {
        width: 220px;
        height: 220px;
    }
}

@container (max-width: 400px) {
    .price-comparison-3d {
        max-width: 280px;
        height: 250px;
    }
    
    .workflow-center-text {
        font-size: 1.5rem;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 100МАП: INVESTMENT METHODOLOGY EXPLANATION
   Professional Architecture • Enhanced Typography • Premium Visual Accent
   ═══════════════════════════════════════════════════════════════════════════ */

.section-map {
    background: 
        radial-gradient(ellipse at center, rgba(228, 169, 96, 0.02) 0%, transparent 60%),
        var(--bg-primary);
    position: relative;
}

.section-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(228, 169, 96, 0.015) 35%,
            transparent 70%);
    pointer-events: none;
    animation: mapSectionAura 25s ease-in-out infinite;
}

.map-explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 70vh;
    padding: var(--space-12) var(--space-20);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.map-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
    padding-right: var(--space-8);
}

.map-explanation-enhanced {
    margin-top: var(--space-6);
}

.map-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.map-accent-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-12);
    position: relative;
    transform-style: preserve-3d;
}

.map-large-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--torg-orange);
    text-shadow: 
        0 0 20px var(--torg-orange-glow),
        0 0 40px var(--torg-orange-glow),
        0 0 60px var(--torg-orange-glow);
    margin-bottom: var(--space-4);
    animation: mapNumberGlow 3s ease-in-out infinite;
    letter-spacing: -0.02em;
    line-height: 1;
    position: relative;
    transform: rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
}

.map-large-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(228, 169, 96, 0.1) 30%,
        transparent 60%);
    border-radius: 12px;
    z-index: -1;
    animation: mapNumberShimmer 4s ease-in-out infinite;
}

.map-definition {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Enhanced Animations for 100МАП Section */
@keyframes mapNumberGlow {
    0%, 100% { 
        text-shadow: 
            0 0 20px var(--torg-orange-glow),
            0 0 40px var(--torg-orange-glow),
            0 0 60px var(--torg-orange-glow);
        transform: rotateY(-5deg) rotateX(2deg) scale(1);
    }
    50% { 
        text-shadow: 
            0 0 30px var(--torg-orange-glow),
            0 0 60px var(--torg-orange-glow),
            0 0 80px var(--torg-orange-glow),
            0 0 100px var(--torg-orange-glow);
        transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    }
}

@keyframes mapNumberShimmer {
    0%, 100% { 
        opacity: 0.1; 
        transform: translateX(-100%); 
    }
    50% { 
        opacity: 0.3; 
        transform: translateX(100%); 
    }
}

@keyframes mapSectionAura {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.02) rotate(1deg); 
    }
}

/* Responsive Design for 100МАП Section */
@media (max-width: 1024px) {
    .map-explanation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-8) var(--space-6);
    }
    
    .map-content {
        text-align: center;
        padding-right: 0;
    }
    
    .map-visual {
        order: -1;
    }
    
    .map-large-number {
        font-size: clamp(2.5rem, 12vw, 4rem);
        transform: rotateY(0deg) rotateX(0deg);
    }
}

@media (max-width: 768px) {
    .map-explanation-grid {
        gap: var(--space-6);
        min-height: auto;
        padding: var(--space-6) var(--space-4);
    }
    
    .map-accent-container {
        padding: var(--space-6);
    }
    
    .map-large-number {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: var(--space-3);
    }
    
    .map-definition {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
}

@media (max-width: 480px) {
    .revolutionary-section {
        padding: var(--space-6) var(--space-3);
        min-height: auto;
    }
    
    .section-map {
        padding: var(--space-6) var(--space-3);
    }
    
    .intro-layout-grid,
    .map-explanation-grid {
        gap: var(--space-4);
        min-height: auto;
        padding: var(--space-4) var(--space-3);
    }
    
    .intro-main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: var(--space-4);
    }
    
    .intro-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    .map-large-number {
        font-size: clamp(1.5rem, 9vw, 2rem);
        margin-bottom: var(--space-2);
    }
    
    .map-definition {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    }
}

/* Performance Optimizations for 100МАП Section */
.map-large-number,
.map-accent-container {
    will-change: transform;
    backface-visibility: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION FIXES - PROFESSIONAL MOBILE EXPERIENCE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Disable complex 3D effects on mobile for performance */
@media (max-width: 768px) {
    .map-large-number {
        transform: none !important;
        animation: none !important;
    }
    
    .map-large-number::before {
        display: none !important;
    }
    
    /* Simplify all 3D transforms on mobile */
    .step-circle-3d,
    .core-glassmorphism,
    .hub-core-3d {
        transform: none !important;
        animation-duration: 0s !important;
    }
    
    /* Optimize spacing for mobile reading */
    .revolutionary-text {
        font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
        line-height: 1.5 !important;
        margin-bottom: var(--space-4) !important;
    }
    
    .revolutionary-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
        line-height: 1.3 !important;
        margin-bottom: var(--space-4) !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .intro-main-title {
        font-size: clamp(1.1rem, 8vw, 1.5rem) !important;
        line-height: 1.2 !important;
    }
    
    .intro-subtitle {
        font-size: clamp(0.85rem, 4.5vw, 0.95rem) !important;
    }
    
    .revolutionary-section {
        padding: var(--space-4) var(--space-2) !important;
    }
    
    .intro-layout-grid,
    .map-explanation-grid {
        padding: var(--space-3) var(--space-2) !important;
        gap: var(--space-3) !important;
    }
    
    .map-large-number {
        font-size: clamp(1.3rem, 10vw, 1.8rem) !important;
    }
}

/* Minimum mobile size (320px) */
@media (max-width: 320px) {
    .intro-main-title {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .intro-subtitle {
        font-size: 0.8rem !important;
    }
    
    .revolutionary-section {
        padding: var(--space-3) var(--space-1) !important;
    }
    
    .intro-layout-grid,
    .map-explanation-grid {
        padding: var(--space-2) var(--space-1) !important;
        gap: var(--space-2) !important;
    }
    
    .map-large-number {
        font-size: 1.2rem !important;
        margin-bottom: var(--space-1) !important;
    }
    
    .map-definition {
        font-size: 0.75rem !important;
    }
}
