:root {
    --ios-blue: #007AFF;
    --ios-green: #34C759;
    --ios-red: #FF3B30;
    --ios-orange: #FF9500;
    --ios-purple: #AF52DE;
    --ios-pink: #FF2D55;
    --ios-teal: #5AC8FA;
    --ios-indigo: #5856D6;
    --ios-yellow: #FFCC00;
    --gradient-primary: linear-gradient(135deg, #007AFF, #5856D6, #AF52DE);
    --gradient-hot: linear-gradient(135deg, #FF3B30, #FF9500);
    
    /* Glassmorphism переменные */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f1f3f5;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #8e8e98;
    --border-light: #e9ecef;
    --border-medium: #dee2e6;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    
    --spring-ease: cubic-bezier(0.34, 1.2, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   НОВАЯ HERO СЕКЦИЯ - GLASSMORPHISM
   ============================================ */
.hero-white {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 25px;
    padding: 60px 24px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.05) 0%,
        rgba(88, 86, 214, 0.05) 25%,
        rgba(175, 82, 222, 0.05) 50%,
        rgba(255, 45, 85, 0.05) 75%,
        rgba(255, 149, 0, 0.05) 100%
    );
}

/* Анимированные фоновые круги */
.floating-circles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: floatChaotic var(--duration, 20s) ease-in-out infinite;
}

/* Синий круг */
.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.4), rgba(0, 122, 255, 0.1));
    top: -100px;
    left: -100px;
    --duration: 25s;
    animation-delay: 0s;
}

/* Фиолетовый круг */
.circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.35), rgba(175, 82, 222, 0.08));
    bottom: -150px;
    right: -150px;
    --duration: 30s;
    animation-delay: 2s;
}

/* Розовый круг */
.circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.3), rgba(255, 45, 85, 0.05));
    top: 30%;
    right: 20%;
    --duration: 22s;
    animation-delay: 4s;
}

/* Оранжевый круг */
.circle-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.3), rgba(255, 149, 0, 0.05));
    bottom: 20%;
    left: -100px;
    --duration: 28s;
    animation-delay: 1s;
}

/* Голубой круг */
.circle-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.35), rgba(90, 200, 250, 0.08));
    top: 60%;
    right: -50px;
    --duration: 24s;
    animation-delay: 3s;
}

/* Зеленый круг */
.circle-6 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.25), rgba(52, 199, 89, 0.05));
    top: -80px;
    right: 30%;
    --duration: 26s;
    animation-delay: 5s;
}

/* Желтый круг */
.circle-7 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.25), rgba(255, 204, 0, 0.05));
    bottom: 10%;
    left: 20%;
    --duration: 32s;
    animation-delay: 2.5s;
}

/* Индиго круг */
.circle-8 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.3), rgba(88, 86, 214, 0.05));
    top: 40%;
    left: 30%;
    --duration: 27s;
    animation-delay: 3.5s;
}

/* Анимация хаотичного движения */
@keyframes floatChaotic {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(8%, -5%) scale(1.05);
    }
    50% {
        transform: translate(-3%, 10%) scale(0.95);
    }
    75% {
        transform: translate(-8%, -8%) scale(1.02);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Стеклянный контейнер для контента */
.hero-glass-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    animation: fadeInUp 0.8s var(--spring-ease);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшенные бейджи */
.hero-badge-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.rating-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Заголовок */
.hero-white-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a2e, #4a4a5a, #007AFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-line {
    display: block;
}

