/* ===== ОСНОВНЫЕ ПЕРЕМЕННЫЕ ===== */
:root {
    /* Основные цвета */
    --primary-color: #6366f1;        /* Индиго */
    --secondary-color: #f59e0b;      /* Янтарный */
    --accent-color: #10b981;         /* Изумрудный */
    --danger-color: #ef4444;         /* Красный */

    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Тени */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-game: 0 8px 32px rgba(99, 102, 241, 0.3);

    /* Шрифты */
    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Анимации */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* ===== ХЕДЕР ===== */
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-md);
}

/* Логотип */
.logo-container {
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.logo-container:hover::before {
    opacity: 0.1;
    transform: scale(1.1);
}

.brand-name {
    font-weight: var(--font-weight-extrabold);
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: var(--font-weight-normal);
}

/* Навигация */
.nav-link {
    font-weight: var(--font-weight-semibold);
    color: #374151 !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Кнопка скачивания */
.btn-download {
    background: var(--gradient-primary);
    border: none;
    font-weight: var(--font-weight-semibold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-game);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-download:hover::before {
    left: 100%;
}

/* ===== ИГРОВЫЕ ЭЛЕМЕНТЫ ===== */
.game-element {
    position: relative;
    display: inline-block;
}

.game-element::before {
    content: '🎮';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-normal);
}

.game-element:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-10px) scale(1.1); }
    60% { transform: translateY(-5px) scale(1.05); }
}

/* ===== КНОПКИ ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-game);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

/* ===== ФУТЕР ===== */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

footer .btn-outline-light {
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-normal);
}

footer .btn-outline-light:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

footer a:hover {
    color: var(--primary-color) !important;
    transition: var(--transition-fast);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .brand-name {
        font-size: 1.1rem;
    }

    .btn-download {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }

    .nav-link {
        padding: 0.5rem 0;
    }
}

/* ===== АНИМАЦИИ ЗАГРУЗКИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== ВРЕМЕННЫЕ СТИЛИ ДЛЯ PLACEHOLDER ===== */
#content-placeholder {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

#content-placeholder h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-extrabold);
}

