/* Современные стили для блоков рынка и юнит-экономики */

/* =============== СОВРЕМЕННАЯ РЫНОЧНАЯ ВИЗУАЛИЗАЦИЯ =============== */

.modern-market-showcase {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(127, 0, 255, 0.05) 100%);
    border-radius: 24px;
    margin: 3rem 0;
    overflow: hidden;
}

.modern-market-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(127, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Рыночная сфера */
.market-sphere-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    min-height: 500px;
}

.market-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-core {
    position: absolute;
    z-index: 10;
    text-align: center;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    animation: spherePulse 3s ease-in-out infinite;
}

@keyframes spherePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4); }
}

.core-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.core-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.core-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

/* Рыночные сегменты */
.market-segments {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.segment-ring {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-arc {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
}

.arc-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: conic-gradient(from 0deg, transparent var(--percentage), #DA70D6 0deg, #7F00FF var(--percentage));
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.segment-info {
    position: absolute;
    bottom: -60px;
    text-align: center;
    z-index: 5;
}

.segment-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 0.25rem;
}

.segment-label {
    font-size: 0.875rem;
    color: #C0B0E0;
}

/* Пульсирующие точки роста */
.growth-points {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.growth-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.growth-point:nth-child(1) {
    top: 20%;
    right: 10%;
}

.growth-point:nth-child(2) {
    top: 10%;
    right: 25%;
}

.growth-point:nth-child(3) {
    bottom: 15%;
    right: 20%;
}

.growth-point:nth-child(4) {
    bottom: 25%;
    right: 5%;
}

.point-pulse {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    border-radius: 50%;
    margin-bottom: 0.5rem;
    animation: pointPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

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

.point-year {
    font-size: 0.75rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.25rem;
}

.point-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #DA70D6;
}

/* Рыночные факторы */
.market-factors {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.factor-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.factor-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.factor-icon {
    font-size: 1.5rem;
}

.factor-text {
    display: flex;
    flex-direction: column;
}

.factor-text strong {
    font-weight: 700;
    color: #EAE0FF;
    font-size: 0.9rem;
}

.factor-text span {
    font-size: 0.75rem;
    color: #C0B0E0;
}

/* Рыночные метрики */
.market-metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.metric-card.featured {
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    color: white;
    border: none;
}

.metric-visual {
    margin-bottom: 1.5rem;
}

.metric-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 0deg, #e5e7eb 0deg, #DA70D6 var(--progress), #e5e7eb var(--progress));
}

.metric-circle.premium {
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.2) 0deg, white var(--progress), rgba(255, 255, 255, 0.2) var(--progress));
}

.metric-circle.warning {
    background: conic-gradient(from 0deg, #e5e7eb 0deg, #DA70D6 var(--progress), #e5e7eb var(--progress));
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.metric-unit {
    font-size: 0.875rem;
    opacity: 0.8;
}

.metric-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-info p {
    color: #C0B0E0;
    font-size: 0.875rem;
}

.metric-card.featured .metric-info h4,
.metric-card.featured .metric-info p {
    color: white;
}

/* Рыночные драйверы */
.market-drivers-modern {
    margin: 4rem 0;
}

.driver-header {
    text-align: center;
    margin-bottom: 3rem;
}

.driver-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.driver-header p {
    color: #C0B0E0;
    font-size: 1.1rem;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.driver-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.driver-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.driver-card.premium {
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    color: white;
    border: none;
}

.driver-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(127, 0, 255, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DA70D6;
}

.driver-card.premium .driver-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.driver-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.driver-content p {
    color: #C0B0E0;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.driver-card.premium .driver-content h4,
.driver-card.premium .driver-content p {
    color: white;
}

.driver-metric {
    font-size: 0.875rem;
    font-weight: 600;
    color: #DA70D6;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.driver-card.premium .driver-metric {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* =============== СОВРЕМЕННАЯ ЮНИТ-ЭКОНОМИКА & TRACTION =============== */

.modern-unit-economics-dashboard {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.08) 0%,
        rgba(200, 162, 200, 0.06) 30%,
        rgba(218, 112, 214, 0.08) 70%,
        rgba(79, 70, 229, 0.06) 100%
    );
    border-radius: 28px;
    margin: 3rem 0;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(127, 0, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modern-unit-economics-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(127, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(218, 112, 214, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Unit Economics Header */
.unit-economics-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
    position: relative;
}

.unit-economics-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(127, 0, 255, 0.5), transparent);
    border-radius: 1px;
}

.unit-economics-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #ffffff 0%, #DA70D6 30%, #7F00FF 70%, #4F46E5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.unit-economics-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    line-height: 1.4;
}

/* Герой-секция с ключевыми метриками - Переделанная в стиле сайта */
.economics-hero-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.08) 0%,
        rgba(218, 112, 214, 0.05) 50%,
        rgba(124, 58, 237, 0.06) 100%
    );
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.12);
}

