* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #4A90A4;
            --dark-blue: #2C3E50;
            --accent-coral: #FF6B6B;
            --cosmic-dark: #1A1D29;
            --star-white: #F8F9FA;
            --cosmic-purple: #6C63FF;
            --nebula-pink: #FF8A80;
            --soft-blue: rgba(74, 144, 164, 0.1);
            --glass: rgba(248, 249, 250, 0.05);
            --text-secondary: rgba(248, 249, 250, 0.7);

            /* Liquid Glass Effects */
            --shadow-offset: 0;
            --shadow-blur: 15px;
            --shadow-spread: -3px;
            --shadow-color: rgba(74, 144, 164, 0.4);
            --tint-color: 74, 144, 164;
            --tint-opacity: 0.08;
            --frost-blur: 8px;
            --noise-frequency: 0.006;
            --distortion-strength: 25;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--star-white);
            background: linear-gradient(135deg, var(--cosmic-dark) 0%, var(--dark-blue) 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 29, 41, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(74, 144, 164, 0.2);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            font-weight: 700;
            color: var(--star-white);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
        }

        .logo-icon::after {
            content: '⚡';
            position: absolute;
            top: -5px;
            right: -5px;
            font-size: 12px;
            color: var(--accent-coral);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--star-white);
            font-weight: 500;
            font-family: 'Space Mono', monospace;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-coral);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: var(--accent-coral);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            position: relative;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-coral));
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(74, 144, 164, 0.5);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--cosmic-dark), var(--dark-blue));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-links {
            list-style: none;
            padding: 0;
            text-align: center;
        }

        .mobile-menu-links a {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 700;
            color: var(--star-white);
            text-decoration: none;
            display: block;
            padding: 15px 30px;
            border-radius: 15px;
            background: rgba(74, 144, 164, 0.1);
            border: 1px solid rgba(74, 144, 164, 0.3);
            margin: 10px 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        /* Hero Section - от test.html */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--star-white), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            font-weight: 400;
        }

        .problem-highlight {
            background: var(--glass);
            border: 1px solid rgba(74, 144, 164, 0.2);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
            position: relative;
            isolation: isolate;
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
        }

        .problem-highlight::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 16px;
            box-shadow:
                inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
            background-color: rgba(var(--tint-color), var(--tint-opacity));
            pointer-events: none;
        }

        .problem-highlight::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: 16px;
            backdrop-filter: blur(var(--frost-blur));
            filter: url(#glass-distortion);
            isolation: isolate;
            -webkit-backdrop-filter: blur(var(--frost-blur));
            -webkit-filter: url("#glass-distortion");
        }

        .problem-highlight h3,
        .problem-highlight p {
            position: relative;
            z-index: 1;
        }

        .problem-highlight h3 {
            color: var(--accent-coral);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .problem-highlight p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

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

        .btn {
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-coral), var(--nebula-pink));
            color: white;
            box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
        }

        .btn-secondary {
            background: var(--glass);
            color: var(--star-white);
            border: 1px solid rgba(74, 144, 164, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
            isolation: isolate;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 12px;
            box-shadow:
                inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
            background-color: rgba(var(--tint-color), calc(var(--tint-opacity) * 0.8));
            pointer-events: none;
        }

        .btn-secondary::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: 12px;
            backdrop-filter: blur(var(--frost-blur));
            filter: url(#glass-distortion);
            isolation: isolate;
            -webkit-backdrop-filter: blur(var(--frost-blur));
            -webkit-filter: url("#glass-distortion");
        }

        .btn-secondary span {
            position: relative;
            z-index: 1;
        }

        .btn-secondary:hover {
            background: rgba(74, 144, 164, 0.15);
            transform: translateY(-2px);
            --tint-opacity: 0.12;
        }

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

        /* Стили для интерфейса приложения в телефоне */
.phone-mockup {
    position: relative;
    width: 350px;
    height: 600px;
    background: linear-gradient(135deg, var(--cosmic-dark), var(--dark-blue));
    border-radius: 32px;
    padding: 8px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(74, 144, 164, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa; /* Fallback цвет */
}

/* Контейнер для интерфейса приложения */
.app-interface {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

/* Изображение интерфейса приложения */
.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет контейнер, сохраняя пропорции */
    object-position: center top; /* Позиционирует изображение сверху по центру */
    border-radius: 24px;

    /* Добавляем плавную анимацию появления */
    opacity: 0;
    animation: fadeInApp 1s ease-out 0.5s forwards;

    /* Небольшой эффект глубины */
    filter: brightness(1.02) contrast(1.05);
    transition: all 0.3s ease;
}

/* Анимация появления интерфейса */
@keyframes fadeInApp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Эффект при hover на телефон */
.phone-mockup:hover .app-screenshot {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.08);
    box-shadow: 0 4px 20px rgba(74, 144, 164, 0.3);
}

/* Анимация "живого" экрана */
.app-screenshot {
    position: relative;
}

.app-screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    pointer-events: none;
    border-radius: 24px;
}

