/* about-page.css */

/* Основные стили */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}



/* ===== Стили в стиле 1win ===== */

.stats-section {
    padding: 80px 0;
}

.stats-grid-1win {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* Левая колонка - онлайн статистика */
.online-stats-card {
    background: var(--bg-wrapper);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    padding: 20px;
}

.stats-right-1win {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-wrapper);
}

.stats-title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-title-with-icon i {
    color: var(--global-green);
    font-size: 1.2rem;
}

.stats-title-with-icon h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.stats-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.revenue-display {
    background: linear-gradient(135deg, rgba(88, 204, 3, 0.1), rgba(78, 175, 8, 0.05));
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.revenue-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.revenue-amount .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--global-green);
}

.revenue-amount .decimal {
    font-size: 2rem;
    font-weight: 700;
    color: var(--global-green);
    opacity: 0.8;
}

.revenue-amount .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--global-green);
    margin-left: 5px;
}

.revenue-label {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Фильтры и табы */
.stats-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    background: var(--bg-wrapper);
    padding: 5px;
    border-radius: 12px;
}

.filter-tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background: var(--global-green);
    color: white;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(88, 204, 3, 0.3);
}

.view-toggle {
    display: flex;
    gap: 8px;
    background: var(--bg-wrapper);
    padding: 5px;
    border-radius: 12px;
}

.view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-color);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--global-green);
    color: white;
    opacity: 1;
    box-shadow: 0 4px 8px rgba(88, 204, 3, 0.3);
}

/* Список статистики */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-wrapper);
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    border-color: var(--global-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.stat-item.online .stat-icon {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
}

.stat-item.trending .stat-icon {
    background: rgba(255, 87, 34, 0.1);
    color: #ff5722;
}

.stat-item.completed .stat-icon {
    background: rgba(88, 204, 3, 0.1);
    color: var(--global-green);
}

.stat-item.new .stat-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.stat-info {
    flex: 1;
}

.stat-name {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-trend {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-trend.up {
    background: rgba(88, 204, 3, 0.1);
    color: var(--global-green);
}

/* Правая колонка - Retention и LTV */
.retention-card,
.apps-card {
    background: var(--bg-wrapper);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    padding: 30px;

}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.info-tooltip {
    position: relative;
    color: var(--global-green);
    cursor: help;
}

.tooltip-text {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 10px;
    background: var(--box-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.retention-description,
.apps-description {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* LTV индикаторы */
.ltv-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ltv-indicator {
    text-align: center;
}

.ltv-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--global-green);
    margin-bottom: 5px;
}

.ltv-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 10px;
}

.ltv-progress {
    height: 6px;
    background: var(--bg-wrapper);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--global-green), #4eaf08);
    border-radius: 3px;
}

/* Блок приложений */
.platform-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.platform-icons i.fa-apple {
    color: #000;
}

[data-theme="dark"] .platform-icons i.fa-apple {
    color: #fff;
}

.platform-icons i.fa-android {
    color: #a4c639;
}

.apps-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

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

.app-stat .stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(88, 204, 3, 0.1);
    color: var(--global-green);
}

.app-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 5px;
}

.app-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.apps-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.app-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.app-link.ios {
    background: #000;
    color: white;
}

[data-theme="dark"] .app-link.ios {
    background: #333;
}

.app-link.android {
    background: #a4c639;
    color: white;
}

.app-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* График LTV */
.ltv-chart-container {
    height: 200px;
    margin-top: 20px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .stats-grid-1win {
        grid-template-columns: 1fr;
    }
    
    .ltv-indicators,
    .apps-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ltv-indicators,
    .apps-stats {
        grid-template-columns: 1fr;
    }
    
    .apps-cta {
        flex-direction: column;
    }
    
    .revenue-amount .amount {
        font-size: 2.5rem;
    }
    
    .revenue-amount .decimal,
    .revenue-amount .currency {
        font-size: 1.5rem;
    }
}
/* Герой секция */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
    min-height: 72vh;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    display: flex;
}

.logo-text {
    color: var(--text-color);
}

.logo-gradient {
    background: linear-gradient(135deg, #58cc03 0%, #4eaf08 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-color);
}

.highlight {
    background: linear-gradient(120deg, rgba(88, 204, 3, 0.2) 0%, rgba(88, 204, 3, 0) 100%);
    padding: 0 10px;
    border-radius: 8px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #58cc03, #4eaf08);
    color: white;
    box-shadow: 0 10px 30px rgba(88, 204, 3, 0.3);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 204, 3, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--color-border);
}

.cta-secondary:hover {
    background: var(--bg-wrapper);
    border-color: var(--global-green);
}

/* Визуализация героя */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--box-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.float-item.coin {
    top: 20%;
    left: 10%;
    color: #FFD700;
    animation-delay: 0s;
}