.hero-metric-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.08) 0%,
        rgba(218, 112, 214, 0.05) 100%
    );
    border: 1px solid rgba(127, 0, 255, 0.15);
    transition: all 0.3s ease;
}

.hero-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(127, 0, 255, 0.25);
}

.hero-metric-card.featured {
    background: linear-gradient(135deg, #7F00FF, #DA70D6);
    color: white;
    border: none;
}

.metric-orb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: conic-gradient(from 0deg, #e5e7eb 0deg, #7F00FF var(--progress), #e5e7eb var(--progress));
    position: relative;
    animation: orbPulse 2s ease-in-out infinite;
}

.hero-metric-card.featured .metric-orb {
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.2) 0deg, white var(--progress), rgba(255, 255, 255, 0.2) var(--progress));
}

.metric-orb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.hero-metric-card.featured .metric-orb::before {
    background: transparent;
}

.orb-value {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 800;
    font-size: 1.8rem;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.orb-label {
    font-size: 0.8rem;
    opacity: 1;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-metric-card.featured .orb-label {
    color: #ffffff;
}

.metric-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    line-height: 1.4;
}

.hero-metric-card.featured .metric-description {
    color: #ffffff;
}

/* Детальная разбивка затрат - Переделанная в стиле сайта */
.cost-breakdown-section {
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.12);
}

.cost-breakdown-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 3rem;
}

.cost-structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 0, 255, 0.12);
}

.cost-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(127, 0, 255, 0.2);
}

.cost-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cost-info {
    flex: 1;
}

.cost-name {
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.cost-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7F00FF;
}

.cost-bar {
    width: 100%;
    height: 8px;
    background: rgba(127, 0, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #7F00FF, #C8A2C8);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.total-cost-display {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.9), rgba(218, 112, 214, 0.9));
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.3);
    max-width: 250px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.total-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-weight: 600;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Модели пользователей - Переделанная в стиле сайта */
.user-models-showcase {
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.12);
}

.models-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 3rem;
}

.models-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.model-card {
    padding: 1.25rem;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.05) 0%,
        rgba(218, 112, 214, 0.03) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(127, 0, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.03) 0%,
        rgba(218, 112, 214, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.model-card:hover::before {
    opacity: 1;
}

.model-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(127, 0, 255, 0.25);
    border-color: rgba(127, 0, 255, 0.2);
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.08) 0%,
        rgba(218, 112, 214, 0.05) 100%
    );
}

.model-card.featured {
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    color: white;
    border-color: transparent;
}

.model-header {
    margin-bottom: 2rem;
}

.model-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.2), rgba(218, 112, 214, 0.12));
    border-radius: 50%;
    border: 1px solid rgba(127, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.model-card:hover .model-icon {
    border-color: rgba(127, 0, 255, 0.5);
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.3), rgba(218, 112, 214, 0.2));
}

.model-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.model-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.model-card.featured .stat-value {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Прогноз роста - Переделанный в стиле сайта */
.growth-projection-modern {
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.12);
}

