/* ========================================
   TRADEMO - Редизайн торговой платформы
   ======================================== */

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

/* Root Variables - Новая цветовая схема */
:root {
    /* Основные цвета - Белый и голубой */
    --primary-blue: #0056B3;
    --primary-light-blue: #007BFF;
    --primary-dark-blue: #004494;
    --primary-white: #FFFFFF;
    --primary-gray: #4A5568;
    
    /* Фоновые цвета */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F0F8FF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FBFF;
    --bg-dark: #1A365D;
    
    /* Цвета текста */
    --text-primary: #2D3748;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-white: #FFFFFF;
    
    /* Акцентные цвета */
    --accent-primary: var(--primary-blue);
    --accent-hover: var(--primary-dark-blue);
    --accent-light: var(--primary-light-blue);
    
    /* Цвета границ */
    --border-color: #E2E8F0;
    --border-hover: var(--primary-blue);
    --border-focus: var(--primary-blue);
    
    /* Тени */
    --shadow-sm: 0 2px 4px rgba(0, 86, 179, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 86, 179, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 86, 179, 0.2);
    --shadow-blue: 0 4px 12px rgba(0, 86, 179, 0.25);
    
    /* Анимация */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 16px;
}

/* Базовые стили */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Типография */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 86, 179, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 86, 179, 0.08);
    height: 80px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 86, 179, 0.12);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    background-color: rgba(0, 86, 179, 0.04);
    transform: translateY(-1px);
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.01);
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
    color: white;
    padding: 4px 9px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(0, 86, 179, 0.08);
}

.nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 86, 179, 0.06);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light-blue));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: rgba(0, 86, 179, 0.06);
    border: 2px solid rgba(0, 86, 179, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--primary-blue);
    margin: 2.5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn:hover span {
    background: var(--primary-dark-blue);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    padding: 40px 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 86, 179, 0.1);
    border: 2px solid rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--primary-blue);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: var(--primary-blue);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: scale(0.9);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 16px 25px;
    border-radius: 12px;
    position: relative;
    background: rgba(0, 86, 179, 0.02);
    border: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.08);
    border-color: rgba(0, 86, 179, 0.2);
    transform: translateX(5px);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-light-blue));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    height: 60%;
}

/* Hero секция */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #e8f1fc 0%, #f0f4f8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-top: 40px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    animation: fadeInRight 0.8s ease-out forwards;
}

.hero-title .highlight-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-light-blue);
    animation: fadeIn 1s ease-out forwards 0.3s;
    opacity: 0;
}

/* Скрываем мобильную версию описания на десктопе */
.hero-description-mobile {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-logo-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 20px 60px rgba(0, 86, 179, 0.15),
        0 10px 30px rgba(0, 86, 179, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    border: 3px solid rgba(0, 86, 179, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 86, 179, 0.2),
        0 15px 40px rgba(0, 86, 179, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 86, 179, 0.2);
}

.hero-logo-circle img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 86, 179, 0.15));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.hero-decorative-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.6;
    pointer-events: none;
}

.hero-decorative-circle.circle-1 {
    width: 360px;
    height: 360px;
    border-color: rgba(0, 86, 179, 0.15);
    animation: rotate 20s linear infinite;
    margin-left: -180px;
    margin-top: -180px;
}

.hero-decorative-circle.circle-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(0, 123, 255, 0.1);
    border-style: dashed;
    animation: rotate 30s linear infinite reverse;
    margin-left: -200px;
    margin-top: -200px;
}

.hero-decorative-circle.circle-3 {
    width: 450px;
    height: 450px;
    border-color: rgba(0, 86, 179, 0.08);
    animation: rotate 40s linear infinite;
    margin-left: -225px;
    margin-top: -225px;
}

@keyframes float {
    0%, 100% { 
        transform: translate(-50%, -50%); 
    }
    50% { 
        transform: translate(-50%, calc(-50% - 15px)); 
    }
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.hero-stat {
    background-color: var(--bg-primary);
    padding: 16px 12px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1.1;
}

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

/* Кнопки */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.button-primary::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.7s ease;
    z-index: -1;
}

.button-primary:hover::before {
    left: 100%;
}

.button-primary:hover {
    background-color: var(--primary-dark-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(0, 86, 179, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    }
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.button-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 86, 179, 0.1);
    transition: height 0.3s ease;
    z-index: -1;
}

.button-secondary:hover::after {
    height: 100%;
}

.button-secondary:hover {
    background-color: rgba(0, 86, 179, 0.1);
    transform: translateY(-3px);
}

.buttons-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out forwards 0.5s;
    opacity: 0;
}

/* ========================================
   О НАС СЕКЦИЯ - КОМПАКТНАЯ ВЕРСИЯ
   ======================================== */
.about {
    padding: 80px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 123, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
}