/* Анимация блика на экране */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .app-screenshot {
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 290px;
        height: 500px;
    }
}

/* Эффект отражения на экране телефона */
.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    border-radius: 24px;
    z-index: 1;
}

        .floating-elements {
            position: absolute;
            width: 75%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: var(--glass);
            border: 1px solid rgba(74, 144, 164, 0.2);
            border-radius: 12px;
            padding: 16px;
            backdrop-filter: blur(10px);
            animation: float 6s ease-in-out infinite;
        }

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

        .floating-element:nth-child(2) {
            top: 60%;
            right: -20%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: -15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            33% { transform: translateY(-20px) translateX(10px); }
            66% { transform: translateY(-10px) translateX(-5px); }
        }

        /* Problem Section - от test.html */
        .problem {
            padding: 120px 0;
            text-align: center;
            background: linear-gradient(
                135deg,
                var(--cosmic-dark) 0%,
                rgba(44, 62, 80, 0.3) 50%,
                rgba(74, 144, 164, 0.1) 100%
            );
            position: relative;
        }

        .problem::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 25% 30%, rgba(74, 144, 164, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--text-secondary);
        }

        .problem-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            background: var(--glass);
            border: 1px solid rgba(74, 144, 164, 0.2);
            border-radius: 20px;
            padding: 40px 24px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, --tint-opacity 0.3s ease;
            position: relative;
            isolation: isolate;
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 20px;
            box-shadow:
                inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
            background-color: rgba(var(--tint-color), var(--tint-opacity));
            pointer-events: none;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: 20px;
            backdrop-filter: blur(var(--frost-blur));
            filter: url(#glass-distortion);
            isolation: isolate;
            -webkit-backdrop-filter: blur(var(--frost-blur));
            -webkit-filter: url("#glass-distortion");
        }

        .stat-card:hover {
            transform: translateY(-8px);
            --tint-opacity: 0.15;
        }

        .stat-number,
        .stat-label {
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-coral);
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        /* Solution Section - от test.html + дизайн от index.html */
        .solution {
            padding: 120px 0;
            background: linear-gradient(
                135deg,
                rgba(74, 144, 164, 0.1) 0%,
                rgba(108, 99, 255, 0.08) 50%,
                rgba(74, 144, 164, 0.05) 100%
            );
            position: relative;
        }

        .solution::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 50% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(74, 144, 164, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .solution .section-header {
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 80px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: var(--glass);
            border: 1px solid rgba(74, 144, 164, 0.2);
            border-radius: 20px;
            padding: 32px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            isolation: isolate;
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 20px;
            box-shadow:
                inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
            background-color: rgba(var(--tint-color), var(--tint-opacity));
            pointer-events: none;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: 20px;
            backdrop-filter: blur(var(--frost-blur));
            filter: url(#glass-distortion);
            isolation: isolate;
            -webkit-backdrop-filter: blur(var(--frost-blur));
            -webkit-filter: url("#glass-distortion");
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-blue);
            --tint-opacity: 0.15;
        }

        .feature-icon,
        .feature-card h3,
        .feature-card p {
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-blue), var(--cosmic-purple));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Cultural Insights Section - новый блок */
        /* Исправленные стили для Cultural Insights секции */
.cultural-insights {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        rgba(74, 144, 164, 0.05) 0%,
        rgba(255, 107, 107, 0.06) 50%,
        rgba(108, 99, 255, 0.05) 100%
    );
    position: relative;
}

.cultural-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 107, 107, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.insights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start; /* Изменено с center на flex-start */
    position: relative;
    z-index: 1;
}

.insights-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.insights-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.insight-card {
    background: var(--glass);
    border: 1px solid rgba(74, 144, 164, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    isolation: isolate;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.insight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 16px;
    box-shadow:
        inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
    background-color: rgba(var(--tint-color), calc(var(--tint-opacity) * 0.6));
    pointer-events: none;
}

.insight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 16px;
    backdrop-filter: blur(var(--frost-blur));
    filter: url(#glass-distortion);
    isolation: isolate;
    -webkit-backdrop-filter: blur(var(--frost-blur));
    -webkit-filter: url("#glass-distortion");
}

.insight-card:hover {
    transform: translateY(-4px);
    --tint-opacity: 0.12;
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.insight-card h4,
.insight-card p {
    position: relative;
    z-index: 1;
}

.insight-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-coral);
}