.projection-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 3rem;
}

.projection-visual {
    position: relative;
    height: 300px;
    margin-bottom: 2rem;
}

.projection-path {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4rem;
}

.path-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.path-node:hover {
    transform: translateY(-8px);
}

.node-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(127, 0, 255, 0.15);
    animation: nodePulse 2s ease-in-out infinite;
}

.path-node.featured .node-dot {
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    box-shadow: 0 4px 20px rgba(218, 112, 214, 0.3);
}

.node-info {
    text-align: center;
}

.node-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 0.25rem;
}

.path-node.featured .node-value {
    color: #DA70D6;
}

.node-label {
    font-size: 0.875rem;
    color: #C0B0E0;
}

.projection-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.08), rgba(218, 112, 214, 0.1));
    border-radius: 16px;
}

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

.summary-label {
    font-size: 0.875rem;
    color: #C0B0E0;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7F00FF;
}

/* Анимации */
@keyframes orbPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(127, 0, 255, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(127, 0, 255, 0.4); }
}

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

/* =============== СОВРЕМЕННАЯ СТРУКТУРА КОМАНДЫ =============== */

.modern-team-structure {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.05) 0%,
        rgba(16, 185, 129, 0.05) 50%,
        rgba(245, 158, 11, 0.05) 100%
    );
    border-radius: 24px;
    margin: 3rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-team-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(127, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* 3D визуализация команды */
.team-3d-visualization {
    position: relative;
    padding: 4rem 2rem;
    perspective: 1000px;
    min-height: 600px;
}

.team-layers {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
}

.team-layer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.team-layer:hover {
    transform: translateZ(20px) scale(1.02);
}

.technical-layer {
    transform: translateZ(20px);
}

.business-layer {
    transform: translateZ(10px);
}

.advisory-layer {
    transform: translateZ(0px);
}

.layer-header {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 10;
}

.layer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.technical-layer .layer-icon {
    background: linear-gradient(135deg, #7F00FF, #7F00FF);
}

.business-layer .layer-icon {
    background: linear-gradient(135deg, #DA70D6, #059669);
}

.advisory-layer .layer-icon {
    background: linear-gradient(135deg, #DA70D6, #d97706);
}

.team-layer:hover .layer-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.layer-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.layer-info p {
    color: #C0B0E0;
    font-size: 0.875rem;
}

.layer-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.6);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.technical-layer .stat {
    color: #7F00FF;
    background: rgba(127, 0, 255, 0.08);
}

.business-layer .stat {
    color: #DA70D6;
    background: rgba(16, 185, 129, 0.1);
}

.advisory-layer .stat {
    color: #DA70D6;
    background: rgba(245, 158, 11, 0.1);
}

.layer-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
}

.member-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(127, 0, 255, 0.15);
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    color: white;
    box-shadow: 0 4px 20px rgba(127, 0, 255, 0.15);
}

.member-info {
    text-align: center;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.member-salary {
    font-size: 0.875rem;
    color: #7F00FF;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-desc {
    font-size: 0.75rem;
    color: #C0B0E0;
}

/* Сводка команды */
.team-summary-3d {
    margin-top: 4rem;
    text-align: center;
}

.summary-card-3d {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.summary-card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.card-3d-face {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.summary-icon {
    font-size: 3rem;
    color: #7F00FF;
    flex-shrink: 0;
}

.summary-content {
    text-align: left;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.summary-text {
    color: #C0B0E0;
    margin-bottom: 1.5rem;
}

.summary-stats {
    display: flex;
    gap: 2rem;
}

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

.total-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7F00FF;
    display: block;
}

.total-stat .stat-label {
    font-size: 0.75rem;
    color: #C0B0E0;
}

/* =============== СОВРЕМЕННАЯ СТРАТЕГИЯ ВЫХОДА =============== */

.modern-exit-strategy {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.05) 0%,
        rgba(127, 0, 255, 0.05) 50%,
        rgba(127, 0, 255, 0.05) 100%
    );
    border-radius: 24px;
    margin: 3rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-exit-strategy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(127, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Интерактивная карта стратегии выхода */
.exit-strategy-map {
    position: relative;
    padding: 4rem 2rem;
    min-height: 500px;
}

.exit-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.exit-path-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.exit-path-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.exit-path-card.featured {
    background: linear-gradient(135deg, #DA70D6, #059669);
    color: white;
    border-color: transparent;
}

.exit-visual {
    position: relative;
    margin-bottom: 2rem;
}

.exit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(127, 0, 255, 0.15);
    transition: all 0.3s ease;
}

.exit-path-card.featured .exit-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.exit-path-card:hover .exit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(127, 0, 255, 0.4);
}

.exit-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.wave {
    position: absolute;
    border: 2px solid rgba(127, 0, 255, 0.15);
    border-radius: 50%;
    animation: wavePulse 2s ease-in-out infinite;
}

.wave:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    width: 120%;
    height: 120%;
    animation-delay: 0.5s;
}

.wave:nth-child(3) {
    width: 140%;
    height: 140%;
    animation-delay: 1s;
}

@keyframes wavePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

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

.exit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 1rem;
}

.exit-path-card.featured .exit-title {
    color: white;
}

.exit-description {
    color: #C0B0E0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-path-card.featured .exit-description {
    color: rgba(255, 255, 255, 0.6);
}

.exit-timeline {
    display: inline-block;
    background: rgba(127, 0, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7F00FF;
}

.exit-path-card.featured .exit-timeline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Сводка стратегии выхода */
.exit-summary-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
}

.summary-card {
    display: inline-block;
}

.summary-icon {
    font-size: 3rem;
    color: #7F00FF;
    margin-bottom: 1.5rem;
}

.summary-content {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.summary-text {
    color: #C0B0E0;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .economics-hero-section {
        grid-template-columns: 1fr;
    }

    .cost-structure-grid {
        grid-template-columns: 1fr;
    }

    .models-comparison {
        grid-template-columns: 1fr;
    }

    .projection-path {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .projection-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .layer-header {
        position: static;
        text-align: center;
        margin-bottom: 2rem;
        transform: none;
    }

    .layer-members {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .summary-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .exit-paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-layers {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-metric-card {
        padding: 1.5rem;
    }

    .cost-breakdown-section,
    .user-models-showcase,
    .growth-projection-modern {
        padding: 2rem;
    }

    .member-card {
        padding: 1rem;
    }

    .exit-path-card {
        padding: 2rem;
    }

    .team-3d-visualization {
        padding: 2rem 1rem;
    }
}

.modern-unit-economics {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.05) 0%, rgba(218, 112, 214, 0.05) 100%);
    border-radius: 24px;
    margin: 3rem 0;
    overflow: hidden;
}

.modern-unit-economics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(127, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Герой-секция */
.economics-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.hero-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(127, 0, 255, 0.15);
}

.hero-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
}

.hero-content p {
    color: #C0B0E0;
    font-size: 1.1rem;
}

/* Визуализация потока токенов */
.token-flow-visualization {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.token-node {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.token-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #7F00FF;
}

.node-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.node-icon {
    font-size: 1.5rem;
}

.node-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #EAE0FF;
}

.node-metrics {
    margin-bottom: 1rem;
}

.metric-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #e5e7eb 0deg, #7F00FF var(--progress), #e5e7eb var(--progress));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.metric-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #EAE0FF;
    position: relative;
    z-index: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: #C0B0E0;
    position: relative;
    z-index: 1;
}