.gradient-line {
    background: linear-gradient(135deg, #007AFF, #5856D6, #AF52DE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Описание */
.hero-white-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Кнопки */
.hero-white-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-white-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s var(--spring-ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.btn-white-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.btn-white-secondary {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s var(--spring-ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-white-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 1);
    border-color: var(--ios-blue);
    color: var(--ios-blue);
}

/* Статистика */
.hero-white-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.stat-trend {
    font-size: 11px;
    color: var(--ios-green);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* ============================================
   ОСТАЛЬНЫЕ СЕКЦИИ (БЕЗ ИЗМЕНЕНИЙ)
   ============================================ */
section {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
    position: relative;
    background: transparent;
    overflow: visible;
}

section:last-child {
    margin-bottom: 0;
}

/* Контейнеры скролла */
.categories-scroll,
.hot-scroll,
.popular-scroll-white,
.new-scroll-white,
.discount-scroll-white,
.developers-scroll-white,
.testimonials-scroll-white {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 8px;
    margin: -10px -4px;
    position: relative;
}

/* Скрываем скроллбар визуально */
.categories-scroll::-webkit-scrollbar,
.hot-scroll::-webkit-scrollbar,
.popular-scroll-white::-webkit-scrollbar,
.new-scroll-white::-webkit-scrollbar,
.discount-scroll-white::-webkit-scrollbar,
.developers-scroll-white::-webkit-scrollbar,
.testimonials-scroll-white::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

.categories-scroll::-webkit-scrollbar-track,
.hot-scroll::-webkit-scrollbar-track,
.popular-scroll-white::-webkit-scrollbar-track,
.new-scroll-white::-webkit-scrollbar-track,
.discount-scroll-white::-webkit-scrollbar-track,
.developers-scroll-white::-webkit-scrollbar-track,
.testimonials-scroll-white::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: 4px;
}

.categories-scroll::-webkit-scrollbar-thumb,
.hot-scroll::-webkit-scrollbar-thumb,
.popular-scroll-white::-webkit-scrollbar-thumb,
.new-scroll-white::-webkit-scrollbar-thumb,
.discount-scroll-white::-webkit-scrollbar-thumb,
.developers-scroll-white::-webkit-scrollbar-thumb,
.testimonials-scroll-white::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* Треки */
.categories-track,
.hot-track,
.popular-track-white,
.new-track-white,
.discount-track-white,
.developers-track-white,
.testimonials-track-white {
    display: flex;
    gap: 24px;
    min-width: min-content;
    padding: 8px 4px;
}

/* Все карточки */
.category-card,
.hot-card-white,
.popular-card-white,
.new-card-white,
.discount-card-white,
.developer-card-white,
.testimonial-card-white,
.advantage-card-white {
    background: var(--bg-white);
    transition: all 0.3s var(--spring-ease);
    position: relative;
    box-shadow: var(--shadow-md);
    overflow: visible !important;
}

.category-card:hover,
.hot-card-white:hover,
.popular-card-white:hover,
.new-card-white:hover,
.discount-card-white:hover,
.developer-card-white:hover,
.testimonial-card-white:hover,
.advantage-card-white:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    z-index: 100;
}

/* ============================================
   ШАПКИ СЕКЦИЙ
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header.center {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.header-left {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,122,255,0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ios-blue);
    margin-bottom: 12px;
}

.section-badge.hot {
    background: rgba(255,59,48,0.1);
    color: var(--ios-red);
}

.section-badge.new {
    background: rgba(52,199,89,0.1);
    color: var(--ios-green);
}

.section-badge.discount {
    background: rgba(255,149,0,0.1);
    color: var(--ios-orange);
}

.section-title-modern {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.link-arrow {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover {
    color: var(--ios-blue);
    gap: 10px;
}

.scroll-indicators {
    display: flex;
    gap: 8px;
}

.scroll-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.scroll-indicator:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   КАТЕГОРИИ
   ============================================ */
.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px 12px 16px;
    border-radius: 60px;
    text-decoration: none;
    color: #1A1A2E;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--ios-blue);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 40px;
    color: #fff;
    background: linear-gradient(135deg, #fff, #007AFF, #5856D6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-info p {
    font-size: 12px;
    color: var(--text-light);
}

.category-arrow {
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    color: var(--ios-blue);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ============================================
   ГОРЯЧИЕ ПРЕДЛОЖЕНИЯ
   ============================================ */
.hot-card-white {
    flex: 0 0 300px;
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
}

.hot-card-white.top-tier {
    border-color: rgba(255,149,0,0.3);
}

.hot-ribbon {
    position: absolute;
    top: 12px;
    left: -35px;
    background: var(--gradient-hot);
    padding: 4px 40px;
    transform: rotate(-45deg);
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hot-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    border-radius: 24px 24px 0 0;
}

.hot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hot-card-white:hover .hot-card-image img {
    transform: scale(1.1);
}

.hot-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.hot-card-white:hover .hot-card-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ios-blue);
    transition: all 0.2s;
}

.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.hot-card-content {
    padding: 20px;
}

.hot-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    color: var(--text-dark);
}