.insight-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.insights-visual {
    position: relative;
    z-index: 1;
}

/* ИСПРАВЛЕННАЯ СЕКЦИЯ ГРАФИКОВ */
.charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
    /* Добавляем четкую структуру grid */
    grid-template-areas:
        "chart1 chart2"
        "chart3 chart3";
}

.chart-wrapper {
    background: var(--glass);
    border: 1px solid rgba(74, 144, 164, 0.2);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    isolation: isolate;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    /* КЛЮЧЕВЫЕ ИСПРАВЛЕНИЯ */
    height: 320px;
    display: flex;
    flex-direction: column;
    z-index: 2; /* Явно указываем z-index */

    /* Убираем любые абсолютные позиционирования */
    position: relative;
    float: none;
    clear: both;
}

/* Назначаем grid areas */
.chart-wrapper:nth-child(1) {
    grid-area: chart1;
}

.chart-wrapper:nth-child(2) {
    grid-area: chart2;
}

.chart-wrapper:nth-child(3) {
    grid-area: chart3;
    max-width: none; /* Убираем ограничение ширины */
    margin: 0; /* Убираем margin: 0 auto */
}

.chart-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 16px;
    box-shadow:
        inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
    background-color: rgba(var(--tint-color), calc(var(--tint-opacity) * 0.6));
    pointer-events: none;
}

.chart-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 16px;
    backdrop-filter: blur(var(--frost-blur));
    filter: url(#glass-distortion);
    isolation: isolate;
    -webkit-backdrop-filter: blur(var(--frost-blur));
    -webkit-filter: url("#glass-distortion");
}

.chart-wrapper:hover {
    transform: translateY(-4px);
    --tint-opacity: 0.12;
    z-index: 3; /* Поднимаем при hover */
}

.chart-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-coral);
    position: relative;
    z-index: 1;
    text-align: center;
    flex-shrink: 0;
}

.chart-wrapper canvas {
    position: relative !important;
    z-index: 1;
    max-width: 100%;
    flex: 1;
    /* Принудительно фиксируем размеры */
    width: 100% !important;
    max-height: 250px;
}

.market-summary {
    background: var(--glass);
    border: 1px solid rgba(74, 144, 164, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    isolation: isolate;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-top: 20px; /* Добавляем отступ сверху */
}

.market-summary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 20px;
    box-shadow:
        inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
    background-color: rgba(var(--tint-color), var(--tint-opacity));
    pointer-events: none;
}

.market-summary::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 20px;
    backdrop-filter: blur(var(--frost-blur));
    filter: url(#glass-distortion);
    isolation: isolate;
    -webkit-backdrop-filter: blur(var(--frost-blur));
    -webkit-filter: url("#glass-distortion");
}