.node-cost {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7F00FF;
}

/* LLM процессор */
.llm-processor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.processor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(127, 0, 255, 0.15);
    animation: processorPulse 2s ease-in-out infinite;
}

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

.processor-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #C0B0E0;
}

.processing-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #7F00FF, #C8A2C8);
}

.arrow-head {
    color: #7F00FF;
    font-size: 1.2rem;
}

/* Общая стоимость */
.total-cost-highlight {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #fbbf24, #DA70D6);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    animation: costPulse 2s ease-in-out infinite;
}

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

.cost-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cost-icon {
    font-size: 1.25rem;
}

.cost-amount {
    font-size: 1.25rem;
    font-weight: 800;
}

.cost-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Сегментация пользователей */
.user-segmentation {
    margin: 4rem 0;
}

.user-segmentation h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 3rem;
}

.user-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.user-type-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.user-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #7F00FF;
}

.user-type-card.featured {
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    color: white;
    border-color: transparent;
}

.user-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-icon {
    font-size: 1.5rem;
}

.user-type-header h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

.user-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(127, 0, 255, 0.08);
}

.user-type-card.featured .metric-row {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.metric-name {
    color: #C0B0E0;
}

.user-type-card.featured .metric-name {
    color: rgba(255, 255, 255, 0.4);
}

.metric-value {
    font-weight: 600;
    color: #EAE0FF;
}

.user-type-card.featured .metric-value {
    color: white;
}

/* Масштабирование затрат */
.scaling-analysis {
    margin: 4rem 0;
}

.scaling-analysis h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 3rem;
}