.hot-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
}

.developer {
    color: var(--text-light);
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating .stars {
    color: var(--ios-yellow);
}

.hot-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--ios-blue);
}

.sales {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   ПОПУЛЯРНЫЕ ТОВАРЫ
   ============================================ */
.popular-card-white {
    flex: 0 0 280px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
}

.popular-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1a1a2e;
    z-index: 2;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.popular-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.popular-card-white:hover .popular-image img {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--gradient-primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-sm);
}

.popular-info {
    padding: 16px;
}

.popular-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    color: var(--text-dark);
}

.popular-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars i {
    color: var(--ios-yellow);
    font-size: 11px;
}

.popular-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--ios-blue);
}

.sales-count {
    font-size: 11px;
    font-weight: normal;
    color: var(--text-light);
}

/* ============================================
   НОВЫЕ ПОСТУПЛЕНИЯ
   ============================================ */
.new-card-white {
    flex: 0 0 260px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
}

.new-card-white.fresh {
    border-color: rgba(52,199,89,0.3);
}

.fresh-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ios-green);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.new-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.new-card-white:hover .new-overlay {
    opacity: 1;
}

.new-content {
    padding: 16px;
}

.new-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    color: var(--text-dark);
}

.new-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.new-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--ios-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-sales {
    font-size: 10px;
    color: var(--ios-green);
    font-weight: normal;
}

/* ============================================
   FLASH SALE
   ============================================ */
.flash-sale-white {
    background: linear-gradient(135deg, #f0f4ff, #f8f9fa);
    border-radius: 32px;
    padding: 0;
    margin: 40px auto 60px;
    overflow: visible;
}

.flash-sale-container-white {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    flex-wrap: wrap;
    gap: 40px;
}

.flash-sale-left {
    flex: 1;
    min-width: 280px;
}

.flash-sale-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-hot);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.flash-sale-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.highlight {
    color: var(--ios-orange);
    font-size: 48px;
}

.flash-sale-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.flash-timer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.timer-unit {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 12px 20px;
    text-align: center;
    min-width: 80px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.timer-value {
    font-size: 36px;
    font-weight: 800;
    font-family: monospace;
    display: block;
    color: var(--text-dark);
}

.timer-label {
    font-size: 11px;
    color: var(--text-light);
}

.timer-sep {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
}

.flash-sale-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-hot);
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.flash-sale-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,59,48,0.3);
}

.flash-sale-right {
    flex: 1;
    min-width: 280px;
}

.flash-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.flash-product-mini {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--spring-ease);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.flash-product-mini:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.flash-product-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flash-discount {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--ios-red);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   СКИДКИ
   ============================================ */
.discount-card-white {
    flex: 0 0 300px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(255,59,48,0.2);
    position: relative;
}

.discount-card-white:hover {
    border-color: var(--ios-orange);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ios-red);
    padding: 6px 12px;
    border-radius: 30px;
    z-index: 2;
    color: white;
    box-shadow: var(--shadow-sm);
}

.discount-percent {
    font-size: 14px;
    font-weight: 800;
}

.discount-image {
    height: 160px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.discount-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.discount-card-white:hover .discount-image img {
    transform: scale(1.08);
}

.discount-info {
    padding: 16px;
}

.discount-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    color: var(--text-dark);
}

.discount-developer {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.discount-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-light);
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--ios-orange);
}

.discount-save {
    font-size: 11px;
    color: var(--ios-green);
}

/* ============================================
   РАЗРАБОТЧИКИ
   ============================================ */
.developer-card-white {
    flex: 0 0 340px;
    border-radius: 28px;
    padding: 24px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
}

.developer-rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1a1a2e;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.developer-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.developer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.developer-online-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--ios-green);
    border-radius: 50%;
    border: 2px solid var(--bg-white);
}

.developer-info {
    text-align: center;
}

.developer-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.developer-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.developer-earnings {
    font-size: 14px;
    font-weight: 600;
    color: var(--ios-green);
    margin-bottom: 16px;
}