.market-summary h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--accent-coral);
    position: relative;
    z-index: 1;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

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

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */
@media (max-width: 1024px) {
    .insights-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .charts-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "chart1"
            "chart2"
            "chart3";
        gap: 20px;
    }

    .chart-wrapper {
        height: 280px;
    }

    .chart-wrapper h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .cultural-insights {
        padding: 80px 0;
    }

    .insights-text h2 {
        font-size: 2rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .chart-wrapper {
        height: 250px;
        padding: 16px;
    }

    .chart-wrapper h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .market-summary {
        padding: 20px;
    }

    .market-summary h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 220px;
        padding: 12px;
    }

    .chart-wrapper h3 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .insights-text h2 {
        font-size: 1.6rem;
    }

    .insights-text p {
        font-size: 1rem;
    }
}

        /* Local Creators Section - от test.html */
        .local-creators {
            padding: 120px 0;
            background: linear-gradient(
                135deg,
                rgba(74, 144, 164, 0.05) 0%,
                rgba(255, 107, 107, 0.06) 50%,
                var(--cosmic-dark) 100%
            );
            position: relative;
        }

        .local-creators::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 40%, rgba(255, 107, 107, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .creators-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .creators-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .creators-text p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .creators-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }

        .creator-stat {
            text-align: center;
            padding: 20px;
            background: var(--glass);
            border-radius: 12px;
            border: 1px solid rgba(74, 144, 164, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            isolation: isolate;
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .creator-stat::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 12px;
            box-shadow:
                inset var(--shadow-offset) var(--shadow-offset) var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
            background-color: rgba(var(--tint-color), calc(var(--tint-opacity) * 0.6));
            pointer-events: none;
        }

        .creator-stat::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: 12px;
            backdrop-filter: blur(var(--frost-blur));
            filter: url(#glass-distortion);
            isolation: isolate;
            -webkit-backdrop-filter: blur(var(--frost-blur));
            -webkit-filter: url("#glass-distortion");
        }

        .creator-stat:hover {
            transform: translateY(-4px);
            --tint-opacity: 0.12;
        }

        .creator-stat-number,
        .creator-stat-label {
            position: relative;
            z-index: 1;
        }

        .creator-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-coral);
            display: block;
        }

        .creator-stat-label {
            color: var(--text-secondary);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .creators-visual {
            position: relative;
            z-index: 1;
        }

        .creators-visual .image-div {
            background: var(--glass);
            border-radius: 20px;
            padding: 15px;
            border: 1px solid rgba(74, 144, 164, 0.2);
            text-align: center;
        }

        /* Vision & Goals - от index.html */
        .vision-goals {
            padding: 100px 0;
            position: relative;
        }

        .vision-goals::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 75% 25%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
        }

        .vision-goals-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .vision-block, .goals-block {
            background: rgba(74, 144, 164, 0.1);
            border: 1px solid rgba(74, 144, 164, 0.3);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(20px);
        }

        .vision-block h3, .goals-block h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            color: var(--accent-coral);
            margin-bottom: 20px;
        }

        .vision-block p {
            color: rgba(248, 249, 250, 0.8);
            line-height: 1.6;
        }

        .goals-list {
            list-style: none;
            padding: 0;
        }

        .goals-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(74, 144, 164, 0.2);
            position: relative;
            padding-left: 30px;
            color: rgba(248, 249, 250, 0.8);
        }

        .goals-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-coral);
            font-weight: bold;
        }

        .goals-list li:last-child {
            border-bottom: none;
        }

        /* Early Access Section - от index.html */
        .early-access {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--cosmic-purple));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .early-access::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: backgroundMove 20s linear infinite;
        }

        @keyframes backgroundMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .early-access h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .early-access p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .early-access-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .early-access-form a {
            padding: 15px 30px;
            background: var(--accent-coral);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-family: 'Space Mono', monospace;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .early-access-form a:hover {
            background: #ff5252;
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        /* Final CTA - от index.html */
        .final-cta {
            padding: 100px 0;
            text-align: center;
            position: relative;
            background:
                radial-gradient(ellipse at center, rgba(74, 144, 164, 0.2) 0%, transparent 70%);
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 25% 25%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
        }

        .final-cta h2 {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--star-white);
            text-shadow: 0 0 30px rgba(74, 144, 164, 0.5);
            position: relative;
            z-index: 1;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: rgba(248, 249, 250, 0.8);
            position: relative;
            z-index: 1;
        }

        .app-store-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .app-store-btn {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 10px;
            background: rgba(74, 144, 164, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(74, 144, 164, 0.3);
            backdrop-filter: blur(10px);
        }

        .app-store-btn:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 15px 35px rgba(74, 144, 164, 0.3);
            background: rgba(74, 144, 164, 0.3);
        }

        .app-store-btn img {
            height: 50px;
            border-radius: 8px;
        }

        .final-cta .info-text {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            color: rgba(248, 249, 250, 0.6);
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        /* Footer - от index.html */
        footer {
            background: var(--cosmic-dark);
            color: var(--star-white);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(74, 144, 164, 0.2);
        }

        .footer-content {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            color: rgba(248, 249, 250, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header{
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .insights-content,
            .creators-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .charts-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .chart-wrapper:nth-child(3) {
                grid-column: 1;
            }

            .summary-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .vision-goals-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .problem-stats,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .insights-grid,
            .creators-stats {
                grid-template-columns: 1fr;
            }

            .creators-visual {
                grid-template-columns: 1fr;
            }

            .final-cta h2 {
                font-size: 2rem;
            }

            .early-access-form {
                flex-direction: column;
                align-items: center;
            }

            .app-store-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced glass effect on hover */
        .stat-card:hover::before,
        .feature-card:hover::before,
        .creator-stat:hover::before,
        .insight-card:hover::before {
            background-color: rgba(var(--tint-color), 0.15);
        }

        /* Subtle animation for glass distortion */
        @keyframes glassShimmer {
            0%, 100% {
                filter: url(#glass-distortion) brightness(1);
            }
            50% {
                filter: url(#glass-distortion) brightness(1.05);
            }
        }

        .stat-card:hover::after,
        .feature-card:hover::after {
            animation: glassShimmer 2s ease-in-out infinite;
        }