.scaling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.scaling-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.scaling-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.scaling-item.featured {
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    color: white;
}

.scaling-visual {
    margin-bottom: 1.5rem;
}

.scaling-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #e5e7eb 0deg, #7F00FF var(--progress), #e5e7eb var(--progress));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.scaling-circle.premium {
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.2) 0deg, white var(--progress), rgba(255, 255, 255, 0.2) var(--progress));
}

.scaling-value {
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.scaling-label {
    font-size: 0.875rem;
    color: #C0B0E0;
    margin-bottom: 0.5rem;
}

.scaling-item.featured .scaling-label {
    color: rgba(255, 255, 255, 0.4);
}

.scaling-cost {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7F00FF;
}

.scaling-item.featured .scaling-cost {
    color: white;
}

/* Финансовая модель */
.financial-model {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.model-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
}

.model-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 0.5rem;
}

.toggle-option {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 500;
    color: #C0B0E0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-option.active {
    background: #7F00FF;
    color: white;
}

.revenue-stream {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stream-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.stream-icon {
    font-size: 1.5rem;
}

.stream-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #EAE0FF;
}

.stream-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7F00FF;
}

.stream-flow {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.flow-label {
    display: block;
    font-size: 0.75rem;
    color: #C0B0E0;
    margin-bottom: 0.25rem;
}

.flow-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #EAE0FF;
}

.flow-item.highlight .flow-value {
    color: #DA70D6;
}