/* ===== ОСНОВНЫЕ ПЕРЕМЕННЫЕ ===== */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;

    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ===== ХЕДЕР ===== */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-download-header {
    background: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-download-header:hover {
    background: #3730a3;
    transform: translateY(-1px);
}

/* ===== HERO СЕКЦИЯ ===== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.feature-item h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.feature-item small {
    opacity: 0.8;
}

/* ===== КНОПКИ ===== */
.btn-download-main {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-download-main:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* ===== МОКАП ТЕЛЕФОНА ===== */
.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.screen-content {
    padding: 1rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-header {
    text-align: center;
    padding: 1rem 0;
    background: var(--primary-color);
    color: white;
    margin: -1rem -1rem 1rem -1rem;
    border-radius: 20px 20px 0 0;
}

.prize-item {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.prize-item i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-download-main,
    .btn-outline-light {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .phone-mockup {
        max-width: 250px;
        margin-top: 2rem;
    }
}

/* ===== УТИЛИТЫ ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== КАК ЭТО РАБОТАЕТ ===== */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
}

@media (max-width: 991px) {
    .step-number::after {
        display: none;
    }
}

.step-icon {
    margin-bottom: 1rem;
}

/* ===== КАРТОЧКИ ===== */
.card {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* ===== МОКАП ТЕЛЕФОНА ===== */
.phone-mockup {
    width: 300px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-header {
    background: rgba(99, 102, 241, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.phone-header i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.phone-header span {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.phone-header small {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-top: 4px;
}

.phone-content {
    flex: 1;
    background: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px;
    background: var(--bs-light-border-subtle);
    border-radius: 9px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s
    ease;
}

.prize-item:hover {
    transform: translateX(5px);
}

.prize-icon {
    font-size: 33px;
    width: 50px;
    text-align: center;
}

.prize-name {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.phone-footer {
    background: #f1f5f9;
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-weight: 600;
    border-top: 1px solid #e2e8f0;
}

/* Адаптивность для телефона */
@media (max-width: 768px) {
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }

    .prize-item {
        padding: 12px;
        gap: 12px;
    }

    .prize-icon {
        font-size: 28px;
        width: 40px;
    }

    .prize-name {
        font-size: 14px;
    }
}

/* ===== ФУТЕР ===== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    border-top: 1px solid #374151;
}

.footer h6 {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer .btn-outline-light {
    border-color: #6b7280;
    color: #9ca3af;
    font-size: 14px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.footer .btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer a:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.footer .list-unstyled li {
    margin-bottom: 8px;
}

.footer .border-secondary {
    border-color: #374151 !important;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Фоновые фигуры */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

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

/* Контент Hero */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

.hero-actions .btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: var(--gradient-secondary);
    border: none;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

.hero-actions .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Статистика */
.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

/* ===== МОКАП ТЕЛЕФОНА В HERO ===== */
.hero-phone {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-container {
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

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

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 35px;
    padding: 15px;
    box-shadow:
            0 25px 50px rgba(0,0,0,0.3),
            0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.phone-header {
    background: rgba(99, 102, 241, 0.9);
    color: white;
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.phone-header i {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

.phone-header span {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.phone-header small {
    font-size: 12px;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.phone-content {
    flex: 1;
    background: white;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: transform 0.2s ease;
}

.prize-item:hover {
    transform: translateX(3px);
}

.prize-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.prize-name {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.phone-footer {
    background: #f1f5f9;
    padding: 15px;
    text-align: center;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
}

/* Плавающие элементы */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    animation: floatingElement 4s ease-in-out infinite;
}

.floating-qr {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-trophy {
    bottom: 30%;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-star {
    top: 60%;
    right: -25px;
    animation-delay: 3s;
}

@keyframes floatingElement {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.floating-element i {
    font-size: 16px;
    color: var(--primary-color);
}

/* ===== АДАПТИВНОСТЬ HERO ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .floating-element {
        display: none;
    }

    .hero-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* ===== БЛОК "КАК ЭТО РАБОТАЕТ" (БЭМ) ===== */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236366f1" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    opacity: 0.5;
}

/* Заголовок секции */
.how-it-works__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1rem;
}

.how-it-works__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.how-it-works__description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Карточки шагов */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-card:hover::before {
    transform: scaleX(1);
}

/* Заголовок карточки */
.step-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-card__number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.step-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Контент карточки */
.step-card__content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.step-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card__description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-card__detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.step-card__detail i {
    font-size: 1rem;
}

/* Действие карточки */
.step-card__action {
    margin-top: auto;
}

.step-card__action .btn {
    width: 100%;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Визуальные элементы карточки */
.step-card__visual {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.step-card__prizes {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* QR-код демо */
.qr-demo {
    position: relative;
    width: 80px;
    height: 80px;
}

.qr-demo__code {
    width: 100%;
    height: 100%;
    background: #1e293b;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.qr-demo__pattern {
    position: absolute;
    inset: 8px;
}

.qr-demo__corner {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 2px;
}

.qr-demo__corner:nth-child(1) { top: 0; left: 0; }
.qr-demo__corner:nth-child(2) { top: 0; right: 0; }
.qr-demo__corner:nth-child(3) { bottom: 0; left: 0; }
.qr-demo__corner:nth-child(4) { bottom: 0; right: 0; }

.qr-demo__dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 4px);
    gap: 4px;
}

.qr-demo__dots span {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 1px;
}

.qr-demo__scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-secondary);
    animation: qrScanAnimation 2s ease-in-out infinite;
}

@keyframes qrScanAnimation {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(76px); opacity: 0.5; }
}

/* Призы */
.prize-showcase {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.prize-showcase__item {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    animation: prizeFloatAnimation 3s ease-in-out infinite;
}

.prize-showcase__item:nth-child(1) { animation-delay: 0s; }
.prize-showcase__item:nth-child(2) { animation-delay: 0.5s; }
.prize-showcase__item:nth-child(3) { animation-delay: 1s; }
.prize-showcase__item:nth-child(4) { animation-delay: 1.5s; }

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

/* Информационный баннер */
.info-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.info-banner__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-banner__icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-banner__text {
    flex: 1;
}

.info-banner__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.info-banner__description {
    color: #1e40af;
    margin: 0;
    line-height: 1.5;
}

.info-banner__action {
    flex-shrink: 0;
}

.info-banner__action .btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    border-color: #3b82f6;
    color: #3b82f6;
}

.info-banner__action .btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .how-it-works__title {
        font-size: 2rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-card__header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .step-card__number,
    .step-card__icon {
        width: 40px;
        height: 40px;
    }

    .step-card__number {
        font-size: 1rem;
    }

    .step-card__icon {
        font-size: 1.25rem;
    }

    .info-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .info-banner__action .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 3rem 0;
    }

    .step-card {
        padding: 1rem;
    }

    .info-banner {
        padding: 1.5rem;
    }

    .qr-demo {
        width: 60px;
        height: 60px;
    }

    .prize-showcase__item {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== БЛОК "ПРИЗЫ И МОТИВАЦИЯ" (БЭМ) ===== */
.prizes-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="50" cy="50" r="4"/></g></svg>') repeat;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

/* Контент призов */
.prizes-content {
    position: relative;
    z-index: 2;
}

.prizes-content__header {
    margin-bottom: 3rem;
}

.prizes-content__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.prizes-content__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.prizes-content__title-accent {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prizes-content__description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Система баллов */
.points-system {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.points-system__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.points-system__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.points-system__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.points-system__item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.points-system__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.points-system__content {
    flex: 1;
}

.points-system__action {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.points-system__points {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Статистика призов */
.prizes-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.prizes-stats__item {
    text-align: center;
}

.prizes-stats__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.prizes-stats__label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Действие */
.prizes-content__action {
    text-align: left;
}

.prizes-content__action .btn {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.prizes-content__action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.prizes-content__note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* ===== МОКАП ТЕЛЕФОНА ===== */
.phone-mockup2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.phone-mockup2__device {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 35px;
    padding: 20px;
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.phone-mockup2__device::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.phone-mockup2__screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Статус бар */
.phone-mockup2__status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.phone-mockup2__time {
    font-weight: 700;
}

.phone-mockup2__indicators {
    display: flex;
    gap: 5px;
}

/* Контент приложения */
.phone-mockup2__content {
    padding: 15px;
    height: calc(100% - 40px);
    overflow-y: auto;
}

/* Заголовок приложения */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
}

.app-header__title {
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.app-header__points {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* Сетка призов */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.prize-card {
    background: white;
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.prize-card--available {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.prize-card--locked {
    border-color: #e5e7eb;
    background: #f9fafb;
    opacity: 0.7;
}

.prize-card__image {
    font-size: 24px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prize-card__name {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
}

.prize-card__cost {
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 4px;
}

.prize-card__status {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
}

.prize-card--available .prize-card__status {
    background: #10b981;
    color: white;
}

.prize-card--locked .prize-card__status {
    background: #e5e7eb;
    color: #6b7280;
}

/* Секция прогресса */
.progress-section {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-section__title {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.progress-section__bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-section__fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-section__text {
    font-size: 10px;
    color: #6b7280;
    text-align: center;
}

/* Плавающие призы */
.floating-prizes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-prize {
    position: absolute;
    font-size: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    animation: floatAnimation 6s ease-in-out infinite;
}

.floating-prize--1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-prize--2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-prize--3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-prize--4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.floating-prize--5 {
    top: 50%;
    left: -5%;
    animation-delay: 4s;
}

.floating-prize--6 {
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .prizes-section {
        padding: 4rem 0;
    }

    .prizes-content__title {
        font-size: 2.5rem;
    }

    .phone-mockup2 {
        height: 500px;
        margin-top: 3rem;
    }

    .phone-mockup2__device {
        width: 250px;
        height: 480px;
    }

    .prizes-stats {
        justify-content: space-around;
        gap: 1rem;
    }

    .points-system__item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .prizes-content__title {
        font-size: 2rem;
    }

    .prizes-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .prizes-stats__number {
        font-size: 2rem;
    }

    .points-system {
        padding: 1.5rem;
    }

    .phone-mockup2 {
        height: 400px;
    }

    .phone-mockup2__device {
        width: 200px;
        height: 380px;
        padding: 15px;
    }

    .floating-prize {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .prizes-section {
        padding: 3rem 0;
    }

    .prizes-content__title {
        font-size: 1.75rem;
    }

    .prizes-content__description {
        font-size: 1rem;
    }

    .points-system__list {
        gap: 0.5rem;
    }

    .points-system__item {
        padding: 0.75rem;
    }

    .phone-mockup2__device {
        width: 180px;
        height: 340px;
    }

    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .prize-card {
        padding: 8px;
    }

    .prize-card__image {
        font-size: 20px;
    }
}

/* ===== БЛОК "СКРИНШОТЫ ПРИЛОЖЕНИЯ" (БЭМ) ===== */
.screenshots-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236366f1" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    animation: backgroundFloat 15s ease-in-out infinite;
}

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

/* Заголовок секции */
.screenshots-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.screenshots-header__badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.screenshots-header__title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.screenshots-header__title-accent {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshots-header__description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Галерея скриншотов */
.screenshots-gallery {
    margin-bottom: 4rem;
}

.screenshots-gallery__main {
    margin-bottom: 3rem;
}

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

/* Карточки скриншотов */
.screenshot-card {
    position: relative;
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
}

.screenshot-card--main {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.screenshot-card--small {
    text-align: center;
}

.screenshot-card__phone {
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    flex-shrink: 0;
}

.screenshot-card--main .screenshot-card__phone {
    width: 250px;
    height: 500px;
    padding: 20px;
}

.screenshot-card__phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
}

.screenshot-card__screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.screenshot-card__info {
    flex: 1;
    text-align: left;
}

.screenshot-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.screenshot-card__description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.screenshot-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.screenshot-card__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 1rem;
    text-align: center;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== ЭКРАНЫ ПРИЛОЖЕНИЯ ===== */
.app-screen {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.app-screen--main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.app-screen__header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.app-screen__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.app-screen__subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.app-screen__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Прогресс пользователя */
.user-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.user-progress__avatar {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-progress__info {
    flex: 1;
}

.user-progress__name {
    font-weight: 700;
    font-size: 14px;
}

.user-progress__level {
    font-size: 11px;
    opacity: 0.8;
}

.user-progress__points {
    font-weight: 700;
    font-size: 14px;
    color: #fbbf24;
}

/* Сетка активностей */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.activity-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.activity-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.activity-card__icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.activity-card__title {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.activity-card__desc {
    font-size: 9px;
    opacity: 0.8;
}

/* Прогресс выставки */
.expo-progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(10px);
}

.expo-progress__title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.expo-progress__bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.expo-progress__fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.expo-progress__text {
    font-size: 10px;
    text-align: center;
    opacity: 0.8;
}

/* ===== QR СКАНЕР ===== */
.app-screen--qr {
    background: #000;
    color: white;
    justify-content: center;
    align-items: center;
}

.qr-scanner {
    text-align: center;
}

.qr-scanner__frame {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
}

.qr-scanner__corners {
    position: absolute;
    inset: 0;
}

.qr-scanner__corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #10b981;
}

.qr-scanner__corner--tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.qr-scanner__corner--tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.qr-scanner__corner--bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.qr-scanner__corner--br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.qr-scanner__code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.qr-code {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 5px;
    position: relative;
}

.qr-code__pattern {
    position: absolute;
    inset: 5px;
    background:
            repeating-linear-gradient(0deg, #000, #000 2px, transparent 2px, transparent 4px),
            repeating-linear-gradient(90deg, #000, #000 2px, transparent 2px, transparent 4px);
}

.qr-scanner__text {
    font-size: 12px;
    margin-bottom: 10px;
}

.qr-scanner__hint {
    font-size: 10px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
}

/* ===== КАРТА ВЫСТАВКИ ===== */
.app-screen--map {
    background: #f1f5f9;
    color: #1e293b;
}

.expo-map__title {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1e293b;
}

.expo-map__floor {
    background: white;
    border-radius: 15px;
    height: 200px;
    position: relative;
    margin-bottom: 15px;
    border: 2px solid #e2e8f0;
}

.booth {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booth--visited {
    background: #10b981;
    color: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.booth--current {
    background: #f59e0b;
    color: white;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.booth--available {
    background: #e2e8f0;
    color: #64748b;
}

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

.booth__icon {
    font-size: 16px;
    margin-bottom: 2px;
}

.booth__name {
    font-size: 7px;
    line-height: 1;
}

.expo-map__legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.legend-dot--visited {
    background: #10b981;
}

.legend-dot--current {
    background: #f59e0b;
}

/* ===== РЕЙТИНГ ===== */
.app-screen--leaderboard {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
}

.leaderboard__title {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.leaderboard__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.leaderboard__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.3s ease;
}

.leaderboard__item--gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.leaderboard__item--silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e7eb);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.leaderboard__item--bronze {
    background: linear-gradient(135deg, #cd7f32, #d97706);
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

.leaderboard__item--current {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: currentUserGlow 2s ease-in-out infinite alternate;
}

@keyframes currentUserGlow {
    0% { box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); }
    100% { box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6); }
}

.leaderboard__position {
    width: 24px;
    height: 24px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.leaderboard__item--gold .leaderboard__position {
    background: #b45309;
}

.leaderboard__item--silver .leaderboard__position {
    background: #6b7280;
}

.leaderboard__item--bronze .leaderboard__position {
    background: #92400e;
}

.leaderboard__item--current .leaderboard__position {
    background: rgba(255, 255, 255, 0.2);
}

.leaderboard__avatar {
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaderboard__info {
    flex: 1;
}

.leaderboard__name {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.leaderboard__points {
    font-size: 10px;
    opacity: 0.8;
}

/* ===== ДОСТИЖЕНИЯ ===== */
.app-screen--achievements {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.achievements__title {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.achievement {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement--earned {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    animation: achievementShine 3s ease-in-out infinite;
}

.achievement--locked {
    opacity: 0.5;
    filter: grayscale(1);
}

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

.achievement__icon {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.achievement__name {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== ФИЧИ ПРИЛОЖЕНИЯ ===== */
.app-features {
    margin-top: 4rem;
}

.app-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.app-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.app-feature__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
}

.app-feature__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.app-feature__description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .screenshots-header__title {
        font-size: 2.2rem;
    }

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

    .screenshot-card--main .screenshot-card__phone {
        width: 200px;
        height: 400px;
        padding: 15px;
    }

    .screenshots-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .screenshot-card__phone {
        width: 150px;
        height: 300px;
        padding: 12px;
    }

    .app-feature {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .app-feature__icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .screenshots-gallery__grid {
        grid-template-columns: 1fr;
    }

    .screenshot-card__phone {
        width: 180px;
        height: 360px;
    }

    .screenshots-header__title {
        font-size: 1.8rem;
    }

    .screenshots-header__description {
        font-size: 1rem;
    }
}

/* ===== ИНТЕРАКТИВНЫЕ ЭФФЕКТЫ ===== */
.screenshot-card--small:hover .screenshot-card__phone {
    transform: scale(1.05);
}

.screenshot-card--small:hover .app-screen {
    animation: screenGlow 0.5s ease-in-out;
}

@keyframes screenGlow {
    0% { box-shadow: inset 0 0 0 rgba(99, 102, 241, 0); }
    50% { box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.3); }
    100% { box-shadow: inset 0 0 0 rgba(99, 102, 241, 0); }
}

/* Плавное появление элементов */
.screenshot-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.screenshot-card:nth-child(1) { animation-delay: 0.1s; }
.screenshot-card:nth-child(2) { animation-delay: 0.2s; }
.screenshot-card:nth-child(3) { animation-delay: 0.3s; }
.screenshot-card:nth-child(4) { animation-delay: 0.4s; }
.screenshot-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Дополнительные микро-анимации */
.activity-card:hover .activity-card__icon {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.feature-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Эффект загрузки для QR сканера */
.qr-scanner__corners::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-top-color: #10b981;
    border-radius: 10px;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ОТЗЫВЫ РОДИТЕЛЕЙ ===== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e2e8f0" opacity="0.5"/><circle cx="80" cy="40" r="1.5" fill="%236366f1" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%23f59e0b" opacity="0.4"/></svg>') repeat;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-header__description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card--featured {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.testimonial-card--featured::before {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card--featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.testimonial-card--featured .testimonial-card__name {
    color: white;
}

.testimonial-card__role {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-card--featured .testimonial-card__role {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card__rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 14px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

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

.testimonial-card__content {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    margin: 0;
}

.testimonial-card--featured .testimonial-card__text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.testimonial-card--featured .testimonial-card__footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card__event {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-card--featured .testimonial-card__event {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card__achievement {
    font-size: 0.85rem;
    color: #059669;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.testimonial-card--featured .testimonial-card__achievement {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
}

/* ===== СТАТИСТИКА ОТЗЫВОВ ===== */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.testimonials-stats__item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transition: all 0.3s ease;
}

.testimonials-stats__item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.testimonials-stats__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.testimonials-stats__item:hover .testimonials-stats__number {
    color: white;
}

.testimonials-stats__label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonials-stats__item:hover .testimonials-stats__label {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-stats__stars,
.testimonials-stats__icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .testimonials-header__title {
        font-size: 2rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
        gap: 1.5rem;
    }

    .testimonials-stats__number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-header__title {
        font-size: 1.8rem;
    }

    .testimonials-header__description {
        font-size: 1rem;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== АНИМАЦИИ ПОЯВЛЕНИЯ ===== */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ФИНАЛЬНЫЙ CTA ===== */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="20" r="1.5" fill="white" opacity="0.15"/><circle cx="20" cy="90" r="0.8" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1.2" fill="white" opacity="0.12"/></svg>') repeat;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}

/* ===== ФОНОВЫЕ ЭЛЕМЕНТЫ ===== */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 6s ease-in-out infinite;
}

.cta-bg-circle--1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.cta-bg-circle--2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.cta-bg-circle--3 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

.cta-floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatIcon 8s ease-in-out infinite;
}

.cta-floating-icon--1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.cta-floating-icon--2 {
    top: 25%;
    right: 25%;
    animation-delay: 2s;
}

.cta-floating-icon--3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.cta-floating-icon--4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

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

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 0.8; }
}

/* ===== КОНТЕНТ ===== */
.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-header {
    margin-bottom: 2.5rem;
}

.final-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.final-cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.cta-benefit:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.cta-benefit__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-benefit__text {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

/* ===== КНОПКА СКАЧИВАНИЯ ===== */
.final-cta-buttons {
    margin-bottom: 2rem;
}

.cta-download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-download-btn:hover::before {
    left: 100%;
}

.cta-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.cta-btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-btn-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.cta-btn-text {
    text-align: left;
}

.cta-btn-main {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-btn-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

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

.cta-download-btn:hover .cta-btn-arrow {
    transform: translateX(5px);
}

/* ===== ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ ===== */
.final-cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.cta-info-icon {
    color: #10b981;
    font-weight: bold;
}

/* ===== СРОЧНОСТЬ ===== */
.final-cta-urgency {
    text-align: center;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    animation: pulse 2s infinite;
}

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

.cta-urgency-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* ===== МОКАП ТЕЛЕФОНА ===== */
.final-cta-phone {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-phone-mockup {
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

.cta-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-phone-header {
    text-align: center;
    color: white;
}

.cta-phone-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-phone-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-phone-progress {
    margin-bottom: 1rem;
}

.cta-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.cta-progress-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.5); }
    100% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.8); }
}

.cta-progress-text {
    color: white;
    font-size: 0.8rem;
    text-align: center;
}

.cta-phone-prizes {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-prize-item {
    font-size: 2rem;
    animation: prizeRotate 3s ease-in-out infinite;
}

.cta-prize-item:nth-child(1) { animation-delay: 0s; }
.cta-prize-item:nth-child(2) { animation-delay: 1s; }
.cta-prize-item:nth-child(3) { animation-delay: 2s; }

@keyframes prizeRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

/* ===== МОТИВАЦИЯ ===== */
.final-cta-motivation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.cta-motivation-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-motivation-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.cta-motivation-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.cta-motivation-text {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.download-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.download-modal-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.download-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.download-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.download-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.download-modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.download-modal-subtitle {
    color: #64748b;
    margin: 0;
}

.download-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.download-store-btn:hover::before {
    left: 100%;
}

.download-store-btn:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
    text-decoration: none;
    color: #1e293b;
}

.download-store-btn--rustore:hover {
    border-color: #ff6b35;
}

.download-store-btn--google:hover {
    border-color: #4285f4;
}

.download-store-btn--apple:hover {
    border-color: #000;
}

.store-btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    flex-shrink: 0;
}

.store-btn-icon img {
    width: 24px;
    height: 24px;
}

.store-btn-content {
    flex: 1;
}

.store-btn-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.store-btn-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.download-modal-info {
    margin-bottom: 2rem;
}

.download-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #64748b;
}

.download-info-icon {
    color: #10b981;
    font-size: 1.1rem;
}

.download-modal-note {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #92400e;
}

.download-modal-note strong {
    color: #78350f;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .final-cta-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .final-cta-phone {
        order: -1;
    }

    .cta-phone-mockup {
        width: 180px;
        height: 360px;
    }

    .final-cta-motivation {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .cta-motivation-item {
        padding: 1.5rem 1rem;
    }

    .cta-motivation-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .final-cta-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .final-cta-title {
        font-size: 2.2rem;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
    }

    .final-cta-benefits {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .cta-benefit {
        padding: 0.8rem;
    }

    .final-cta-info {
        flex-direction: column;
        gap: 0.8rem;
    }

    .final-cta-motivation {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-phone-mockup {
        width: 160px;
        height: 320px;
    }

    .download-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .download-modal-title {
        font-size: 1.5rem;
    }
}

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

    .final-cta-subtitle {
        font-size: 1rem;
    }

    .cta-download-btn {
        padding: 1.2rem 1.5rem;
    }

    .cta-btn-main {
        font-size: 1.1rem;
    }

    .cta-btn-sub {
        font-size: 0.8rem;
    }

    .cta-floating-icon {
        font-size: 1.5rem;
    }

    .download-modal-content {
        padding: 1.5rem 1rem;
    }
}