/* ЗАГОЛОВОК - УПРОЩЕННЫЙ */
.about-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* ПОДЗАГОЛОВОК - НОВЫЙ */
.about-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* СТАТИСТИЧЕСКИЙ БАННЕР - 3 ЭЛЕМЕНТА */
.about-stats-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    padding: 28px 40px;
    border-radius: 14px;
    margin: 40px auto 50px;
    max-width: 900px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.about-stat-item {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: lowercase;
    font-weight: 500;
}

.about-stat-divider {
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

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

.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.about-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.about-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

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

.about-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========================================
   ПРЕИМУЩЕСТВА - КОМПАКТНАЯ ВЕРСИЯ БЕЗ КАТЕГОРИЙ
   ======================================== */
.features {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
}

/* ЗАГОЛОВОК - УПРОЩЕННЫЙ */
.features-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 45px;
}

.features-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
}

/* СЕТКА - 3 КОЛОНКИ НА DESKTOP, 2 НА TABLET, 1 НА MOBILE */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* КАРТОЧКИ - КОМПАКТНЫЕ */
.feature-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

/* ИКОНКИ - МЕНЬШЕ */
.feature-icon {
    width: 58px;
    height: 58px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(1.08);
}

/* ЗАГОЛОВКИ - КОМПАКТНЫЕ */
.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

/* ОПИСАНИЯ - КРАТКИЕ */
.feature-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ========================================
   ГЕОГРАФИЯ - КОМПАКТНАЯ ВЕРСИЯ
   ======================================== */
.geography {
    padding: 80px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.geography::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
}

/* ЗАГОЛОВОК */
.geography-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 45px;
}

/* СЕТКА СТРАН - 4 КОЛОНКИ */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* КАРТОЧКИ СТРАН - КОМПАКТНЫЕ */
.country-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
    text-align: center;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.country-card:active {
    transform: translateY(-8px) scale(1); /* Блокируем scale на активном состоянии */
}

/* ФЛАГИ - КОНТЕЙНЕР С ЖЕСТКИМ КОНТРОЛЕМ РАЗМЕРА */
.country-flag {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 86, 179, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: rgba(0, 86, 179, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.country-flag img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.country-card:hover .country-flag {
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.25);
    border-color: var(--primary-blue);
}

/* СТАРЫЕ КЛАССЫ ДЛЯ СОВМЕСТИМОСТИ */
.country-flag-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 86, 179, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: rgba(0, 86, 179, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.country-flag-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.country-card:hover .country-flag-wrapper {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.25);
    border-color: var(--primary-blue);
    background-color: rgba(0, 86, 179, 0.12);
}

/* КОНТЕЙНЕР ИНФОРМАЦИИ */
.country-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

/* НАЗВАНИЯ СТРАН */
.country-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.country-card:hover .country-name {
    color: var(--primary-blue);
}

/* КАРТОЧКА "ЕЩЕ..." - ТОЛЬКО НА МОБИЛЬНЫХ */
.country-card-more {
    display: none; /* Скрываем на десктопе */
    cursor: default; /* Не интерактивная */
    pointer-events: none; /* Отключаем все взаимодействия */
}

.country-flag-more {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue)) !important;
    border-color: var(--primary-blue);
}

.country-flag-more i {
    font-size: 1.5rem;
    color: white;
}

.plus-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

/* Условия секция */
.conditions {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.conditions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 86, 179, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.conditions .container {
    position: relative;
    z-index: 1;
}

.conditions-wrapper {
    margin-top: 60px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.condition-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 16px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid rgba(0, 86, 179, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: left;
}

.condition-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

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

.condition-card:hover::after {
    width: 300px;
    height: 300px;
}

.condition-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-blue);
}

.condition-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 86, 179, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.condition-card:hover .condition-number {
    color: rgba(0, 86, 179, 0.15);
    transform: scale(1.1);
}

.condition-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.08), rgba(0, 123, 255, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-blue);
    font-size: 2.2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.condition-card:hover .condition-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
    color: white;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.35);
}

.condition-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.condition-card:hover .condition-title {
    color: var(--primary-blue);
    transform: scale(1.05);
}

.condition-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.condition-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 123, 255, 0.15));
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.condition-card:hover .condition-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light-blue));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* ДЕТАЛИ УСЛОВИЙ */
.condition-details {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.condition-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.condition-detail-item i {
    color: var(--primary-blue);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.condition-detail-item span {
    line-height: 1.4;
}

/* ЗАМЕТКА УСЛОВИЙ */
.conditions-note {
    margin-top: 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 123, 255, 0.03) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.conditions-note i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.conditions-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* CTA блок */
.conditions-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.25);
    position: relative;
    overflow: hidden;
}

.conditions-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

.cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .button-primary {
    background-color: white;
    color: var(--primary-blue);
}