/* Ключевые метрики */
.key-metrics-dashboard {
    margin: 4rem 0;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.key-metric {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.key-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.key-metric.featured {
    background: linear-gradient(135deg, #7F00FF, #C8A2C8);
    color: white;
}

.metric-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.metric-subtitle {
    font-size: 0.875rem;
    color: #C0B0E0;
}

.key-metric.featured .metric-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

/* Бесплатный тариф */
.free-tier-analysis {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.free-tier-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tier-icon {
    font-size: 2rem;
}

.tier-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.25rem;
}

.tier-info p {
    color: #C0B0E0;
}

.feature-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-name {
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.25rem;
}

.feature-cost {
    font-size: 0.875rem;
    color: #C0B0E0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .market-sphere {
        width: 300px;
        height: 300px;
    }

    .sphere-core {
        width: 120px;
        height: 120px;
    }

    .core-value {
        font-size: 1.5rem;
    }

    .flow-container {
        flex-direction: column;
        gap: 2rem;
    }

    .token-node {
        padding: 1.5rem;
    }

    .economics-hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .user-types,
    .scaling-grid,
    .metrics-row,
    .drivers-grid {
        grid-template-columns: 1fr;
    }

    .market-factors {
        flex-direction: column;
        align-items: center;
    }

    .factor-badge {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .modern-market-showcase,
    .modern-unit-economics,
    .unit-economics-premium {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .token-flow-visualization,
    .financial-model,
    .free-tier-analysis {
        padding: 2rem;
    }

    .scaling-analysis,
    .user-segmentation {
        margin: 3rem 0;
    }
}

/* =============== СОВРЕМЕННЫЙ БЛОК ЮНИТ-ЭКОНОМИКИ =============== */

.unit-economics-premium {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.06) 0%,
        rgba(127, 0, 255, 0.04) 50%,
        rgba(218, 112, 214, 0.06) 100%
    );
    border-radius: 24px;
    margin: 3rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.unit-economics-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(127, 0, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(218, 112, 214, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Заголовок секции юнит-экономики */
.economics-header-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.header-orb {
    position: relative;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    animation: headerOrbPulse 4s ease-in-out infinite;
}

@keyframes headerOrbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4);
    }
}

.header-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    border-radius: 50%;
    animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.header-content {
    flex: 1;
    max-width: 600px;
}

.economics-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #EAE0FF, #C8A2C8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.economics-subtitle {
    font-size: 1.1rem;
    color: #B4A7D6;
    opacity: 0.9;
    line-height: 1.4;
}

/* Ключевые метрики в стиле героя */
.economics-hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.hero-metric-card-modern {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.08) 0%,
        rgba(218, 112, 214, 0.06) 100%
    );
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(127, 0, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-metric-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(127, 0, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-metric-card-modern:hover::before {
    opacity: 1;
}

.hero-metric-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(127, 0, 255, 0.25);
}

.hero-metric-card-modern.featured {
    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.12) 0%,
        rgba(124, 58, 237, 0.08) 100%
    );
    border: 2px solid rgba(218, 112, 214, 0.3);
    box-shadow: 0 10px 40px rgba(218, 112, 214, 0.2);
}

.metric-orb-modern {
    position: relative;
    margin: 0 auto 1.5rem;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    position: relative;
    z-index: 3;
    text-align: center;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.hero-metric-card-modern:hover .orb-core {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.5);
}

.metric-orb-modern.premium .orb-core {
    background: linear-gradient(135deg, #FF6B9D, #C8A2C8, #7F00FF);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
}

.orb-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.orb-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    background: conic-gradient(from 0deg,
        transparent,
        rgba(124, 58, 237, 0.3),
        transparent
    );
    animation: orbRingRotate 8s linear infinite;
}

@keyframes orbRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.orb-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.metric-description {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #B4A7D6;
    line-height: 1.5;
    opacity: 0.9;
}

/* Структура затрат с современным дизайном */
.cost-structure-modern {
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.12);
    position: relative;
    z-index: 2;
}

.cost-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.cost-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #EAE0FF;
    margin: 0;
}

.cost-total {
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.9), rgba(218, 112, 214, 0.9));
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-label {
    opacity: 0.9;
}

.total-amount {
    font-size: 1.1rem;
    font-weight: 800;
}

.cost-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cost-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 0, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.cost-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.05) 0%,
        rgba(127, 0, 255, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cost-item-modern:hover::before {
    opacity: 1;
}

.cost-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(127, 0, 255, 0.2);
}