.developer-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.progress-label {
    font-size: 11px;
    color: var(--text-light);
}

.developer-follow-btn {
    width: 100%;
    padding: 10px;
    background: var(--bg-gray);
    border: none;
    border-radius: 40px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.developer-follow-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.developer-follow-btn.subscribed {
    background: rgba(52,199,89,0.15);
    color: var(--ios-green);
}

/* ============================================
   ОТЗЫВЫ
   ============================================ */
.testimonials-white {
    background: var(--bg-light);
    border-radius: 32px;
    padding: 48px 24px;
    margin: 40px auto 60px;
    overflow: visible;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0;
    color: var(--text-dark);
}

.testimonial-card-white {
    flex: 0 0 380px;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid var(--border-light);
}

.testimonial-quote-icon {
    font-size: 48px;
    font-family: serif;
    color: var(--ios-blue);
    opacity: 0.4;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    overflow: hidden;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-stars {
    color: var(--ios-yellow);
    font-size: 12px;
}

.testimonial-product {
    font-size: 12px;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.testimonial-product a {
    color: var(--text-medium);
    text-decoration: none;
}

.testimonial-product a:hover {
    color: var(--ios-blue);
}

/* ============================================
   ПРЕИМУЩЕСТВА
   ============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.advantage-card-white {
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-md);
}

.advantage-card-white h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.advantage-card-white p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantage-stats {
    font-size: 12px;
    font-weight: 600;
    color: var(--ios-blue);
    padding: 8px 16px;
    background: rgba(0,122,255,0.1);
    border-radius: 40px;
    display: inline-block;
}

/* ============================================
   CTA СЕКЦИЯ
   ============================================ */
.cta-white {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 32px;
    overflow: visible;
    margin: 40px auto 60px;
    position: relative;
}

.cta-white-content {
    text-align: center;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.cta-white-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.cta-white-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-white-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-white-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    display: block;
    color: white;
}

.cta-stat .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.cta-white-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary-white {
    padding: 14px 32px;
    background: white;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ios-blue);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.cta-btn-primary-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-btn-secondary-white {
    padding: 14px 32px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-secondary-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.cta-floating-white {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-floating-white .particle {
    position: absolute;
    font-size: 20px;
    opacity: 0.15;
    animation: floatParticle 10s linear infinite;
}

.particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { top: 70%; right: 10%; animation-delay: 2s; }
.particle:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }
.particle:nth-child(4) { top: 40%; right: 20%; animation-delay: 1s; }
.particle:nth-child(5) { bottom: 60%; left: 30%; animation-delay: 3s; }
.particle:nth-child(6) { top: 80%; right: 35%; animation-delay: 5s; }

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(360deg); }
}

/* ============================================
   ПАРТНЕРЫ
   ============================================ */
.partners-white {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin: 0 auto 60px;
    overflow: visible;
}

.partners-scroll-white {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.partners-scroll-white::-webkit-scrollbar {
    display: none;
}

.partners-track-white {
    display: flex;
    gap: 48px;
    min-width: min-content;
    animation: scrollPartners 20s linear infinite;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-white:hover .partners-track-white {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 auto;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s;
    white-space: nowrap;
}

.partner-item:hover {
    color: var(--ios-blue);
    transform: translateY(-2px);
}

/* ============================================
   МОДАЛЬНЫЕ ОКНА
   ============================================ */
.quick-view-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.quick-view-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal-container {
    background: var(--bg-white);
    border-radius: 32px;
    max-width: 900px;
    width: 90%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.quick-view-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.quick-view-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.2s;
}

.quick-view-close:hover {
    transform: scale(1.1);
    color: var(--ios-red);
}

.quick-view-modal-body {
    padding: 24px;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.quick-view-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.quick-view-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.quick-view-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--ios-blue);
    margin-bottom: 16px;
}

.quick-view-meta {
    display: flex;
    gap: 20px;
    margin: 16px 0;
    font-size: 13px;
    color: var(--text-light);
}

.quick-view-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

.btn-outline {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 40px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--ios-blue);
    color: var(--ios-blue);
    transform: translateY(-2px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-gray);
    border-top-color: var(--ios-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TOAST УВЕДОМЛЕНИЯ
   ============================================ */
.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    color: white;
    padding: 12px 24px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    transition: transform 0.4s var(--spring-ease);
    white-space: nowrap;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
}

.custom-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */
@media (max-width: 1024px) {
    .hero-white-title { font-size: 48px; }
    .section-title-modern { font-size: 28px; }
    .flash-sale-left h2 { font-size: 32px; }
    .testimonial-card-white { flex: 0 0 340px; }
    
    .circle-1, .circle-2, .circle-3, .circle-4,
    .circle-5, .circle-6, .circle-7, .circle-8 {
        transform: scale(0.7);
    }
}

@media (max-width: 768px) {
    section {
        padding: 0 16px;
        margin-bottom: 40px;
    }
    
    .hero-white {
        padding: 40px 16px 60px;
    }
    
    .hero-glass-container {
        padding: 32px 24px;
    }
    
    .hero-white-title { font-size: 36px; }
    .hero-white-stats { gap: 24px; padding: 20px; border-radius: 40px; }
    .stat-value { font-size: 24px; }
    .stat-divider { height: 40px; }
    .section-title-modern { font-size: 24px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .header-right { width: 100%; justify-content: space-between; }
    .flash-sale-container-white { padding: 32px; flex-direction: column; text-align: center; }
    .flash-timer { justify-content: center; }
    .flash-products { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .developer-card-white { flex: 0 0 300px; }
    .testimonial-card-white { flex: 0 0 300px; }
    .quick-view-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .cta-white-content { padding: 40px 24px; }
    .cta-white-content h2 { font-size: 28px; }
    .cta-white-stats { gap: 24px; }
    .scroll-indicators { display: none; }
    
    /* Адаптация кругов на мобильных */
    .circle-1, .circle-2, .circle-3, .circle-4,
    .circle-5, .circle-6, .circle-7, .circle-8 {
        transform: scale(0.5);
        filter: blur(40px);
    }
}

@media (max-width: 480px) {
    .hero-white-title { font-size: 28px; }
    .hero-white-actions { flex-direction: column; align-items: center; }
    .btn-white-primary, .btn-white-secondary { width: 100%; justify-content: center; }
    .hero-white-stats { flex-direction: column; align-items: center; gap: 16px; }
    .stat-divider { display: none; }
    .category-card { flex: 0 0 200px; }
    .hot-card-white { flex: 0 0 260px; }
    .popular-card-white { flex: 0 0 240px; }
    .new-card-white { flex: 0 0 220px; }
    .discount-card-white { flex: 0 0 260px; }
    .developer-card-white { flex: 0 0 280px; }
    .flash-products { grid-template-columns: repeat(2, 1fr); }
    .timer-unit { min-width: 60px; padding: 8px 12px; }
    .timer-value { font-size: 24px; }
}

/* Стили для вертикального скролла страницы */
body {
    overflow-y: auto;
    scrollbar-width: thin;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* ============================================
   УНИКАЛЬНЫЕ СТАТИСТИЧЕСКИЕ КАРТОЧКИ - ВАРИАНТ 2
   Стеклянные карточки с анимированными границами
   ============================================ */
.stats-glass-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.glass-stat-card {
    flex: 1;
    min-width: 220px;
    position: relative;
    background: rgb(255 255 255 / 18%);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--spring-ease);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

/* Анимированная градиентная граница */
.glass-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-stat-card:hover::before {
    opacity: 1;
}

.glass-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Разные градиенты для каждого блока */
.stat-card-products {
    --gradient-border: linear-gradient(135deg, #007AFF, #5AC8FA, #007AFF);
}

.stat-card-developers {
    --gradient-border: linear-gradient(135deg, #AF52DE, #5856D6, #AF52DE);
}

.stat-card-payments {
    --gradient-border: linear-gradient(135deg, #34C759, #5AC8FA, #34C759);
}

/* Фоновые частицы */
.stat-particle {
    position: absolute;
    font-size: 64px;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
    transition: all 0.4s var(--spring-ease);
    pointer-events: none;
}

.glass-stat-card:hover .stat-particle {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.15;
}

/* Вторая частица для разных углов */
.stat-particle-second {
    position: absolute;
    font-size: 48px;
    opacity: 0.06;
    top: -20px;
    left: -20px;
    transition: all 0.4s var(--spring-ease);
    pointer-events: none;
}

.glass-stat-card:hover .stat-particle-second {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.1;
}

/* Иконка карточки */
.stat-icon-glass {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s var(--spring-ease);
    position: relative;
    z-index: 2;
}

.glass-stat-card:hover .stat-icon-glass {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

/* Число */
.stat-number-glass {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #485dde, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

/* Метка */
.stat-label-glass {
    font-size: 15px;
    font-weight: 500;
    color: rgb(73 73 73 / 90%);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

/* Тренд */
.stat-trend-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(5px);
    color: #000000;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.glass-stat-card:hover .stat-trend-glass {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Анимация появления */
@keyframes fadeInUpGlass {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-stat-card {
    animation: fadeInUpGlass 0.6s var(--spring-ease) forwards;
    opacity: 0;
}

.stat-card-products {
    animation-delay: 0.1s;
}

.stat-card-developers {
    animation-delay: 0.2s;
}

.stat-card-payments {
    animation-delay: 0.3s;
}

/* Дополнительный эффект свечения при ховере */
.glass-stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.glass-stat-card:hover::after {
    opacity: 1;
}

/* Специальные стили для иконок в каждом блоке */
.stat-card-products .stat-icon-glass {
    background: linear-gradient(135deg, rgba(0,122,255,0.2), rgba(90,200,250,0.1));
    box-shadow: 0 4px 15px rgba(0,122,255,0.1);
}

.stat-card-developers .stat-icon-glass {
    background: linear-gradient(135deg, rgba(175,82,222,0.2), rgba(88,86,214,0.1));
    box-shadow: 0 4px 15px rgba(175,82,222,0.1);
}

.stat-card-payments .stat-icon-glass {
    background: linear-gradient(135deg, rgba(52,199,89,0.2), rgba(90,200,250,0.1));
    box-shadow: 0 4px 15px rgba(52,199,89,0.1);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .stats-glass-container {
        gap: 20px;
    }
    
    .glass-stat-card {
        min-width: 180px;
        padding: 24px 16px;
    }
    
    .stat-number-glass {
        font-size: 36px;
    }
    
    .stat-icon-glass {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .stat-particle {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .stats-glass-container {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .glass-stat-card {
        min-width: auto;
        padding: 20px 16px;
    }
    
    .stat-number-glass {
        font-size: 32px;
    }
    
    .stat-icon-glass {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .stat-particle {
        font-size: 40px;
        bottom: -15px;
        right: -15px;
    }
    
    .stat-particle-second {
        font-size: 32px;
        top: -15px;
        left: -15px;
    }
}

@media (max-width: 480px) {
    .glass-stat-card {
        padding: 16px 12px;
    }
    
    .stat-number-glass {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .stat-label-glass {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .stat-trend-glass {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* ============================================
   УНИКАЛЬНЫЕ СТАТИСТИЧЕСКИЕ КАРТОЧКИ - ВАРИАНТ 2
   Стеклянные карточки с анимированными границами
   ============================================ */
.stats-glass-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

/* Десктопная версия - обычное отображение */
@media (min-width: 769px) {
    .stats-glass-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .glass-stat-card {
        flex: 1;
        min-width: 220px;
    }
}

/* Мобильная версия - горизонтальный скролл */
@media (max-width: 768px) {
    .stats-glass-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        justify-content: flex-start;
        gap: 16px;
        padding: 20px 16px;
        margin: 32px -16px 0 -16px;
        scrollbar-width: none; /* Скрываем скроллбар для Firefox */
        -ms-overflow-style: none; /* Скрываем скроллбар для IE/Edge */
        cursor: grab;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Скрываем скроллбар для Chrome/Safari */
    .stats-glass-container::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    
    .stats-glass-container:active {
        cursor: grabbing;
    }
    
    .glass-stat-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
        margin: 0;
        padding: 20px 16px;
    }
    
    /* Индикатор скролла (декоративные точки) */
    .stats-scroll-indicator {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        padding: 8px 0;
    }
    
    .stats-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .stats-dot.active {
        width: 20px;
        border-radius: 3px;
        background: var(--ios-blue);
    }
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 1024px) {
    .stats-glass-container {
        gap: 20px;
    }
    
    .glass-stat-card {
        min-width: 180px;
        padding: 24px 16px;
    }
    
    .stat-number-glass {
        font-size: 36px;
    }
    
    .stat-icon-glass {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .stat-particle {
        font-size: 48px;
    }
}

/* Остальные стили для карточек остаются без изменений */
.glass-stat-card {
    flex: 1;
    min-width: 220px;
    position: relative;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--spring-ease);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

/* Анимированная градиентная граница */
.glass-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-stat-card:hover::before {
    opacity: 1;
}

.glass-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Разные градиенты для каждого блока */
.stat-card-products {
    --gradient-border: linear-gradient(135deg, #007AFF, #5AC8FA, #007AFF);
}

.stat-card-developers {
    --gradient-border: linear-gradient(135deg, #AF52DE, #5856D6, #AF52DE);
}

.stat-card-payments {
    --gradient-border: linear-gradient(135deg, #34C759, #5AC8FA, #34C759);
}

/* Фоновые частицы */
.stat-particle {
    position: absolute;
    font-size: 64px;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
    transition: all 0.4s var(--spring-ease);
    pointer-events: none;
}

.glass-stat-card:hover .stat-particle {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.15;
}

/* Вторая частица для разных углов */
.stat-particle-second {
    position: absolute;
    font-size: 48px;
    opacity: 0.06;
    top: -20px;
    left: -20px;
    transition: all 0.4s var(--spring-ease);
    pointer-events: none;
}

.glass-stat-card:hover .stat-particle-second {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.1;
}

/* Иконка карточки */
.stat-icon-glass {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s var(--spring-ease);
    position: relative;
    z-index: 2;
}

.glass-stat-card:hover .stat-icon-glass {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

/* Число */
.stat-number-glass {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #485dde, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

/* Метка */
.stat-label-glass {
    font-size: 15px;
    font-weight: 500;
    color: rgba(73, 73, 73, 0.9);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

/* Тренд */
.stat-trend-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(5px);
    color: #000000;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.glass-stat-card:hover .stat-trend-glass {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Анимация появления */
@keyframes fadeInUpGlass {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-stat-card {
    animation: fadeInUpGlass 0.6s var(--spring-ease) forwards;
    opacity: 0;
}

.stat-card-products {
    animation-delay: 0.1s;
}

.stat-card-developers {
    animation-delay: 0.2s;
}

.stat-card-payments {
    animation-delay: 0.3s;
}

/* Дополнительный эффект свечения при ховере */
.glass-stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.glass-stat-card:hover::after {
    opacity: 1;
}

/* Специальные стили для иконок в каждом блоке */
.stat-card-products .stat-icon-glass {
    background: linear-gradient(135deg, rgba(0,122,255,0.2), rgba(90,200,250,0.1));
    box-shadow: 0 4px 15px rgba(0,122,255,0.1);
}

.stat-card-developers .stat-icon-glass {
    background: linear-gradient(135deg, rgba(175,82,222,0.2), rgba(88,86,214,0.1));
    box-shadow: 0 4px 15px rgba(175,82,222,0.1);
}

.stat-card-payments .stat-icon-glass {
    background: linear-gradient(135deg, rgba(52,199,89,0.2), rgba(90,200,250,0.1));
    box-shadow: 0 4px 15px rgba(52,199,89,0.1);
}

/* Адаптивность для десктопа */
@media (min-width: 769px) and (max-width: 1024px) {
    .stats-glass-container {
        gap: 20px;
    }
    
    .glass-stat-card {
        min-width: 180px;
        padding: 24px 16px;
    }
    
    .stat-number-glass {
        font-size: 36px;
    }
    
    .stat-icon-glass {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .stat-particle {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .glass-stat-card {
        padding: 16px 12px;
    }
    
    .stat-number-glass {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .stat-label-glass {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .stat-trend-glass {
        font-size: 11px;
        padding: 4px 12px;
    }
}