.cta-content .button-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

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

/* Контакты секция */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 86, 179, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-main-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.12);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 86, 179, 0.1);
    overflow: hidden;
}

.contact-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 86, 179, 0.18);
    border-color: var(--primary-blue);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.contact-icon-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}

.contact-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

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

.contact-card-header h3 {
    font-size: 2rem;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-card-body {
    padding: 45px;
    text-align: center;
}

.contact-card-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.contact-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(0, 86, 179, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-feature:hover {
    background: rgba(0, 86, 179, 0.1);
    transform: translateY(-3px);
}

.contact-feature i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.contact-feature span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0088cc 0%, #006ba6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.35);
    position: relative;
    overflow: hidden;
}

.telegram-button::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: left 0.5s ease;
}

.telegram-button:hover::before {
    left: 100%;
}

.telegram-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.5);
}

.telegram-button i:first-child {
    font-size: 1.5rem;
}

.telegram-button i:last-child {
    transition: transform 0.3s ease;
}

.telegram-button:hover i:last-child {
    transform: translateX(5px);
}

.contact-warning {
    margin-top: 30px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 4px solid #ff9800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-warning i {
    font-size: 1.5rem;
    color: #ff9800;
    flex-shrink: 0;
}

.contact-warning p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.contact-warning strong {
    color: #f57c00;
}

/* Футер */
.footer {
    background: linear-gradient(180deg, #1A365D 0%, #0f1f3d 100%);
    color: var(--text-white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 86, 179, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

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

.footer-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-3px);
}

.footer-stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-light-blue);
    margin-bottom: 5px;
}

.footer-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-group h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light-blue), transparent);
    border-radius: 2px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 5px 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link i {
    color: var(--primary-light-blue);
    font-size: 1rem;
}

.footer-link-telegram {
    background: rgba(0, 136, 204, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 136, 204, 0.2);
}

.footer-link-telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
    transform: translateX(0) translateY(-2px);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--primary-light-blue);
    font-size: 1rem;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light-blue);
}

.footer-badge i {
    color: var(--primary-light-blue);
    font-size: 0.9rem;
}