.cost-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.cost-icon {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.cost-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.wave {
    position: absolute;
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: wavePulse 2s ease-in-out infinite;
}

.wave:nth-child(1) {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    width: 50px;
    height: 50px;
    animation-delay: 0.5s;
}

.wave:nth-child(3) {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

@keyframes wavePulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.cost-info {
    flex: 1;
}

.cost-name {
    font-weight: 600;
    color: #EAE0FF;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cost-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #7F00FF;
}

.cost-bar {
    width: 100%;
    height: 8px;
    background: rgba(127, 0, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.75rem;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #7F00FF, #C8A2C8);
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.bar-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: barShine 2s ease-in-out infinite;
}

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

/* Сегменты пользователей с премиальным дизайном */
.user-segments-modern {
    position: relative;
    z-index: 2;
}

.segments-header {
    text-align: center;
    margin-bottom: 4rem;
}

.segments-title {
    font-size: 2rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 1rem;
}

.segments-subtitle {
    font-size: 1.1rem;
    color: #B4A7D6;
    opacity: 0.9;
}

.segments-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.segment-card {
    padding: 2.5rem;
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.08) 0%,
        rgba(218, 112, 214, 0.06) 100%
    );
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(127, 0, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.05) 0%,
        rgba(127, 0, 255, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.segment-card:hover::before {
    opacity: 1;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(127, 0, 255, 0.25);
}

.segment-card.featured {
    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.12) 0%,
        rgba(124, 58, 237, 0.08) 100%
    );
    border: 2px solid rgba(218, 112, 214, 0.3);
    box-shadow: 0 10px 40px rgba(218, 112, 214, 0.2);
}

.segment-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B9D, #C8A2C8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.segment-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.segment-icon svg {
    width: 40px;
    height: 40px;
    color: #7F00FF;
}

.segment-card.featured .segment-icon svg {
    color: #DA70D6;
}

.segment-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #EAE0FF;
    margin: 0;
}

.segment-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(127, 0, 255, 0.05);
    border-radius: 8px;
}

.stat-label {
    color: #B4A7D6;
    font-weight: 500;
}

.stat-value {
    color: #7F00FF;
    font-weight: 700;
    font-size: 0.95rem;
}

.segment-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.segment-orb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(124, 58, 237, 0.2),
        rgba(127, 0, 255, 0.4),
        rgba(218, 112, 214, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.orb-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    clip-path: polygon(50% 50%, 50% 0%, var(--usage, 50%) 0%);
}

.segment-card.featured .segment-orb {
    background: conic-gradient(from 0deg,
        rgba(255, 107, 157, 0.3),
        rgba(218, 112, 214, 0.5),
        rgba(124, 58, 237, 0.3)
    );
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.segment-card.featured .orb-fill {
    background: linear-gradient(135deg, #FF6B9D, #C8A2C8, #7F00FF);
}

/* Экономическая эффективность */
.economics-efficiency {
    background: linear-gradient(135deg,
        rgba(127, 0, 255, 0.06) 0%,
        rgba(218, 112, 214, 0.04) 100%
    );
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 0, 255, 0.12);
}

.efficiency-card {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.efficiency-visual {
    position: relative;
    flex-shrink: 0;
}

.efficiency-icon {
    position: relative;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
    animation: efficiencyPulse 4s ease-in-out infinite;
}

@keyframes efficiencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(124, 58, 237, 0.5);
    }
}

.efficiency-content {
    flex: 1;
}

.efficiency-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EAE0FF;
    margin-bottom: 1rem;
}

.efficiency-description {
    color: #B4A7D6;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.efficiency-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.efficiency-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #7F00FF;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #B4A7D6;
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* Адаптивность */
@media (max-width: 768px) {
    .unit-economics-premium {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .economics-header-modern {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .economics-title {
        font-size: 2rem;
    }

    .economics-hero-metrics {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .hero-metric-card-modern {
        padding: 2rem;
    }

    .cost-structure-modern {
        padding: 2rem;
    }

    .cost-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cost-breakdown-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cost-item-modern {
        padding: 1.5rem;
    }

    .segments-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .segment-card {
        padding: 2rem;
    }

    .efficiency-card {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .efficiency-metrics {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .economics-title {
        font-size: 1.8rem;
    }

    .hero-metric-card-modern,
    .segment-card,
    .cost-structure-modern,
    .economics-efficiency {
        padding: 1.5rem;
    }

    .orb-core {
        width: 100px;
        height: 100px;
    }

    .orb-value {
        font-size: 1.3rem;
    }
}