.float-item.chart {
    top: 60%;
    left: 15%;
    color: #58cc03;
    animation-delay: 1s;
}

.float-item.book {
    top: 30%;
    right: 20%;
    color: #4eaf08;
    animation-delay: 2s;
}

.float-item.users {
    bottom: 20%;
    right: 10%;
    color: #2481cc;
    animation-delay: 3s;
}

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

#heroChart {
    width: 100% !important;
    height: 300px !important;
    margin-top: 100px;
}

/* Секции */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

section.mission-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--global-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #58cc03, #4eaf08);
    margin: 0 auto;
    border-radius: 2px;
}

/* Карточки миссии */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.mission-card {
    background: var(--box-bg);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--global-green);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #58cc03, #4eaf08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mission-icon {
    font-size: 3.5rem;
    color: var(--global-green);
    margin-bottom: 25px;
    display: inline-block;
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mission-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Кольца прогресса */
.progress-ring {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 20px auto 0;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--bg-wrapper);
    stroke-width: 6;
}

.progress-bar {
    fill: none;
    stroke: var(--global-green);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 163.4;
    stroke-dashoffset: 163.4;
    transition: stroke-dashoffset 1.5s ease;
}

.progress-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
}

/* Сетка особенностей */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}


section#features {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}
.feature-item {
    background: var(--box-bg);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: white;
}

.feature-icon.tool {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-icon.community {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.feature-icon.security {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-icon.gaming {
    background: linear-gradient(135deg, #fe4ff5, #7300fe);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Статистика */
.stats-section {
    background: linear-gradient(135deg, rgba(88, 204, 3, 0.05), rgba(78, 175, 8, 0.02));
    border-radius: 30px;
    padding: 80px;
    margin: 100px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--box-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #58cc03, #4eaf08);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-trend.up {
    background: rgba(88, 204, 3, 0.1);
    color: var(--global-green);
}

.stat-progress {
    height: 8px;
    background: var(--bg-wrapper);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}

.stat-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #58cc03, #4eaf08);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.uptime-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.online {
    background: #58cc03;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Радиальный график */
.radial-chart {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.radial-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.radial-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #58cc03, #4eaf08);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.radial-label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* График роста */
.growth-chart {
    background: var(--box-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
}

.growth-chart h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
}

/* Шаги */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.step-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #58cc03, #4eaf08);
    z-index: 0;
}

.step-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #58cc03, #4eaf08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    box-shadow: 0 15px 35px rgba(88, 204, 3, 0.3);
}

.step-content {
    background: var(--bg-wrapper);
    border-radius: 20px;
    padding: 20px;
    flex: 1;
    border: 1px solid var(--color-border);
}

.step-item:nth-child(odd) .step-content {
    margin-top: 40px;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-item:nth-child(even) .step-content {
    text-align: right;
    margin-top: 40px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 5px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-wrapper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--global-green);
}

.step-item:nth-child(odd) .step-icon {
    margin-right: auto;
}

.step-item:nth-child(even) .step-icon {
    margin-left: auto;
}

/* Финальный CTA */
.final-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(88, 204, 3, 0.1), rgba(78, 175, 8, 0.05));
    border-radius: 30px;
    padding: 100px 40px;
    margin-top: 100px;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--global-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s linear infinite;
}

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

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.3;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--global-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.users-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--box-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-text {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #58cc03, #4eaf08);
    color: white;
    padding: 25px 50px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(88, 204, 3, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(88, 204, 3, 0.4);
    gap: 30px;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(10px);
}

.cta-bonus {
    margin-top: 40px;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid rgba(88, 204, 3, 0.3);
}

.bonus-badge i {
    color: #FFD700;
    font-size: 1.2rem;
}

.bonus-badge span {
    font-weight: 600;
    color: var(--text-color);
}

/* Темная тема адаптации */
[data-theme="dark"] .mission-card,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .step-content,
[data-theme="dark"] .growth-chart {
    background: var(--bg-wrapper);
    border-color: var(--color-border);
}
.stats-right,
.stats-left {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

[data-theme="dark"] .stats-section,
[data-theme="dark"] .final-cta {
    background: linear-gradient(135deg, rgba(88, 204, 3, 0.05), rgba(78, 175, 8, 0.02));
}

[data-theme="dark"] .progress-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-trend.up {
    background: rgba(88, 204, 3, 0.2);
}

[data-theme="dark"] .bonus-badge {
    background: rgba(255, 255, 255, 0.05);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-cards,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-cards,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item:nth-child(even) {
        flex-direction: column;
    }
    
    .step-content {
        text-align: center !important;
        margin-top: 20px !important;
    }
    
    .step-icon {
        margin: 20px auto 0 !important;
    }
}