/* Адаптивный дизайн */
@media (min-width: 769px) {
    .header .container {
        padding-right: 10px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .buttons-group {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* ПРЕИМУЩЕСТВА - 2 КОЛОНКИ НА ПЛАНШЕТАХ */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* ГЕОГРАФИЯ - 3 КОЛОНКИ НА ПЛАНШЕТАХ */
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    /* КАРТОЧКА "ЕЩЕ..." ПОКАЗЫВАЕМ НА ПЛАНШЕТАХ */
    .country-card-more {
        display: flex;
        background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 123, 255, 0.03) 100%);
        border: 2px dashed var(--primary-blue);
        opacity: 0.9;
    }
    
    .country-flag-more i {
        font-size: 1.3rem;
    }
    
    .plus-number {
        font-size: 1.3rem;
    }
    
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .condition-card {
        padding: 35px 25px;
    }
    
    .condition-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .conditions-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.7rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .nav {
        margin-left: auto;
        gap: 0.3rem;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card-body {
        padding: 35px 25px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* ========================================
       МОБИЛЬНАЯ ВЕРСИЯ - ПОЛНАЯ ПЕРЕРАБОТКА 2025
       ======================================== */
    
    /* БАЗОВЫЕ НАСТРОЙКИ */
    body {
        font-size: 16px; /* Минимальный читаемый размер */
        line-height: 1.6;
    }
    
    .container {
        padding: 0 20px; /* Увеличенные отступы */
    }
    
    /* ========================================
       HEADER - ОПТИМИЗАЦИЯ ДЛЯ КАСАНИЙ
       ======================================== */
    .header {
        height: 70px; /* Компактнее */
        padding: 0 20px;
        box-shadow: 0 2px 12px rgba(0, 86, 179, 0.08);
    }
    
    .header .container {
        padding: 0 !important;
        max-width: 100%;
        margin: 0;
    }
    
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        gap: 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
        padding: 0 !important;
        gap: 10px;
        margin: 0;
        flex-shrink: 0;
        order: 1; /* Логотип первым */
    }
    
    .logo-img {
        height: 48px; /* Оптимальный размер */
    }
    
    .logo-badge {
        display: none; /* Убираем на мобильных для чистоты */
    }
    
    .nav {
        display: none !important;
        order: 2; /* Навигация посередине (скрыта) */
    }
    
    /* BURGER MENU - КАСАЕМОСТЬ 48x48px - ВСЕГДА СПРАВА */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        background: rgba(0, 86, 179, 0.08);
        border: 2px solid rgba(0, 86, 179, 0.15);
        border-radius: 10px;
        cursor: pointer;
        padding: 0 !important;
        min-width: 52px; /* Больше минимума */
        min-height: 52px;
        align-items: center;
        justify-content: center;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-shrink: 0;
        gap: 5px;
        transition: all 0.3s ease;
        order: 3; /* Бургер-меню последним - справа */
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95); /* Feedback при нажатии */
        background: rgba(0, 86, 179, 0.12);
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 3px;
        background: var(--primary-blue);
        border-radius: 2px;
    }
    
    /* ========================================
       MOBILE MENU - ПОЛНОЭКРАННОЕ МЕНЮ
       ======================================== */
    .mobile-nav-link {
        font-size: 1.25rem; /* Крупнее для касаний */
        padding: 18px 30px; /* Увеличенная область касания */
        min-height: 56px; /* Гарантированная касаемость */
    }
    
    .mobile-menu-close {
        width: 54px;
        height: 54px;
        font-size: 2rem;
        top: 16px;
        right: 20px;
    }
    
    /* ========================================
       HERO - ПРОФЕССИОНАЛЬНАЯ МОБИЛЬНАЯ ВЕРСИЯ
       ======================================== */
    .hero {
        padding: 100px 0 70px;
        min-height: calc(100vh - 70px);
        background: var(--bg-secondary);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Современный градиентный фон */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse at top left, rgba(0, 86, 179, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at bottom right, rgba(0, 123, 255, 0.06) 0%, transparent 50%);
        z-index: 1;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }
    
    .hero-image {
        display: none; /* Скрываем изображение на мобильных */
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    
    /* ЗАГОЛОВОК - УЛУЧШЕННАЯ ТИПОГРАФИКА */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 24px;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: -0.02em;
    }
    
    .hero-title .highlight-text {
        display: block;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light-blue) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 4px;
        font-size: 2.2rem;
    }
    
    /* ОПИСАНИЕ */
    .hero-description-full {
        display: none;
    }
    
    .hero-description-mobile {
        display: block;
        font-size: 1.0625rem;
        line-height: 1.65;
        margin-bottom: 32px;
        padding: 0 10px;
        border-left: none;
        color: var(--text-secondary);
        font-weight: 400;
    }
    
    /* КНОПКИ - ПРОФЕССИОНАЛЬНОЕ РАСПОЛОЖЕНИЕ */
    .buttons-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0 auto 40px;
        max-width: 340px;
        width: 100%;
    }
    
    .button {
        width: 100%;
        min-height: 54px;
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .button-primary {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
        box-shadow: 0 4px 14px rgba(0, 86, 179, 0.25);
    }
    
    .button-primary:active {
        transform: scale(0.98);
    }
    
    .button-secondary {
        background: transparent;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }
    
    .button-secondary:active {
        background: rgba(0, 86, 179, 0.08);
    }
    
    .button i {
        font-size: 1.125rem;
    }
    
    /* СТАТИСТИКА - СОВРЕМЕННЫЙ ДИЗАЙН */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 0;
        padding: 0;
    }
    
    .hero-stat {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        backdrop-filter: blur(10px);
        padding: 20px 16px;
        border-radius: 16px;
        box-shadow: 
            0 4px 12px rgba(0, 86, 179, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0, 86, 179, 0.12);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .hero-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-light-blue));
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .hero-stat:active {
        transform: translateY(-2px);
        box-shadow: 
            0 6px 16px rgba(0, 86, 179, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    
    .hero-stat:active::before {
        opacity: 1;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
        font-weight: 800;
        color: var(--primary-blue);
        line-height: 1;
        letter-spacing: -0.02em;
    }
    
    .stat-label {
        font-size: 0.8125rem;
        color: var(--text-secondary);
        line-height: 1.3;
        font-weight: 500;
    }
    
    /* ========================================
       ОБЩИЕ СЕКЦИИ - ОПТИМИЗАЦИЯ
       ======================================== */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem; /* 28px */
        margin-bottom: 12px;
        line-height: 1.3;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem; /* 16px */
        margin-bottom: 30px;
        line-height: 1.6;
        text-align: center;
        color: var(--text-secondary);
    }
    
    /* ========================================
       О ПЛАТФОРМЕ - МОБИЛЬНАЯ ВЕРСИЯ КОМПАКТНАЯ
       ======================================== */
    .about {
        padding: 35px 0;
        background: var(--bg-primary);
    }
    
    .about::before {
        display: none;
    }
    
    /* ЗАГОЛОВОК - КОМПАКТНЫЙ */
    .about-header {
        margin-bottom: 20px;
    }
    
    .about-header .section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    /* ПОДЗАГОЛОВОК */
    .about-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
        padding: 0;
        margin-bottom: 0;
    }
    
    /* СТАТИСТИЧЕСКИЙ БАННЕР - КОМПАКТНАЯ МОБИЛЬНАЯ ВЕРСИЯ */
    .about-stats-banner {
        padding: 12px 10px;
        margin: 16px 0 20px;
        border-radius: 10px;
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 0;
        align-items: center;
        max-width: 100%;
    }
    
    .about-stat-item {
        padding: 4px 0;
        text-align: center;
    }
    
    .about-stat-number {
        font-size: 1.35rem;
        margin-bottom: 2px;
        font-weight: 800;
        line-height: 1;
    }
    
    .about-stat-label {
        font-size: 0.6875rem;
        line-height: 1.2;
    }
    
    .about-stat-divider {
        height: 32px;
        width: 1.5px;
    }
    
    /* КАРТОЧКИ О ПЛАТФОРМЕ - КОМПАКТНЫЕ */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }
    
    .about-card {
        padding: 18px;
        text-align: left;
        border-radius: 12px;
        transition: transform 0.2s ease;
    }
    
    .about-card:active {
        transform: scale(0.98);
    }
    
    .about-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        margin: 0 0 12px 0;
    }
    
    .about-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .about-card p {
        font-size: 0.875rem;
        line-height: 1.5;
        color: var(--text-secondary);
        margin: 0;
    }
    
    /* ========================================
       ПРЕИМУЩЕСТВА - МОБИЛЬНАЯ ВЕРСИЯ КОМПАКТНАЯ
       ======================================== */
    .features {
        padding: 45px 0;
        background: var(--bg-secondary);
    }
    
    .features::before {
        display: none; /* Убираем для производительности */
    }
    
    /* ЗАГОЛОВОК */
    .features-header {
        margin-bottom: 30px;
    }
    
    .features-header .section-title {
        font-size: 1.65rem; /* 26.4px */
        margin-bottom: 8px;
    }
    
    .features-subtitle {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 0;
        padding: 0 10px;
    }
    
    /* СЕТКА - 2 КОЛОНКИ НА МОБИЛЬНЫХ */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
        max-width: 100%;
    }
    
    /* КАРТОЧКИ - КОМПАКТНЫЕ */
    .feature-card {
        padding: 18px 14px;
        text-align: center;
        border-radius: 10px;
        align-items: center;
        transition: transform 0.2s ease;
    }
    
    .feature-card:active {
        transform: scale(0.97); /* Touch feedback */
    }
    
    /* ИКОНКИ - МАЛЕНЬКИЕ */
    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
        margin: 0 auto 10px;
    }
    
    /* ЗАГОЛОВКИ - КОМПАКТНЫЕ */
    .feature-card h3 {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 6px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    /* ОПИСАНИЯ - МАЛЕНЬКИЕ */
    .feature-card p {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.4;
        color: var(--text-secondary);
        margin: 0;
    }
    
    /* ========================================
       ГЕОГРАФИЯ - КОМПАКТНАЯ МОБИЛЬНАЯ ВЕРСИЯ
       ======================================== */
    .geography {
        padding: 35px 0;
        background: var(--bg-primary);
    }
    
    .geography::before {
        display: none;
    }
    
    .geography-header {
        margin-bottom: 22px;
    }
    
    .geography-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .geography-header .section-subtitle {
        font-size: 0.875rem;
        padding: 0;
    }
    
    /* СЕТКА - 3 КОЛОНКИ КОМПАКТНО */
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0;
        max-width: 100%;
    }
    
    /* КАРТОЧКИ - МИНИМАЛЬНЫЕ */
    .country-card {
        padding: 12px 8px;
        text-align: center;
        border-radius: 10px;
        gap: 6px;
        transition: none; /* Убираем все анимации на мобильных */
        cursor: default;
    }
    
    .country-card:active {
        transform: none; /* Убираем анимацию нажатия */
    }
    
    .country-card-more:active {
        transform: none;
    }
    
    /* ФЛАГИ - КОМПАКТНЫЕ И СТРОГО КОНТРОЛИРУЕМЫЕ */
    .country-flag {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px;
        min-height: 42px;
        max-width: 42px;
        max-height: 42px;
        border-width: 1.5px;
        box-shadow: 0 2px 6px rgba(0, 86, 179, 0.08);
    }
    
    .country-flag img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .country-card:active .country-flag {
        transform: none; /* Убираем анимацию флага при нажатии */
    }
    
    .country-card-more:active .country-flag {
        transform: none;
    }
    
    /* СТАРЫЕ КЛАССЫ */
    .country-flag-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .country-flag-icon {
        font-size: 1.2rem;
    }
    
    /* НАЗВАНИЯ - КОМПАКТНЫЕ */
    .country-name {
        font-size: 0.75rem;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }
    
    /* КОНТЕЙНЕР ИНФОРМАЦИИ */
    .country-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    /* КАРТОЧКА "ЕЩЕ..." ПОКАЗЫВАЕМ НА МОБИЛЬНЫХ */
    .country-card-more {
        display: flex; /* Показываем на мобильных */
        background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 123, 255, 0.03) 100%);
        border: 2px dashed var(--primary-blue);
        opacity: 0.9;
    }
    
    .country-flag-more i {
        font-size: 1.2rem;
    }
    
    .plus-number {
        font-size: 1.2rem;
    }
    
    /* ========================================
       УСЛОВИЯ ПОДКЛЮЧЕНИЯ - МОБИЛЬНАЯ ВЕРСИЯ
       ======================================== */
    .conditions {
        padding: 50px 0;
        background: var(--bg-primary);
    }
    
    .conditions::before {
        display: none;
    }
    
    .conditions-wrapper {
        margin-top: 30px;
    }
    
    /* СЕТКА УСЛОВИЙ - 1 СТОЛБЕЦ */
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
        margin-bottom: 30px;
    }
    
    /* КАРТОЧКИ УСЛОВИЙ */
    .condition-card {
        padding: 24px 20px;
        text-align: center;
        transition: transform 0.2s ease;
    }
    
    .condition-card:active {
        transform: scale(0.98);
    }
    
    .condition-number {
        display: none; /* Убираем номера на мобильных */
    }
    
    .condition-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin: 0 auto 14px;
    }
    
    .condition-title {
        font-size: 1.25rem; /* 20px */
        margin-bottom: 8px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .condition-description {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: 12px;
    }
    
    .condition-badge {
        font-size: 0.875rem; /* 14px */
        padding: 8px 18px;
    }
    
    /* ДЕТАЛИ УСЛОВИЙ - МОБИЛЬНАЯ */
    .condition-details {
        margin-top: 14px;
        gap: 6px;
    }
    
    .condition-detail-item {
        font-size: 0.8125rem;
    }
    
    .condition-detail-item i {
        font-size: 0.8125rem;
    }
    
    /* ЗАМЕТКА УСЛОВИЙ - МОБИЛЬНАЯ */
    .conditions-note {
        margin-top: 30px;
        padding: 18px 20px;
        gap: 12px;
    }
    
    .conditions-note i {
        font-size: 1.25rem;
    }
    
    .conditions-note p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* CTA БЛОК - КОМПАКТНЫЙ */
    .conditions-cta {
        padding: 28px 22px;
        margin-top: 20px;
        border-radius: 14px;
    }
    
    .conditions-cta::before {
        display: none; /* Убираем анимированный фон */
    }
    
    .cta-content h3 {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem; /* 16px */
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .cta-content .button {
        width: 100%;
        min-height: 52px;
    }
    
    /* ========================================
       КОНТАКТЫ - МОБИЛЬНАЯ ВЕРСИЯ
       ======================================== */
    .contact {
        padding: 50px 0;
        background: var(--bg-secondary);
    }
    
    .contact::before {
        display: none;
    }
    
    .contact-header {
        margin-bottom: 30px;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    /* ОСНОВНАЯ КАРТОЧКА */
    .contact-main-card {
        border-radius: 16px;
        overflow: hidden;
    }
    
    /* ЗАГОЛОВОК КАРТОЧКИ */
    .contact-card-header {
        padding: 32px 22px;
        text-align: center;
    }
    
    .contact-card-header::before {
        display: none; /* Убираем анимацию */
    }
    
    .contact-icon-wrapper {
        margin-bottom: 16px;
    }
    
    .contact-icon {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
    
    .contact-icon-pulse {
        display: none; /* Убираем пульсацию */
    }
    
    .contact-card-header h3 {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 0;
        font-weight: 600;
        line-height: 1.3;
    }
    
    /* ТЕЛО КАРТОЧКИ */
    .contact-card-body {
        padding: 30px 22px;
    }
    
    .contact-card-body p {
        font-size: 1rem; /* 16px */
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    /* ФУНКЦИИ */
    .contact-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 26px;
    }
    
    .contact-feature {
        padding: 14px 16px;
        text-align: left;
        border-radius: 10px;
        gap: 10px;
    }
    
    .contact-feature i {
        font-size: 1.125rem;
    }
    
    .contact-feature span {
        font-size: 0.9375rem; /* 15px */
    }
    
    /* КНОПКА TELEGRAM - КРУПНАЯ */
    .telegram-button {
        padding: 18px 32px;
        font-size: 1.125rem; /* 18px */
        width: 100%;
        min-height: 56px;
        border-radius: 12px;
        font-weight: 700;
    }
    
    .telegram-button i:first-child {
        font-size: 1.75rem;
    }
    
    /* ПРЕДУПРЕЖДЕНИЕ */
    .contact-warning {
        margin-top: 24px;
        padding: 18px 20px;
        border-radius: 12px;
    }
    
    .contact-warning p {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.6;
    }
    
    /* ========================================
       FOOTER - МОБИЛЬНАЯ ВЕРСИЯ
       ======================================== */
    .footer {
        padding: 45px 0 20px;
    }
    
    .footer::before {
        display: none;
    }
    
    /* ОСНОВНОЙ БЛОК */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    /* БРЕНД */
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 18px;
    }
    
    .footer-logo img {
        height: 36px;
    }
    
    .footer-logo span {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* СТАТИСТИКА FOOTER */
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    
    .footer-stat {
        padding: 14px 10px;
        text-align: center;
        border-radius: 10px;
    }
    
    .footer-stat strong {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }
    
    .footer-stat span {
        font-size: 0.75rem; /* 12px */
    }
    
    /* ССЫЛКИ - СКРЫВАЕМ НА МОБИЛЬНЫХ */
    .footer-links {
        display: none;
    }
    
    /* НИЖНЯЯ ЧАСТЬ */
    .footer-bottom {
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.875rem; /* 14px */
        order: 2;
    }
    
    .footer-badges {
        order: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-badge {
        font-size: 0.8125rem; /* 13px */
        padding: 7px 14px;
    }
}

@media (max-width: 480px) {
    /* ========================================
       МАЛЫЕ ЭКРАНЫ (320px - 480px)
       ======================================== */
    
    /* БАЗОВЫЕ НАСТРОЙКИ */
    body {
        font-size: 15px; /* Немного меньше для маленьких экранов */
    }
    
    .container {
        padding: 0 16px; /* Уменьшенные отступы */
    }
    
    /* HEADER - КОМПАКТНАЯ ВЕРСИЯ */
    .header {
        height: 64px;
        padding: 0 16px;
    }
    
    .logo-img {
        height: 44px; /* Еще компактнее */
    }
    
    .mobile-menu-btn {
        min-width: 48px;
        min-height: 48px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
    }
    
    /* MOBILE MENU */
    .mobile-menu-close {
        width: 50px;
        height: 50px;
        font-size: 1.85rem;
        top: 14px;
        right: 16px;
    }
    
    .mobile-nav {
        gap: 0.9rem;
        padding: 0 16px;
    }
    
    .mobile-nav-link {
        font-size: 1.15rem;
        padding: 16px 24px;
        min-height: 54px;
    }
    
    /* HERO */
    .hero {
        padding: 84px 0 40px;
    }
    
    .hero-title {
        font-size: 1.625rem; /* 26px */
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-description-mobile {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.55;
        margin-bottom: 22px;
        padding-left: 12px;
    }
    
    .button {
        min-height: 50px;
        padding: 15px 22px;
        font-size: 0.9375rem; /* 15px */
    }
    
    .buttons-group {
        gap: 10px;
    }
    
    /* СЕКЦИИ - КОМПАКТНЕЕ */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 24px;
    }
    
    /* О ПЛАТФОРМЕ - ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ */
    .about {
        padding: 35px 0;
    }
    
    .about-header {
        margin-bottom: 22px;
    }
    
    .about-header .section-title {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 8px;
    }
    
    .about-subtitle {
        font-size: 0.875rem; /* 14px */
        line-height: 1.5;
        padding: 0 5px;
    }
    
    /* СТАТИСТИКА - ВЕРТИКАЛЬНАЯ КОМПОНОВКА */
    .about-stats-banner {
        padding: 10px 12px;
        margin: 14px 0 18px;
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 0;
        align-items: center;
    }
    
    .about-stat-item {
        padding: 3px 0;
        text-align: center;
        border-bottom: none;
    }
    
    .about-stat-divider {
        display: block;
        height: 28px;
        width: 1px;
    }
    
    .about-stat-number {
        font-size: 1.25rem;
        margin-bottom: 2px;
        font-weight: 800;
        line-height: 1;
    }
    
    .about-stat-label {
        font-size: 0.625rem;
        line-height: 1.1;
    }
    
    .about-grid {
        gap: 12px;
    }
    
    .about-card {
        padding: 20px 18px;
    }
    
    .about-icon {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
    
    .about-card h3 {
        font-size: 1.0625rem; /* 17px */
        margin-bottom: 8px;
    }
    
    .about-card p {
        font-size: 0.875rem; /* 14px */
        line-height: 1.55;
    }
    
    /* ПРЕИМУЩЕСТВА - МАЛЕНЬКИЕ ЭКРАНЫ */
    .features {
        padding: 35px 0;
    }
    
    .features-header {
        margin-bottom: 24px;
    }
    
    .features-header .section-title {
        font-size: 1.5rem; /* 24px */
    }
    
    .features-subtitle {
        font-size: 0.875rem; /* 14px */
    }
    
    /* 2 КОЛОНКИ С МЕНЬШИМ ОТСТУПОМ */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* КАРТОЧКИ - ЕЩЕ КОМПАКТНЕЕ */
    .feature-card {
        padding: 16px 12px;
    }
    
    /* ИКОНКИ - МАЛЕНЬКИЕ */
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    
    /* ЗАГОЛОВКИ */
    .feature-card h3 {
        font-size: 0.875rem; /* 14px */
        margin-bottom: 5px;
    }
    
    /* ОПИСАНИЯ */
    .feature-card p {
        font-size: 0.75rem; /* 12px */
        line-height: 1.35;
    }
    
    /* ГЕОГРАФИЯ - МАЛЕНЬКИЕ ЭКРАНЫ */
    .geography {
        padding: 35px 0;
    }
    
    .geography-header {
        margin-bottom: 24px;
    }
    
    .geography-header .section-title {
        font-size: 1.5rem; /* 24px */
    }
    
    .geography-header .section-subtitle {
        font-size: 0.875rem; /* 14px */
    }
    
    /* СЕТКА - 3 КОЛОНКИ */
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    /* КАРТОЧКИ - ЕЩЕ КОМПАКТНЕЕ */
    .country-card {
        padding: 10px 6px;
        border-radius: 8px;
        gap: 5px;
    }
    
    /* ФЛАГИ - МАКСИМАЛЬНО КОНТРОЛИРУЕМЫЙ РАЗМЕР */
    .country-flag {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        min-height: 36px;
        max-width: 36px;
        max-height: 36px;
        border-width: 1.5px;
        box-shadow: 0 1px 4px rgba(0, 86, 179, 0.08);
    }
    
    .country-flag img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* СТАРЫЕ КЛАССЫ */
    .country-flag-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .country-flag-icon {
        font-size: 1rem;
    }
    
    /* НАЗВАНИЯ - ОЧЕНЬ МАЛЕНЬКИЕ */
    .country-name {
        font-size: 0.6875rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    /* КАРТОЧКА "ЕЩЕ..." ПОКАЗЫВАЕМ НА МАЛЕНЬКИХ ЭКРАНАХ */
    .country-card-more {
        display: flex;
        background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 123, 255, 0.03) 100%);
        border: 2px dashed var(--primary-blue);
        opacity: 0.9;
    }
    
    .country-flag-more i {
        font-size: 1rem;
    }
    
    .plus-number {
        font-size: 1rem;
    }
    
    /* УСЛОВИЯ */
    .conditions {
        padding: 40px 0;
    }
    
    .conditions-grid {
        gap: 12px;
    }
    
    .condition-card {
        padding: 20px 18px;
    }
    
    .condition-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    
    .condition-title {
        font-size: 1.125rem; /* 18px */
    }
    
    .condition-description {
        font-size: 0.875rem; /* 14px */
    }
    
    .conditions-cta {
        padding: 24px 18px;
        margin-top: 16px;
    }
    
    .cta-content h3 {
        font-size: 1.375rem; /* 22px */
    }
    
    .cta-content p {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 18px;
    }
    
    /* КОНТАКТЫ */
    .contact {
        padding: 40px 0;
    }
    
    .contact-icon {
        width: 68px;
        height: 68px;
        font-size: 1.85rem;
    }
    
    .contact-card-header {
        padding: 28px 18px;
    }
    
    .contact-card-header h3 {
        font-size: 1.375rem; /* 22px */
    }
    
    .contact-card-body {
        padding: 26px 18px;
    }
    
    .contact-card-body p {
        font-size: 0.9375rem; /* 15px */
    }
    
    .contact-features {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .contact-feature {
        padding: 12px 14px;
    }
    
    .contact-feature span {
        font-size: 0.875rem; /* 14px */
    }
    
    .telegram-button {
        padding: 16px 28px;
        font-size: 1.0625rem; /* 17px */
        min-height: 54px;
    }
    
    .telegram-button i:first-child {
        font-size: 1.6rem;
    }
    
    .contact-warning {
        padding: 16px 18px;
    }
    
    .contact-warning p {
        font-size: 0.875rem; /* 14px */
    }
    
    /* FOOTER */
    .footer {
        padding: 40px 0 18px;
    }
    
    .footer-main {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-logo img {
        height: 32px;
    }
    
    .footer-logo span {
        font-size: 1.375rem;
    }
    
    .footer-description {
        font-size: 0.875rem; /* 14px */
        line-height: 1.55;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-stat {
        padding: 14px 12px;
    }
    
    .footer-stat strong {
        font-size: 1.125rem; /* 18px */
    }
    
    .footer-stat span {
        font-size: 0.75rem; /* 12px */
    }
    
    .footer-bottom {
        padding: 16px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem; /* 13px */
    }
    
    .footer-badges {
        gap: 8px;
    }
    
    .footer-badge {
        font-size: 0.75rem; /* 12px */
        padding: 6px 12px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
