/* ===== ATOMIC WALLET - ДЕТСКИЙ ОБРАЗОВАТЕЛЬНЫЙ ДИЗАЙН ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Comic+Neue:wght@400;700&display=swap');

/* ===== CSS ПЕРЕМЕННЫЕ ===== */
:root {
    /* Основные цвета - яркая детская палитра */
    --primary: #FF6B35;        /* Оранжевый */
    --primary-dark: #E55A2B;
    --secondary: #00D4AA;      /* Бирюзовый */
    --secondary-dark: #00B894;
    --accent: #9B59B6;         /* Фиолетовый */
    --accent-light: #BB8FCE;
    --yellow: #F1C40F;         /* Жёлтый */
    --yellow-light: #F7DC6F;
    --pink: #FF6B9D;           /* Розовый */
    --blue: #3498DB;           /* Синий */
    --green: #2ECC71;          /* Зелёный */

    /* Фоновые цвета */
    --bg-light: #FFF9F5;
    --bg-gradient: linear-gradient(135deg, #FFF9F5 0%, #E8F8F5 50%, #FCF3CF 100%);
    --bg-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Текстовые цвета */
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #95A5A6;

    /* Тени */
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-colored: 0 10px 40px rgba(255, 107, 53, 0.3);

    /* Радиусы */
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --radius-xl: 50px;

    /* Шрифты */
    --font-main: 'Nunito', sans-serif;
    --font-fun: 'Comic Neue', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ (Плавающие атомы) ===== */
.floating-atoms {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.atom {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.atom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.atom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 8s linear infinite;
}

.atom:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.atom:nth-child(2) { top: 20%; right: 10%; animation-delay: -5s; }
.atom:nth-child(3) { top: 60%; left: 8%; animation-delay: -10s; }
.atom:nth-child(4) { top: 80%; right: 5%; animation-delay: -15s; }
.atom:nth-child(5) { top: 40%; left: 3%; animation-delay: -7s; }

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

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== ШАПКА (HEADER) ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: orbit 3s linear infinite;
}

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

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-fun);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Навигация */
.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    color: white;
}

.nav-download {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--green) 100%);
    color: white !important;
    padding: 12px 25px !important;
    box-shadow: var(--shadow-soft);
}

.nav-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--green) 100%) !important;
}

/* Мобильное меню */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 6px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 30px 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-family: var(--font-fun);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: var(--radius-xl);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-download {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--green) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.5);
}

/* Hero изображение */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: mascotFloat 4s ease-in-out infinite;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    75% { transform: translateY(10px) rotate(-2deg); }
}

/* Декоративные элементы hero */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-decoration-1 {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    width: 40px;
    height: 40px;
    background: var(--pink);
    top: 30%;
    left: 10%;
    animation: float 5s ease-in-out infinite;
}

/* ===== СЕКЦИИ ===== */
.section {
    padding: 100px 30px;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-fun);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== КАРТОЧКИ ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: var(--radius-large);
    padding: 40px 35px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--yellow), var(--secondary));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.card-icon.orange { background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.25) 100%); }
.card-icon.teal { background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.25) 100%); }
.card-icon.purple { background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(155, 89, 182, 0.25) 100%); }
.card-icon.yellow { background: linear-gradient(135deg, rgba(241, 196, 15, 0.15) 0%, rgba(241, 196, 15, 0.25) 100%); }
.card-icon.pink { background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(255, 107, 157, 0.25) 100%); }
.card-icon.blue { background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0.25) 100%); }

.card-title {
    font-family: var(--font-fun);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== СТАТИСТИКА ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
}

.stat-number {
    font-family: var(--font-fun);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-medium);
    font-weight: 600;
    margin-top: 10px;
}

/* ===== БЛОК СКАЧИВАНИЯ ===== */
.download-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-large);
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.download-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.download-title {
    font-family: var(--font-fun);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.download-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.download-btn {
    background: white;
    color: var(--primary);
    padding: 18px 50px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.download-btn:hover {
    background: var(--yellow);
    color: var(--text-dark);
}

/* ===== ФУТЕР ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 30px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon::before {
    content: '';
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-fun);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-fun);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== СТРАНИЦЫ ===== */
.page-hero {
    padding: 150px 30px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
}

.page-title {
    font-family: var(--font-fun);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-title span {
    color: var(--primary);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Хлебные крошки */
.breadcrumbs {
    padding: 20px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.95rem;
}

.breadcrumbs-list a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-list a:hover {
    color: var(--primary);
}

.breadcrumbs-list .separator {
    color: var(--text-light);
}

.breadcrumbs-list .current {
    color: var(--primary);
    font-weight: 600;
}

/* Контент страниц */
.page-content {
    padding: 60px 30px 100px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    background: white;
    border-radius: var(--radius-large);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.content-block h2 {
    font-family: var(--font-fun);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-block h3 {
    font-family: var(--font-fun);
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.content-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul, .content-block ol {
    color: var(--text-medium);
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* FAQ аккордеон */
.faq-item {
    background: white;
    border-radius: var(--radius-medium);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F8F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Новости */
.news-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background: white;
    border-radius: var(--radius-medium);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.news-date {
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: var(--radius-small);
    padding: 20px;
    text-align: center;
    color: white;
}

.news-date .day {
    font-family: var(--font-fun);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.news-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content h3 {
    font-family: var(--font-fun);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.news-tag {
    display: inline-block;
    background: rgba(0, 212, 170, 0.15);
    color: var(--secondary-dark);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Форма контактов */
.contact-form {
    background: white;
    border-radius: var(--radius-large);
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-small);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Таблица системных требований */
.requirements-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.requirements-table th,
.requirements-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #E8E8E8;
}

.requirements-table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    color: white;
    font-weight: 700;
}

.requirements-table tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-mascot {
        max-width: 350px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }

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

    .menu-toggle {
        display: block;
    }

    .news-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 20px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .download-section {
        padding: 40px 25px;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .content-block {
        padding: 30px 25px;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

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

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

    .btn {
        padding: 14px 25px;
        font-size: 1rem;
    }

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

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

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
