/* КРИТИЧЕСКОЕ ИСПРАВЛЕНИЕ ДЛЯ МОБИЛЬНЫХ ГОРОДОВ - МАКСИМАЛЬНЫЙ ПРИОРИТЕТ */

/* Базовые стили для всех устройств */
.cities-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
}

.city-card {
    display: flex !important;
    background: white !important;
    border-radius: 20px !important;
    padding: 2rem 1.5rem !important;
    text-decoration: none !important;
    color: #2B2B2B !important;
    border: 1px solid #E6B7C1 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    justify-content: space-between !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    /* Мобильные стили для городов */
    .cities-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .city-card {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .city-name {
        color: #2B2B2B !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .city-region {
        color: #5F5F5F !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
    }
    
    .city-card-arrow {
        color: #C48B9F !important;
        margin-top: 1rem !important;
    }
}

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    /* Colors */
    --primary-color: #C48B9F;
    --primary-light: #E6B7C1;
    --primary-dark: #D89AA4;
    --text-primary: #2B2B2B;
    --text-secondary: #5F5F5F;
    --text-light: #ccc;
    --background-main: #FAF7F5;
    --background-white: #FFFFFF;
    --success-color: #4CAF50;
    --warning-color: #FFD700;
    --border-color: rgba(230, 183, 193, 0.2);
    --border-light: rgba(230, 183, 193, 0.1);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 16px;
    --border-radius-large: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ========================================
   RESET AND BASE STYLES
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-main);
    overflow-x: hidden;
}

/* ========================================
   CUSTOM SCROLLBAR STYLES
======================================== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(230, 183, 193, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    border: 2px solid rgba(250, 247, 245, 0.5);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(230, 183, 193, 0.1);
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.1rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   LAYOUT COMPONENTS
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

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

.section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    padding-top: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header.aos-animate .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    opacity: 0.6;
}

.section-subtitle::before {
    margin-right: 0.5rem;
}

.section-subtitle::after {
    margin-left: 0.5rem;
}
/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(196, 139, 159, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 139, 159, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--background-white);
    color: var(--text-primary);
    border: 2px solid var(--primary-light);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(196, 139, 159, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(196, 139, 159, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(196, 139, 159, 0.3); }
}
/* ========================================
   HEADER
======================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 2px;
    line-height: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(-100%);
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-list li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav.active .mobile-nav-list li:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav-list a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}

.mobile-nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 183, 193, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-list a:hover::before {
    left: 100%;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--primary-color);
    background: rgba(230, 183, 193, 0.05);
    transform: scale(1.05);
}

.mobile-nav-cta {
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 280px;
}

.mobile-nav.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.mobile-nav-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(196, 139, 159, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 139, 159, 0.4);
}
/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 2;
    padding: 120px 0 120px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title::before {
    display: none;
}

.hero-title:hover {
    transform: none;
}

.hero-title:hover::before {
    display: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary-color);
    animation: typing 3s steps(40, end) 1s both, blink-caret 1s step-end infinite 4s;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    transition: all 0.3s ease;
}

.hero-description:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.hero-description::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.hero-description:hover::before {
    transform: scaleY(1);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 183, 193, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-feature:hover {
    background: rgba(230, 183, 193, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 139, 159, 0.15);
}

.hero-feature:hover::before {
    left: 100%;
}

.hero-feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hero-feature:hover .hero-feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(196, 139, 159, 0.3));
}

.hero-feature span:last-child {
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-feature:hover span:last-child {
    color: var(--text-primary);
}

.hero-cta {
    text-align: left;
    position: relative;
}

.hero-cta .btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.hero-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(196, 139, 159, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero-cta .btn:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.hero-cta-note::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23C48B9F'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

.hero-cta-note:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--border-light), rgba(196, 139, 159, 0.05));
}

.hero-bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-bg-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
    animation-duration: 10s;
}

.hero-bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    opacity: 0.5;
    animation-delay: -8s;
    animation-duration: 14s;
}

.hero-bg-circle-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    opacity: 0.3;
    animation-delay: -2s;
    animation-duration: 16s;
}

.hero-bg-circle-5 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 10%;
    opacity: 0.4;
    animation-delay: -6s;
    animation-duration: 11s;
}
/* ========================================
   FOR WHO SECTION
======================================== */
.for-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.for-who-card {
    background: var(--background-white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.for-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.85), rgba(230, 183, 193, 0.7));
    transition: opacity var(--transition-normal);
}

.for-who-card:hover::before {
    opacity: 0.9;
}

.for-who-card-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.for-who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.for-who-card-icon {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.for-who-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.for-who-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.for-who-card-title {
    color: white !important;
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        1px 1px 2px rgba(0, 0, 0, 0.5),
        0 0 8px rgba(0, 0, 0, 0.3);
}

/* Дополнительное правило для гарантии белого цвета */
.for-who-card .for-who-card-title,
.for-who-card-overlay .for-who-card-title {
    color: white !important;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        1px 1px 2px rgba(0, 0, 0, 0.5),
        0 0 8px rgba(0, 0, 0, 0.3);
}

.for-who-card-description {
    color: white;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.for-who-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    background-image: url('/assets/img/cta-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.for-who-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.9) 0%, rgba(230, 183, 193, 0.8) 50%, rgba(216, 154, 164, 0.9) 100%);
    z-index: 1;
}

.for-who-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.1; }
}

.for-who-cta > * {
    position: relative;
    z-index: 2;
}

.for-who-cta-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.for-who-cta .btn {
    position: relative;
    z-index: 2;
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.for-who-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--background-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(250, 247, 245, 0.75) 100%);
    z-index: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.benefit-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(250, 247, 245, 0.65) 100%);
}

.benefit-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(196, 139, 159, 0.3);
}

.benefit-card-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card-description {
    color: #333333;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.benefits-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--background-white) url('/assets/img/online-format-bg.png') center center/cover no-repeat;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.benefits-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 245, 0.85) 100%);
    z-index: 1;
}

.benefits-summary > * {
    position: relative;
    z-index: 2;
}

.benefits-summary h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.benefits-summary p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.benefits-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}
/* ========================================
   PROGRAM SECTION
======================================== */
.program.section {
    position: relative;
    background-image: url('../img/program-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
}

.program.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 245, 0.85);
    z-index: 0;
}

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

.program-modules {
    margin-bottom: 4rem;
}

.program-module {
    background: linear-gradient(135deg, var(--background-white) 0%, rgba(250, 247, 245, 0.8) 100%);
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.program-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transition: width var(--transition-normal);
}

.program-module:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.program-module:hover::before {
    width: 8px;
}

.program-module-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.program-module-header:hover {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.05) 0%, rgba(230, 183, 193, 0.3) 100%);
}

.program-module-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.3);
    position: relative;
    overflow: hidden;
}

.program-module-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform var(--transition-slow);
}

.program-module:hover .program-module-number::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.program-module-info {
    flex: 1;
    margin-right: 1rem;
}

.program-module-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-module-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-module-duration::before {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23C48B9F' stroke-width='2' fill='none'/%3E%3Cpath d='M12 6v6l4 2' stroke='%23C48B9F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5rem;
}

.program-module-toggle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(196, 139, 159, 0.3);
}

.program-module-toggle:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.4);
}

.program-module-toggle.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.program-module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 245, 0.6) 100%);
}

.program-module-content.active {
    max-height: 600px;
}

.program-module-content > div {
    padding: 0 2rem 2rem 3.5rem;
}

.program-module-description {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    padding-left: 1rem;
    font-family: var(--font-primary);
}

.program-module-lessons .lessons-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.program-lessons-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.program-lesson {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 3px solid var(--primary-light);
    transition: all var(--transition-normal);
}

.program-lesson:hover {
    background: rgba(255, 255, 255, 0.9);
    border-left-color: var(--primary-color);
    transform: translateX(8px);
}

.lesson-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: transform var(--transition-normal);
}

.program-lesson:hover .lesson-icon {
    transform: scale(1.2);
}

.program-lesson .lesson-title {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    font-family: var(--font-primary);
    font-size: 0.85rem;
}

.program-summary {
    background: linear-gradient(135deg, #D4A5B8 0%, #E8C4D0 50%, #F0D4DC 100%);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.program-summary > * {
    position: relative;
    z-index: 2;
}

.program-summary-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.program-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.program-stat-number svg {
    color: white;
    stroke: white;
    fill: white;
}

.program-stat-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.program-summary-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.program-bonus {
    color: white;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.program-summary .btn {
    background: white;
    color: var(--primary-color);
    border: 3px solid white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.program-summary .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
/* ========================================
   FORMAT SECTION
======================================== */
.format {
    background: var(--background-main) url('/assets/img/learning-format-bg.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.format::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 247, 245, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.format .container {
    position: relative;
    z-index: 2;
}

.format-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.format-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.format-preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.format-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 140px;
    align-items: center;
}

.format-feature:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.format-feature-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(196, 139, 159, 0.4);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.format-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.format-feature-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.format-feature-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 500;
    font-size: 0.95rem;
}

.lessons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    height: 300px;
}

.lesson-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 2px solid rgba(196, 139, 159, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
.lesson-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}*/

.lesson-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lessons-grid-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.lessons-grid-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.lessons-grid-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.format-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.format-advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    min-height: 140px;
    flex: 1;
    transition: all 0.3s ease;
}

.format-advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(196, 139, 159, 0.2);
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.03) 0%, rgba(230, 183, 193, 0.05) 100%);
}

.format-advantage:hover .advantage-icon {
    transform: scale(1.1);
    color: var(--primary-light);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.advantage-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.advantage-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}
/* ========================================
   TRUST SECTION
======================================== */
.trust {
    background: linear-gradient(135deg, #faf7f5 0%, #f8f4f2 100%);
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/privacy-bg.png') center center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.trust .container {
    position: relative;
    z-index: 2;
}

.trust .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust .section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* Убираем дублирующие стили для trust, используем базовые */

.trust .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.trust .section-subtitle::before,
.trust .section-subtitle::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    opacity: 0.6;
}

.trust .section-subtitle::before {
    margin-right: 0.5rem;
}

.trust .section-subtitle::after {
    margin-left: 0.5rem;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-feature {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.trust-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.trust-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.trust-feature:hover::before {
    transform: scaleX(1);
}

.trust-feature-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.1), rgba(230, 183, 193, 0.1));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.trust-feature:hover .trust-feature-icon {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.2), rgba(230, 183, 193, 0.2));
    transform: scale(1.1);
}

.trust-feature-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.trust-feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.trust-guarantees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-guarantee-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.trust-guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-icon {
    color: var(--primary-color);
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.1), rgba(230, 183, 193, 0.1));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.guarantee-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-list li::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.trust-certificates {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-certificates h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.5rem;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.certificate {
    text-align: center;
    transition: all var(--transition-normal);
}

.certificate:hover {
    transform: translateY(-4px);
}

.certificate-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.certificate:hover .certificate-img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.certificate p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.certificate p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
/* ========================================
   REVIEWS SECTION
======================================== */
.reviews {
    background: linear-gradient(135deg, #faf7f5 0%, #f8f4f2 100%);
    position: relative;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews-slider {
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 1.33rem);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    min-height: 60px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(196, 139, 159, 0.3);
    position: relative;
    flex-shrink: 0;
}

.review-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    z-index: -1;
    opacity: 0.3;
}

.avatar-letter {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-city {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.star {
    color: #e0e0e0;
    font-size: 1.5rem;
    transition: all 0.2s ease;
    line-height: 1;
}

.star.active {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.review-content {
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.6;
    font-family: var(--font-heading);
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.review-verified,
.review-anonymous {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-anonymous {
    color: var(--text-secondary);
    opacity: 0.8;
}

.review-verified svg,
.review-anonymous svg {
    color: inherit;
    flex-shrink: 0;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(196, 139, 159, 0.15);
    border: 2px solid rgba(196, 139, 159, 0.2);
    text-align: center;
}

.reviews-stat {
    text-align: center;
    position: relative;
}

.reviews-stat::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0.6;
}

.reviews-stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.stat-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.stat-stars {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.reviews-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  /*  background: url('/assets/img/reviews-cta-bg.png') center center/cover no-repeat;*/
    opacity: 0.05;
    z-index: 0;
}

.reviews-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    z-index: 1;
}

.reviews-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.reviews-cta p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.reviews-cta .btn {
    position: relative;
    z-index: 2;
}

.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.reviews-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reviews-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.3);
}

.reviews-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.reviews-nav-btn svg {
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.reviews-nav-btn:hover svg {
    color: white;
}

.reviews-pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(196, 139, 159, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.pagination-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(196, 139, 159, 0.5);
}

.pagination-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
/* ========================================
   TELEGRAM SECTION
======================================== */
.telegram {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
}

.telegram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.telegram-logo {
    width: 60px;
    height: 60px;
}

.telegram-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.telegram-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.telegram-icon svg {
    width: 64px;
    height: 64px;
}

.telegram-title-text {
    flex: 1;
}

.telegram-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.telegram-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.telegram-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.telegram-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.telegram-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--background-white);
    border: 2px solid rgba(196, 139, 159, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.telegram-feature:hover {
    border-color: var(--primary-color);
    background: rgba(196, 139, 159, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 139, 159, 0.15);
}

.telegram-feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-feature-icon svg {
    width: 32px;
    height: 32px;
}

.telegram-feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.telegram-pricing-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.pricing-header h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-free {
    margin-bottom: 1.5rem;
}

.pricing-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-free h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.countdown-text {
    color: var(--text-secondary);
}

.countdown-number {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: bold;
}

.pricing-paid p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.telegram-preview {
    margin-top: 4rem;
    text-align: center;
}

.telegram-preview-title {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-header-title {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-free-text {
    color: var(--text-primary);
    margin: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.telegram-chat-preview {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.chat-message-left {
    justify-content: flex-start;
}

.chat-message-right {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.chat-message-left .message-content {
    background: white;
    border-radius: 18px 18px 18px 4px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 70%;
}

.chat-message-right .message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px 18px 4px 18px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(196, 139, 159, 0.3);
    max-width: 70%;
}

.chat-message-right .message-name,
.chat-message-right .message-text {
    color: white;
}

.chat-message-right .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.message-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(196, 139, 159, 0.3);
}

.chat-message-right .message-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.message-time {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.7;
}

.message-text {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}
/* ========================================
   FAQ SECTION
======================================== */
.faq {
    background: linear-gradient(135deg, #faf7f5 0%, #f8f4f2 100%);
}

.faq-container {
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--background-white);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(196, 139, 159, 0.1);
    border: 2px solid rgba(196, 139, 159, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(196, 139, 159, 0.3);
    box-shadow: 0 6px 25px rgba(196, 139, 159, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.03) 0%, rgba(230, 183, 193, 0.05) 100%);
}

.faq-question-text {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform var(--transition-normal);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(196, 139, 159, 0.1);
}

.faq-toggle.active {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    border-top: 1px solid rgba(196, 139, 159, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-contact {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(196, 139, 159, 0.15);
    text-align: center;
    border: 2px solid rgba(196, 139, 159, 0.2);
}

.faq-contact h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.faq-contact p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-tabs {
    background: var(--background-white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    margin-bottom: 3rem;
}

.faq-tab-buttons {
    display: flex;
    background: var(--border-light);
    border-bottom: 1px solid var(--border-color);
}

.faq-tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-tab-btn.active,
.faq-tab-btn:hover {
    background: var(--background-white);
    color: var(--primary-color);
}

.faq-tab-content {
    padding: 2rem;
}

.faq-tab-panel {
    display: none;
}

.faq-tab-panel.active {
    display: block;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-method {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid var(--border-color);
}

.support-method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-method h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-method p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.support-method small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 1rem;
}
/* ========================================
   CTA SECTION
======================================== */
.cta {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('/assets/img/cta-bg.png') center center/cover no-repeat;*/
    opacity: 0.05;
    z-index: 0;
}

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

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-offer {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(196, 139, 159, 0.15);
    border: 2px solid rgba(196, 139, 159, 0.2);
    backdrop-filter: blur(10px);
}

.cta-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(196, 139, 159, 0.1);
}

.cta-price-old {
    margin-bottom: 0.5rem;
}

.cta-price-old .price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-price-old .price-value {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.3rem;
    margin-left: 0.5rem;
    opacity: 0.6;
}

.cta-price-new {
    margin-bottom: 1rem;
}

.cta-price-new .price-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-price-new .price-value {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-heading);
    margin-left: 0.5rem;
    display: block;
    margin-top: 0.5rem;
}

.cta-discount {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(196, 139, 159, 0.3);
}

.cta-features {
    margin-bottom: 1.5rem;
}

.cta-features-title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-features-list {
    list-style: none;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(196, 139, 159, 0.1);
}

.cta-feature:last-child {
    border-bottom: none;
}

.cta-feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
}

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

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

.cta-guarantee {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.cta-urgency {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(196, 139, 159, 0.15);
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid rgba(196, 139, 159, 0.2);
}

.urgency-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.urgency-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.timer-item {
    text-align: center;
    background: rgba(196, 139, 159, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 100px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

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

.cta-social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(196, 139, 159, 0.15);
    border: 2px solid rgba(196, 139, 159, 0.2);
}

.social-proof-item {
    text-align: center;
    padding: 1rem 2rem;
}

.social-proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.social-proof-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}
/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.3rem;
    display: block;
}

.footer-logo .logo-tagline {
    color: var(--primary-color);
    display: block;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-section-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contact-label {
    color: var(--primary-color);
    font-weight: 500;
    min-width: 60px;
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.telegram-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.telegram-icon-link:hover {
    transform: scale(1.1);
}

.telegram-icon-link svg {
    transition: all 0.3s ease;
}

.telegram-icon-link:hover svg {
    fill: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-age-warning p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
}
/* ========================================
   FIXED ELEMENTS
======================================== */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
}

.fixed-cta .btn {
    box-shadow: 0 8px 25px rgba(196, 139, 159, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 139, 159, 0.3);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 499;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 139, 159, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}
/* ========================================
   MODALS
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/modal-header-bg.png') center/cover;
    opacity: 0.08;
    border-radius: var(--border-radius-large);
    pointer-events: none;
    z-index: 0;
}

.modal-header,
.modal-body {
    position: relative;
    z-index: 1;
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.modal-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
    text-align: center;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}


.modal-close:hover {
    background: var(--border-light);
    color: var(--primary-color);
}

.modal-body {
    padding: 1rem;
}

.age-check-modal {
    background: rgba(0, 0, 0, 0.8);
}

.age-check-content {
    max-width: 400px;
    text-align: center;
}

.age-check-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-check-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-check-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.age-check-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid rgba(230, 183, 193, 0.3);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-help {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.order-summary {
    background: var(--border-light);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.order-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* Callback Modal Styles */
.callback-summary {
    background: var(--border-light);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.callback-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.callback-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
}

.callback-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    padding: 0.4rem 0.3rem;
    border: 1.5px solid rgba(196, 139, 159, 0.3);
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
}

.callback-feature .feature-icon {
    flex-shrink: 0;
}

.callback-feature .feature-icon svg {
    width: 14px;
    height: 14px;
}

.callback-feature:hover {
    border-color: var(--primary-color);
    background: rgba(196, 139, 159, 0.05);
}

/* Telegram Modal Styles */
.telegram-summary {
    background: var(--border-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.telegram-icon-large {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.telegram-icon-large svg {
    color: var(--primary-color);
    width: 22px;
    height: 22px;
}

.telegram-summary h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modal .telegram-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.modal .telegram-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.modal .telegram-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    padding: 0.5rem 0.4rem;
    border: 1.5px solid rgba(196, 139, 159, 0.3);
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 70px;
}

.modal .telegram-feature .feature-icon {
    flex-shrink: 0;
}

.modal .telegram-feature .feature-icon svg {
    width: 14px;
    height: 14px;
}

.modal .telegram-feature:hover {
    border-color: var(--primary-color);
    background: rgba(196, 139, 159, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 139, 159, 0.15);
}

.telegram-pricing {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(196, 139, 159, 0.2);
}

.price-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.spots-remaining {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.spots-remaining strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.order-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.order-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border: 1.5px solid rgba(196, 139, 159, 0.3);
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    min-height: 60px;
    text-align: left;
}

.order-feature:hover {
    border-color: var(--primary-color);
    background: rgba(196, 139, 159, 0.05);
}

.order-feature .feature-icon {
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.order-feature .feature-icon svg {
    width: 20px;
    height: 20px;
}

.order-feature > span:not(.feature-icon) {
    display: flex;
    align-items: center;
    line-height: 1.3;
}

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

.price-old {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.price-new {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    margin: 0.1rem 0;
}

.price-discount {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
}

.order-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.guarantee-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}
/* ========================================
   SVG ICONS STYLES
======================================== */
.hero-feature-icon svg,
.telegram-feature-icon svg,
.cta-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.format-feature-icon svg,
.trust-feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.advantage-icon svg,
.benefit-icon svg,
.benefit-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.note-icon svg,
.suggestion-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.age-check-icon svg {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
}

.program-stat-number svg,
.stat-number svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.review-verified svg {
    width: 16px;
    height: 16px;
    color: var(--success-color);
    margin-right: 4px;
}

.support-icon svg,
.support-method-icon svg,
.mission-icon svg,
.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.summary-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

/* Icon hover animations */
.hero-feature-icon:hover svg,
.telegram-feature-icon:hover svg,
.format-feature-icon:hover svg,
.trust-feature-icon:hover svg,
.advantage-icon:hover svg,
.benefit-icon:hover svg,
.guarantee-icon:hover svg,
.feature-icon:hover svg,
.support-icon:hover svg,
.mission-icon:hover svg {
    transform: scale(1.1);
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateY(-1px);
    transition: transform var(--transition-fast);
}
/* ========================================
   ADDITIONAL PAGE STYLES
======================================== */

/* Course page styles */
.course-hero {
    background: linear-gradient(135deg, var(--border-light), rgba(196, 139, 159, 0.05));
    padding: 140px 0 80px;
}

.course-hero .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.course-hero h1 {
    position: relative;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.course-hero .section-header.aos-animate h1::after {
    transform: translateX(-50%) scaleX(1);
}

/* Course Benefits Section */
.course-benefits {
    background: var(--background-main);
}

.course-benefits .section-header {
    position: relative;
}

/* Убираем дублирующие стили для course-benefits, используем базовые */

/* Course Structure Section */
.course-structure {
    background: linear-gradient(135deg, rgba(250, 247, 245, 0.5), rgba(255, 255, 255, 0.8));
    background-image: url('../img/learning-structure-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.course-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.course-structure .container {
    position: relative;
    z-index: 2;
}

.course-structure .section-header {
    position: relative;
}

/* Убираем дублирующие стили для course-structure, используем базовые */

/* Course Prerequisites Section */
.course-prerequisites {
    background: var(--background-white);
}

.course-prerequisites .section-header {
    position: relative;
}

/* Убираем дублирующие стили для course-prerequisites, используем базовые */

.course-overview {
    margin-top: 3rem;
}

.course-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(196, 139, 159, 0.3);
    position: relative;
    overflow: hidden;
}

.course-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.course-stat {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.course-stat:hover {
    transform: translateY(-5px);
}

.course-stat .stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    min-height: 70px;
}

.course-stat .stat-number svg {
    color: white;
    fill: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.course-stat .stat-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-benefits .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.course-benefits .benefit-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 247, 245, 0.9) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    border: 1px solid rgba(230, 183, 193, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.course-benefits .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.course-benefits .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

.course-benefits .benefit-card:hover::before {
    transform: scaleX(1);
}

.course-benefits .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.3);
    transition: all 0.4s ease;
}

.course-benefits .benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(196, 139, 159, 0.4);
}

.course-benefits .benefit-icon svg {
    width: 40px;
    height: 40px;
}

.course-benefits .benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.course-benefits .benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.structure-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.structure-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-color), var(--primary-dark));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.4);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(196, 139, 159, 0.5);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 245, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    border: 1px solid rgba(230, 183, 193, 0.2);
    margin: 0 2.5rem;
    flex: 1;
    max-width: 380px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.timeline-content li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23C48B9F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.prerequisites-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.prerequisites-required,
.prerequisites-recommended {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 245, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    border: 1px solid rgba(230, 183, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prerequisites-required::before,
.prerequisites-recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.prerequisites-required:hover,
.prerequisites-recommended:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

.prerequisites-required h3,
.prerequisites-recommended h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

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

.requirements-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.requirements-list li:hover {
    color: var(--text-primary);
}

.requirements-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23C48B9F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.prerequisites-note {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(230, 183, 193, 0.3);
    box-shadow: 0 4px 16px rgba(196, 139, 159, 0.1);
}

.prerequisites-note p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.prerequisites-note strong {
    color: var(--primary-color);
    font-weight: 700;
}
/* Program page styles */
.program-hero {
    background: linear-gradient(135deg, var(--border-light), rgba(196, 139, 159, 0.05));
    padding: 100px 0 80px;
}

.program-hero .section-header {
    text-align: center;
    position: relative;
}

.program-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-hero h1 {
    padding-top: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-hero .section-header.aos-animate h1::after {
    transform: translateX(-50%) scaleX(1);
}

/* About, FAQ, Privacy page hero styles */
.about-hero,
.faq-hero,
.privacy-hero {
    background: linear-gradient(135deg, var(--border-light), rgba(196, 139, 159, 0.05));
    padding: 100px 0 80px;
}

.about-hero .section-header,
.faq-hero .section-header,
.privacy-hero .section-header {
    text-align: center;
    position: relative;
}

.about-hero h1,
.faq-hero h1,
.privacy-hero h1 {
    padding-top: 1.5rem;
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero h1::after,
.faq-hero h1::after,
.privacy-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-hero .section-header.aos-animate h1::after,
.faq-hero .section-header.aos-animate h1::after,
.privacy-hero .section-header.aos-animate h1::after {
    transform: translateX(-50%) scaleX(1);
}

/* Learning Process Section */
.learning-process {
    background: var(--background-main);
}

/* Обеспечиваем видимость декоративной линии в learning-process */
.learning-process .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

/* Убираем дублирующие стили для learning-process, используем базовые */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 245, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    text-align: center;
    border: 1px solid rgba(230, 183, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(196, 139, 159, 0.4);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.step-features span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Platform Features Section */
.platform-features {
    background: linear-gradient(135deg, rgba(250, 247, 245, 0.5), rgba(255, 255, 255, 0.8));
}

/* Убираем дублирующие стили для platform-features, используем базовые */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 245, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 183, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

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

.feature-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(196, 139, 159, 0.4);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

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

/* Support System Section */
.support-system {
    background: var(--background-white);
}

/* Убираем дублирующие стили для support-system, используем базовые */

.support-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.support-option {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 245, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    border: 1px solid rgba(230, 183, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

.support-option:hover::before {
    transform: scaleX(1);
}

.support-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(196, 139, 159, 0.3);
}

.support-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.support-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-content ul {
    list-style: none;
    padding: 0;
}

.support-content li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.support-content li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23C48B9F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.support-guarantee {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(230, 183, 193, 0.3);
    box-shadow: 0 4px 16px rgba(196, 139, 159, 0.1);
}

.support-guarantee h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.support-guarantee p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Learning Schedule Section */
.learning-schedule {
    background: var(--background-main);
}

/* Убираем дублирующие стили для learning-schedule, используем базовые */

/* FAQ Page Styles */
.faq-categories {
    background: var(--background-main);
}

/* Убираем дублирующие стили для faq-categories, используем базовые */

.faq-support {
    background: linear-gradient(135deg, rgba(250, 247, 245, 0.5), rgba(255, 255, 255, 0.8));
}

/* Убираем дублирующие стили для faq-support, используем базовые */

/* About Page Styles */
.about-story {
    background: var(--background-main);
}

.about-story .section-title {
    position: relative;
    margin-bottom: 2rem;
}

/* Убираем дублирующие стили для about sections, используем базовые */

.schedule-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 245, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 139, 159, 0.15);
    text-align: center;
    border: 1px solid rgba(230, 183, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.schedule-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 139, 159, 0.25);
    border-color: var(--primary-color);
}

.schedule-option:hover::before {
    transform: scaleX(1);
}

.schedule-option h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.schedule-duration {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(196, 139, 159, 0.3);
}

.schedule-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.schedule-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.schedule-content li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.schedule-content li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23C48B9F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.schedule-note {
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.08) 0%, rgba(230, 183, 193, 0.12) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(230, 183, 193, 0.3);
    box-shadow: 0 4px 16px rgba(196, 139, 159, 0.1);
}

.schedule-note p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.schedule-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

.schedule-note {
    background: var(--border-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}
/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
}

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

.mission-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-item {
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.1), rgba(216, 154, 164, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(216, 154, 164, 0.1));
}

.mission-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-icon svg {
    width: 48px;
    height: 48px;
}

.mission-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.1), rgba(216, 154, 164, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(216, 154, 164, 0.1));
}

.member-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
}

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

.member-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-credentials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.member-credentials span {
    background: rgba(230, 183, 193, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.member-credentials svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.approach-features {
    max-width: 800px;
    margin: 0 auto;
}

.approach-feature {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.1), rgba(216, 154, 164, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.approach-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(216, 154, 164, 0.1));
}

.approach-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.approach-feature:nth-child(even):hover {
    transform: translateX(-10px);
}

.feature-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

.stat-item {
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.1), rgba(216, 154, 164, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(216, 154, 164, 0.1));
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

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

.certificates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.certificates-text h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.certificates-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.certificates-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.certificates-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23C48B9F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.certificates-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.certificate-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 1rem;
}

.certificate-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.1), rgba(216, 154, 164, 0.05));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(216, 154, 164, 0.1));
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
}

.contact-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-method small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(216, 154, 164, 0.1));
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-cta-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}
/* Privacy page styles */
.privacy-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.privacy-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230, 183, 193, 0.3);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.privacy-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.privacy-note {
    background: var(--border-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: rgba(230, 183, 193, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.security-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.privacy-summary {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.privacy-summary h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.summary-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--border-light);
    padding: 1rem;
    border-radius: 12px;
}

.summary-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-point span:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
/* ========================================
   ANIMATIONS
======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-out"] {
    transform: scale(1.2);
}

[data-aos="zoom-out"].aos-animate {
    transform: scale(1);
}

[data-aos="slide-up"] {
    transform: translateY(100px);
}

[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-down"] {
    transform: translateY(-100px);
}

[data-aos="slide-down"].aos-animate {
    transform: translateY(0);
}

/* Hero specific animations */
.hero-image {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image.aos-animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.hero-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 80px;
}

.hero-text.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.hero-text.aos-animate .hero-title {
    animation: none;
}

@keyframes title3DAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-feature {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-feature.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Дополнительные анимации для текстовых элементов */
.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text.aos-animate .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text.aos-animate .hero-description {
    opacity: 1;
    transform: translateY(0);
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-bg-circle {
    opacity: 0;
    transform: scale(0);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatAnimation 8s ease-in-out infinite;
}

.hero-bg-circle.aos-animate {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-circle-1 {
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-bg-circle-2 {
    animation-delay: -4s;
    animation-duration: 10s;
}

.hero-bg-circle-3 {
    animation-delay: -8s;
    animation-duration: 14s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(-1deg);
    }
    75% {
        transform: translateY(-25px) translateX(5px) rotate(1.5deg);
    }
}

/* Stagger animation for cards */
.for-who-card,
.benefit-card,
.trust-feature,
.review-card,
.process-step,
.feature-card,
.mission-item,
.team-member,
.stat-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.for-who-card.aos-animate,
.benefit-card.aos-animate,
.trust-feature.aos-animate,
.review-card.aos-animate,
.process-step.aos-animate,
.feature-card.aos-animate,
.mission-item.aos-animate,
.team-member.aos-animate,
.stat-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Button hover animations */
.btn {
    transition: all var(--transition-normal), transform var(--transition-fast);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Loading animation for images */
.hero-img,
.about-img,
.benefits-img,
.member-img,
.certificate-img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-img.loaded,
.about-img.loaded,
.benefits-img.loaded,
.member-img.loaded,
.certificate-img.loaded {
    opacity: 1;
}
/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   Структура: Desktop → Tablet → Mobile → Small Mobile
======================================== */

/* ========================================
   TABLET STYLES (1024px and below)
   Планшетная версия - 2 колонки в сетках
======================================== */
@media (max-width: 1024px) {
    /* === БАЗОВЫЕ ПЕРЕМЕННЫЕ === */
    :root {
        --section-padding: 70px 0;
        --container-padding: 0 20px;
    }
    
    /* === HEADER === */
    .header-content {
        padding: 0.8rem 0;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-list a {
        font-size: 0.95rem;
    }
    
    /* === HERO SECTION === */
    .hero-content {
        gap: 3rem;
        padding: 100px 0 80px;
        text-align: center; /* Центрируем контент на планшетах */
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
        text-align: center; /* Центрируем заголовок на планшетах */
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .hero-feature {
        padding: 0.6rem;
    }
    
    /* === GRID LAYOUTS - 2 КОЛОНКИ === */
    .for-who-grid,
    .benefits-grid,
    .course-benefits .benefits-grid,
    .trust-features,
    .format-advantages,
    .process-steps,
    .stats-grid,
    .cities-grid,
    .team-grid,
    .schedule-options,
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    /* === КАРТОЧКИ === */
    .for-who-card {
        min-height: 300px;
    }
    
    .for-who-card-title {
        font-size: 1.2rem;
    }
    
    .for-who-card-description {
        font-size: 0.9rem;
    }
    
    .city-card {
        padding: 1.5rem;
    }
    
    /* === СПЕЦИАЛЬНЫЕ СЕТКИ === */
    .format-advantages {
        max-width: 600px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* === PROGRAM SECTION === */
    .program-module-header {
        padding: 1.5rem;
    }
    
    .program-module-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .program-module-title {
        font-size: 1.3rem;
    }
    
    /* === FORMAT SECTION === */
    .format-content {
        gap: 3rem;
    }
    
    .format-feature {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .format-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    /* === REVIEWS === */
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    /* === COURSE STATS === */
    .course-stats {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
    
    .course-stat {
        flex: 0 0 calc(50% - 1rem);
    }
    
    /* === PREREQUISITES === */
    .prerequisites-content {
        gap: 2rem;
    }
    
    .prerequisites-required,
    .prerequisites-recommended {
        padding: 2rem;
    }
    
    /* === SUPPORT OPTIONS === */
    .support-options {
        gap: 2rem;
    }
    
    .support-option {
        padding: 2rem;
    }
    
    /* === ABOUT CONTENT === */
    .about-content {
        gap: 3rem;
    }
    
    /* === FAQ TABS === */
    .faq-tab-buttons {
        flex-wrap: wrap;
    }
    
    .faq-tab-btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 150px;
    }
    
    /* === CITY CARDS === */
    .city-card {
        padding: 1.5rem;
        background: var(--background-white);
    }
    
    .city-name {
        font-size: 1.3rem;
        color: var(--text-primary);
    }
    
    .city-region {
        font-size: 0.95rem;
        color: var(--text-secondary);
    }
    
    /* === CITIES GRID === */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    /* AOS Fix - принудительно показываем city-card на планшетах */
    .city-card[data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Полное отключение AOS на планшетах */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* === CTA SECTIONS === */
    .for-who-cta {
        padding: 2.5rem 2rem;
    }
    
    .for-who-cta-text {
        font-size: 1.6rem;
    }
    
    .cta-content {
        gap: 3rem;
    }
    
    /* === FOOTER === */
    .footer-main {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
    
    /* === MODALS === */
    .modal-content {
        max-width: 450px;
        margin: 20px;
    }
    
    /* === TYPOGRAPHY === */
    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}
/* === КОНЕЦ TABLET STYLES === */

/* ========================================
   СПЕЦИАЛЬНАЯ АДАПТАЦИЯ ДЛЯ ДИАПАЗОНА 480-767px
======================================== */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 15px !important;
    }
    
    .hero-content {
        padding: 85px 0 35px;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 4.2vw, 1.5rem) !important; /* Уменьшили для диапазона 480-767px */
        margin-bottom: 0.8rem;
        line-height: 1.1 !important;
        text-align: center !important;
        word-break: break-word;
        hyphens: auto;
        letter-spacing: -0.2px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 2.8vw, 1.1rem) !important;
        margin-bottom: 0.6rem;
        line-height: 1.2 !important;
        letter-spacing: -0.1px;
    }
    
    .hero-description {
        font-size: clamp(0.75rem, 2.2vw, 0.95rem) !important;
        margin-bottom: 1.2rem;
        line-height: 1.3 !important;
    }
    
    .hero-image {
        height: 180px;
        margin-top: 1rem;
    }
    
    .hero-img {
        height: 180px;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        padding: 0.6rem;
        border-radius: 10px;
    }
    
    .hero-feature-icon {
        font-size: 1rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .hero-cta-note {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        line-height: 1.3;
    }
}

/* ========================================
   MOBILE STYLES (768px and below)
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 15px;
        --border-radius: 12px;
        --border-radius-large: 16px;
    }
    
    /* ПРЕДОТВРАЩЕНИЕ ГОРИЗОНТАЛЬНОГО СКРОЛЛА */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 15px !important;
    }
    
    /* Typography */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        letter-spacing: 0.5px;
        padding-top: 1rem;
    }
    
    .section-title::before {
        width: 40px;
        height: 2px;
    }
    
    .section-title::after {
        width: 25px;
        bottom: -6px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        font-size: 1.2rem;
    }
    
    /* Header */
    .header {
        padding: 0;
    }
    
    .header-content {
        padding: 0.6rem 0;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Navigation */
    .mobile-nav {
        display: block;
    }
    
    .mobile-nav-content {
        padding: 1.5rem;
    }
    
    .mobile-nav-list li {
        margin: 1rem 0;
    }
    
    .mobile-nav-list a {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Hero Section - правильная мобильная адаптация */
    .hero {
        min-height: auto;
        padding: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 90px 0 40px; /* Уменьшили отступ сверху для лучшего позиционирования */
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        position: static;
        width: 100%;
        height: 250px;
        order: 2;
        margin-top: 1.5rem;
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    
    .hero-img {
        height: 250px;
        object-fit: cover;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 1rem;
        line-height: 1.2;
        text-align: center; /* Центрируем заголовок на мобильных */
        text-shadow: 
            1px 1px 0px var(--primary-light),
            2px 2px 0px rgba(230, 183, 193, 0.7),
            3px 3px 0px rgba(230, 183, 193, 0.5),
            4px 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-description::before {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        padding: 0.8rem;
        border-radius: 10px;
    }
    
    .hero-feature-icon {
        font-size: 1.1rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.9rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-cta-note {
        font-size: 0.85rem;
        padding-left: 1.2rem;
        margin-top: 1rem;
    }
    
    /* Grid Layouts - All single column */
    .for-who-grid,
    .benefits-grid,
    .course-benefits .benefits-grid,
    .trust-features,
    .trust-guarantees,
    .format-advantages,
    .process-steps,
    .features-grid,
    .schedule-options,
    .stats-grid,
    .mission-content,
    .team-grid,
    .contact-info,
    .support-methods,
    .security-measures,
    .summary-points,
    .cities-benefits-grid,
    .cities-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
    }
    
    /* For Who Cards */
    .for-who-card {
        min-height: 220px;
        border-radius: 16px;
    }
    
    /* Benefit Cards - адаптация для мобильных */
    .benefit-card,
    .course-benefits .benefit-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
        text-align: center;
        border-radius: 16px;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .for-who-card-overlay {
        padding: 1.2rem;
        gap: 0.6rem;
    }
    
    .for-who-card-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .for-who-card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .for-who-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .for-who-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        border-radius: 16px;
    }
    
    .for-who-cta-text {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .for-who-cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Benefits Section */
    .benefit-card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .benefit-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-card-description {
        font-size: 0.9rem;
    }
    
    .benefits-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .benefits-img {
        height: 200px;
    }
    
    /* Program Section */
    .program-module {
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }
    
    .program-module-header {
        padding: 1.2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .program-module-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .program-module-info {
        flex: 1;
        min-width: 200px;
    }
    
    .program-module-title {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .program-module-duration {
        font-size: 0.9rem;
    }
    
    .program-module-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .program-module-content > div {
        padding: 0 1.2rem 1.5rem 1.2rem;
    }
    
    .program-module-description {
        font-size: 0.95rem;
        padding-left: 0;
    }
    
    .program-lesson {
        padding: 0.8rem;
        border-radius: 10px;
    }
    
    .lesson-icon {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .program-lesson .lesson-title {
        font-size: 0.8rem;
    }
    
    .program-summary {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .program-summary-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .program-stat-number {
        font-size: 2.2rem;
    }
    
    .program-summary-title {
        font-size: 1.6rem;
    }
    
    .program-bonus {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .program-summary .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* Course Stats - адаптация для мобильных */
    .course-stats {
        flex-direction: column;
        gap: 1.5rem !important;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .course-stat {
        padding: 0.5rem;
    }
    
    .course-stat .stat-number {
        font-size: 2.2rem;
        min-height: 50px;
        margin-bottom: 0.3rem;
    }
    
    .course-stat .stat-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    /* Prerequisites - адаптация для мобильных */
    .prerequisites-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .prerequisites-required,
    .prerequisites-recommended {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .prerequisites-required h3,
    .prerequisites-recommended h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .requirements-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .prerequisites-note {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    /* Support Options - адаптация для мобильных */
    .support-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .support-option {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .support-icon {
        align-self: center;
    }
    
    .support-content {
        text-align: center;
    }
    
    .support-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .support-content ul {
        text-align: left;
        margin-top: 1rem;
    }
    
    .support-content li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    /* FAQ Tabs - адаптация для мобильных */
    .faq-tab-buttons {
        flex-direction: column;
        gap: 0;
    }
    
    .faq-tab-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .faq-tab-btn:last-child {
        border-bottom: none;
    }
    
    .faq-tab-content {
        padding: 1.5rem;
    }
    
    .faq-tabs {
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    
    /* About Content - адаптация для мобильных */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .about-text {
        order: 1;
        text-align: center;
    }
    
    .about-image {
        order: 2;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    /* City Cards - улучшение читаемости на мобильных */
    .city-card {
        padding: 1.5rem !important;
        flex-direction: column;
        text-align: center;
        background: var(--background-white) !important;
        border: 1px solid var(--border-color);
    }
    
    .city-name {
        font-size: 1.2rem !important;
        color: var(--text-primary) !important;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .city-region {
        font-size: 0.9rem !important;
        color: var(--text-secondary) !important;
        font-weight: 500;
        margin-bottom: 0;
    }
    
    .city-card-arrow {
        margin-left: 0;
        margin-top: 1rem;
        background: rgba(196, 139, 159, 0.15);
    }
    
    /* AOS Fix - принудительно показываем city-card на мобильных */
    .city-card[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Дополнительное исправление для cities-grid */
    .cities-grid {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    /* Полное отключение AOS на мобильных */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Специальные правила для city-card на мобильных */
    .city-card[data-aos] {
        display: flex !important;
    }
    
    /* Финальное исправление для cities-grid - максимальный приоритет */
    .cities-grid-section .cities-grid,
    .cities-grid {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .cities-grid-section .city-card,
    .city-card {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* РАДИКАЛЬНОЕ ИСПРАВЛЕНИЕ: Принудительное отображение городов на мобильных */
    
    /* Убираем все AOS атрибуты и анимации для городов */
    .cities-grid-section,
    .cities-grid-section * {
        animation: none !important;
        transition: none !important;
    }
    
    .cities-grid-section .cities-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    
    .cities-grid-section .city-card {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        background: #FFFFFF !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        border: 1px solid #E6B7C1 !important;
        flex-direction: column !important;
        text-align: center !important;
        box-shadow: 0 4px 20px rgba(196, 139, 159, 0.1) !important;
        text-decoration: none !important;
        color: #2B2B2B !important;
        margin-bottom: 0 !important;
    }
    
    .cities-grid-section .city-card:before,
    .cities-grid-section .city-card:after {
        display: none !important;
    }
    
    .cities-grid-section .city-name {
        color: #2B2B2B !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.5rem !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
    
    .cities-grid-section .city-region {
        color: #5F5F5F !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        opacity: 1 !important;
        margin: 0 !important;
        animation: none !important;
        transition: none !important;
    }
    
    .cities-grid-section .city-card-arrow {
        color: #C48B9F !important;
        margin-top: 1rem !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
    
    /* Полностью отключаем AOS для всех элементов на странице городов */
    .cities-grid-section [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        visibility: visible !important;
    }
    
    .cities-grid-section [data-aos]:before,
    .cities-grid-section [data-aos]:after {
        display: none !important;
    }
    
    /* Format Section - ИСПРАВЛЕНО: иконки видны на мобильных */
    .format-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .format-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
        border-radius: 12px;
        min-height: auto;
    }
    
    .format-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 auto;
        display: flex !important; /* ПРИНУДИТЕЛЬНО показываем иконки */
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        box-shadow: 0 6px 20px rgba(196, 139, 159, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--primary-color);
    }
    
    .format-feature-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .format-feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .format-feature-description {
        font-size: 0.9rem;
    }
    
    .lessons-grid {
        height: 180px;
        gap: 0.4rem;
    }
    
    .lessons-grid-info {
        padding: 0.8rem;
    }
    
    .lessons-grid-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .lessons-grid-info p {
        font-size: 0.8rem;
    }
    
    .format-advantages {
        max-width: none;
        gap: 1rem;
    }
    
    .format-advantage {
        min-height: 100px;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .advantage-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        display: flex !important; /* ПРИНУДИТЕЛЬНО показываем иконки */
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
    }
    
    .advantage-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .advantage-content p {
        font-size: 0.85rem;
    }
    
    /* Trust Section */
    .trust-feature {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .trust-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .trust-feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .trust-feature-description {
        font-size: 0.9rem;
    }
    
    .trust-guarantee-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .guarantee-header h3 {
        font-size: 1.2rem;
    }
    
    .guarantee-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.8rem;
    }
    
    .guarantee-list li::before {
        width: 14px;
        height: 14px;
    }
    
    .trust-certificates {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .certificates-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .certificate-img {
        width: 60px;
        height: 60px;
    }
    
    /* Reviews Section - ИСПРАВЛЕНО: правильная работа слайдера */
    .reviews-slider {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    .reviews-container {
        gap: 0 !important; /* Убираем gap для мобильных */
        width: auto;
        display: flex !important;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .review-card {
        flex: 0 0 100% !important; /* Каждая карточка занимает 100% ширины слайдера */
        padding: 1.5rem;
        border-radius: 16px;
        min-height: 280px;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box;
    }
    
    .review-header {
        margin-bottom: 1.5rem;
        min-height: 50px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.2rem;
    }
    
    .review-name {
        font-size: 1.1rem;
    }
    
    .review-city {
        font-size: 0.9rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .review-text::before {
        font-size: 1.6rem;
        top: -0.1rem;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .reviews-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .reviews-cta h3 {
        font-size: 1.5rem;
    }
    
    .reviews-cta p {
        font-size: 1rem;
    }
    
    .reviews-navigation {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    /* СКРЫВАЕМ точки пагинации на мобильных */
    .reviews-pagination {
        display: none !important;
    }
    
    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Telegram Section */
    .telegram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .telegram-title-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .telegram-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .telegram-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .telegram-subtitle {
        font-size: 1rem;
    }
    
    .telegram-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .telegram-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .telegram-feature {
        min-height: 80px;
        padding: 0.8rem 0.6rem;
        border-radius: 10px;
    }
    
    .telegram-feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .telegram-feature-text {
        font-size: 0.8rem;
    }
    
    .telegram-pricing-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .pricing-free-text {
        font-size: 1rem;
    }
    
    .telegram-chat-preview {
        padding: 1.5rem;
        border-radius: 16px;
        margin-top: 2rem;
    }
    
    .chat-message {
        margin-bottom: 1rem;
    }
    
    .message-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .message-content {
        padding: 0.8rem 1rem;
    }
    
    .message-name {
        font-size: 0.85rem;
    }
    
    .message-text {
        font-size: 0.85rem;
    }
    
    .message-time {
        font-size: 0.7rem;
    }
    
    /* FAQ Section */
    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
        line-height: 1.3;
        margin-right: 1rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1.5rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-contact {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .faq-contact h3 {
        font-size: 1.5rem;
    }
    
    .faq-contact p {
        font-size: 1rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* CTA Section */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-offer {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .cta-price-new .price-value {
        font-size: 2.5rem;
    }
    
    .cta-features-list {
        margin-bottom: 1.2rem;
    }
    
    .cta-feature {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .cta-action .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .cta-urgency {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    
    .urgency-title {
        font-size: 1.5rem;
    }
    
    .urgency-timer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timer-item {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        min-width: 80px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .timer-label {
        font-size: 0.8rem;
    }
    
    .cta-social-proof {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .social-proof-number {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-copyright p,
    .footer-age-warning p {
        font-size: 0.8rem;
    }
    
    /* Fixed Elements */
    .fixed-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .fixed-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .scroll-to-top {
        bottom: 70px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
    
    /* Modals */
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: none;
        width: 100%;
        margin: 0;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 1rem 1.5rem 0.8rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-close {
        width: 25px;
        height: 25px;
        font-size: 1.5rem;
        right: 1rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    /* Form Elements */
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-help {
        font-size: 0.7rem;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
    }
    
    /* Modal specific content */
    .order-summary,
    .callback-summary,
    .telegram-summary {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .order-title,
    .callback-description,
    .telegram-summary h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .callback-features,
    .telegram-features,
    .order-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.8rem;
    }
    
    .callback-feature,
    .telegram-feature,
    .order-feature {
        min-height: 60px;
        padding: 0.6rem 0.4rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }
    
    .callback-feature .feature-icon svg,
    .telegram-feature .feature-icon svg,
    .order-feature .feature-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .price-new {
        font-size: 1.3rem;
    }
    
    .price-discount {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    
    .order-guarantee {
        font-size: 0.65rem;
        margin-top: 0.3rem;
    }
    
    /* Age Check Modal */
    .age-check-content {
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .age-check-icon {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .age-check-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .age-check-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .age-check-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .age-check-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Timeline adjustments */
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
        max-width: none;
        padding: 1.5rem;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .structure-timeline::before {
        display: none;
    }
    
    /* Approach features */
    .approach-feature {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .approach-feature:nth-child(even) {
        flex-direction: column !important;
    }
    
    .feature-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    /* Cities specific */
    .cities-hero {
        padding: 100px 0 60px;
    }
    
    .cities-hero h1 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    
    .cities-hero .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cities-hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cities-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cities-benefit-card {
        min-height: 180px;
        padding: 1.2rem 1rem;
        aspect-ratio: auto;
    }
    
    .cities-benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .cities-benefit-card strong {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .cities-benefit-card p {
        font-size: 0.8rem;
    }
    
    .city-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .city-name {
        font-size: 1.2rem;
    }
    
    .city-region {
        font-size: 0.85rem;
    }
    
    .city-card-arrow {
        margin-left: 0;
        margin-top: 0.8rem;
        width: 35px;
        height: 35px;
    }
    
    /* РАДИКАЛЬНОЕ РЕШЕНИЕ: Полностью отключаем AOS и показываем города */
    
    /* Принудительно показываем все города */
    .cities-grid-section .cities-grid,
    .cities-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    
    .cities-grid-section .city-card,
    .city-card {
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        background: white !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        border: 1px solid #ddd !important;
        text-align: center !important;
        text-decoration: none !important;
        color: #333 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .cities-grid-section .city-name,
    .city-name {
        font-size: 1.2rem !important;
        font-weight: bold !important;
        color: #333 !important;
        margin-bottom: 0.5rem !important;
        opacity: 1 !important;
    }
    
    .cities-grid-section .city-region,
    .city-region {
        font-size: 0.9rem !important;
        color: #666 !important;
        opacity: 1 !important;
        margin: 0 !important;
    }
    
    .cities-grid-section .city-card-arrow,
    .city-card-arrow {
        margin-top: 1rem !important;
        color: #C48B9F !important;
        opacity: 1 !important;
    }
    
    /* Полностью отключаем все AOS анимации на мобильных */
    [data-aos] {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    
    /* Убираем все псевдоэлементы которые могут скрывать контент */
    .cities-grid-section *:before,
    .cities-grid-section *:after {
        display: none !important;
    }
}

/* ========================================
   SMALL MOBILE STYLES (480px and below)
======================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
        --border-radius: 10px;
        --border-radius-large: 14px;
    }
    
    /* УСИЛЕННАЯ ЗАЩИТА ОТ ГОРИЗОНТАЛЬНОГО СКРОЛЛА */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
    
    /* Hero Section - адаптация для маленьких экранов */
    .hero-content {
        padding: 80px 0 30px; /* Уменьшили отступ сверху */
        gap: 1.5rem;
        text-align: center; /* Центрируем контент на маленьких экранах */
    }
    
    .hero-title {
        font-size: clamp(1rem, 4vw, 1.3rem); /* Еще больше уменьшили для 480px и меньше */
        margin-bottom: 0.8rem;
        line-height: 1.15;
        text-align: center; /* Центрируем заголовок на маленьких экранах */
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem); /* Уменьшили размеры */
        margin-bottom: 0.6rem;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: clamp(0.7rem, 2vw, 0.85rem); /* Уменьшили размеры */
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero-image {
        height: 200px;
        margin-top: 1rem;
    }
    
    .hero-img {
        height: 200px;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        padding: 0.6rem;
    }
    
    .hero-feature-icon {
        font-size: 1rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.8rem;
    }
    
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-cta-note {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    /* Typography */
    .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        padding-top: 0.8rem;
    }
    
    .section-title::before {
        width: 30px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    /* Header */
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Mobile Navigation */
    .mobile-nav-content {
        padding: 1rem;
    }
    
    .mobile-nav-list a {
        font-size: 1.2rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 70px 0 30px;
        gap: 1.5rem;
    }
    
    .hero-image {
        height: 200px;
        margin-top: 1rem;
    }
    
    .hero-img {
        height: 200px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        padding: 0.6rem;
    }
    
    .hero-feature-icon {
        font-size: 1rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.8rem;
    }
    
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-cta-note {
        font-size: 0.8rem;
        padding-left: 1rem;
    }
    
    /* Cards and Components */
    .for-who-card {
        min-height: 200px;
        border-radius: 14px;
    }
    
    .for-who-card-overlay {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .for-who-card-title {
        font-size: 1rem;
    }
    
    .for-who-card-description {
        font-size: 0.8rem;
    }
    
    .for-who-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .for-who-cta {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }
    
    .for-who-cta-text {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .for-who-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Benefits */
    .benefit-card {
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .benefit-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .benefit-card-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-card-description {
        font-size: 0.85rem;
    }
    
    .benefits-summary {
        padding: 1.5rem 1rem;
    }
    
    .benefits-img {
        height: 160px;
    }
    
    /* Program */
    .program-module {
        border-radius: 14px;
        margin-bottom: 1.2rem;
    }
    
    .program-module-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .program-module-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-right: 0;
    }
    
    .program-module-info {
        min-width: auto;
    }
    
    .program-module-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .program-module-duration {
        font-size: 0.8rem;
    }
    
    .program-module-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .program-module-content > div {
        padding: 0 1rem 1.2rem 1rem;
    }
    
    .program-module-description {
        font-size: 0.9rem;
    }
    
    .program-lesson {
        padding: 0.6rem;
        border-radius: 8px;
    }
    
    .lesson-icon {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
    
    .program-lesson .lesson-title {
        font-size: 0.75rem;
    }
    
    .program-summary {
        padding: 2rem 1rem;
    }
    
    .program-summary-stats {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .program-stat-number {
        font-size: 2rem;
    }
    
    .program-summary-title {
        font-size: 1.4rem;
    }
    
    .program-bonus {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .program-summary .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Format */
    .format-feature {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .format-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .format-feature-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .format-feature-description {
        font-size: 0.85rem;
    }
    
    .lessons-grid {
        height: 150px;
        gap: 0.3rem;
    }
    
    .lessons-grid-info {
        padding: 0.6rem;
    }
    
    .lessons-grid-info h4 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .lessons-grid-info p {
        font-size: 0.75rem;
    }
    
    .format-advantage {
        min-height: 80px;
        padding: 0.8rem;
    }
    
    .advantage-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .advantage-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .advantage-content p {
        font-size: 0.8rem;
    }
    
    /* Trust */
    .trust-feature {
        padding: 1.2rem;
    }
    
    .trust-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .trust-feature-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .trust-feature-description {
        font-size: 0.85rem;
    }
    
    .trust-guarantee-card {
        padding: 1.2rem;
    }
    
    .guarantee-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .guarantee-header h3 {
        font-size: 1.1rem;
    }
    
    .guarantee-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        padding-left: 1.6rem;
    }
    
    .guarantee-list li::before {
        width: 12px;
        height: 12px;
    }
    
    .trust-certificates {
        padding: 1.5rem 1rem;
    }
    
    .certificate-img {
        width: 50px;
        height: 50px;
    }
    
    /* Reviews */
    .review-card {
        padding: 1.2rem;
        min-height: 250px;
    }
    
    .review-header {
        margin-bottom: 1.2rem;
        min-height: 45px;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        font-size: 1.1rem;
    }
    
    .review-name {
        font-size: 1rem;
    }
    
    .review-city {
        font-size: 0.85rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .review-text::before {
        font-size: 1.4rem;
    }
    
    .reviews-stats {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .reviews-cta {
        padding: 2rem 1rem;
    }
    
    .reviews-cta h3 {
        font-size: 1.3rem;
    }
    
    .reviews-cta p {
        font-size: 0.95rem;
    }
    
    .reviews-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Telegram */
    .telegram-title {
        font-size: clamp(1.2rem, 5vw, 1.4rem);
    }
    
    .telegram-subtitle {
        font-size: 0.9rem;
    }
    
    .telegram-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .telegram-features {
        gap: 0.4rem;
        margin-bottom: 1.2rem;
    }
    
    .telegram-feature {
        min-height: 70px;
        padding: 0.6rem 0.4rem;
    }
    
    .telegram-feature-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .telegram-feature-text {
        font-size: 0.7rem;
    }
    
    .telegram-pricing-card {
        padding: 1.2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
    }
    
    .pricing-free-text {
        font-size: 0.95rem;
    }
    
    .telegram-chat-preview {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .message-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .message-content {
        padding: 0.6rem 0.8rem;
    }
    
    .message-name {
        font-size: 0.8rem;
    }
    
    .message-text {
        font-size: 0.8rem;
    }
    
    .message-time {
        font-size: 0.65rem;
    }
    
    /* FAQ */
    .faq-item {
        border-radius: 10px;
        margin-bottom: 0.6rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question-text {
        font-size: 0.9rem;
        margin-right: 0.8rem;
    }
    
    .faq-toggle {
        width: 22px;
        height: 22px;
        font-size: 1.3rem;
    }
    
    .faq-answer-content {
        padding: 0 1.2rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .faq-contact {
        padding: 1.5rem 1rem;
    }
    
    .faq-contact h3 {
        font-size: 1.3rem;
    }
    
    .faq-contact p {
        font-size: 0.95rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-offer {
        padding: 1.5rem 1rem;
    }
    
    .cta-price-new .price-value {
        font-size: 2.2rem;
    }
    
    .cta-feature {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .cta-action .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .cta-urgency {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .urgency-title {
        font-size: 1.3rem;
    }
    
    .timer-item {
        padding: 0.8rem 1.2rem;
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 1.8rem;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .cta-social-proof {
        padding: 1.5rem 1rem;
    }
    
    .social-proof-number {
        font-size: 1.8rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-section-title {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
    }
    
    .footer-copyright p,
    .footer-age-warning p {
        font-size: 0.75rem;
    }
    
    /* Fixed Elements */
    .fixed-cta .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        bottom: 65px;
        right: 8px;
        width: 35px;
        height: 35px;
    }
    
    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }
    
    /* Modals */
    .modal {
        padding: 10px;
    }
    
    .modal-header {
        padding: 0.8rem 1.2rem 0.6rem;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .modal-close {
        width: 22px;
        height: 22px;
        font-size: 1.3rem;
        right: 0.8rem;
    }
    
    .modal-body {
        padding: 0.8rem 1.2rem 1.2rem;
    }
    
    /* Form Elements */
    .form-group {
        margin-bottom: 0.6rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .form-help {
        font-size: 0.65rem;
    }
    
    .checkbox-group label {
        font-size: 0.75rem;
    }
    
    /* Modal Content */
    .order-summary,
    .callback-summary,
    .telegram-summary {
        padding: 0.8rem;
        border-radius: 10px;
        margin-bottom: 0.8rem;
    }
    
    .order-title,
    .callback-description,
    .telegram-summary h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .callback-features,
    .telegram-features,
    .order-features {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }
    
    .callback-feature,
    .telegram-feature,
    .order-feature {
        min-height: 50px;
        padding: 0.4rem 0.3rem;
        font-size: 0.65rem;
    }
    
    .callback-feature .feature-icon svg,
    .telegram-feature .feature-icon svg,
    .order-feature .feature-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .price-new {
        font-size: 1.2rem;
    }
    
    .price-discount {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }
    
    .order-guarantee {
        font-size: 0.6rem;
        margin-top: 0.25rem;
    }
    
    /* Age Check Modal */
    .age-check-content {
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .age-check-icon {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }
    
    .age-check-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .age-check-content p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .age-check-buttons {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .age-check-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Timeline */
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .approach-feature {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Cities */
    .cities-hero {
        padding: 80px 0 50px;
    }
    
    .cities-hero h1 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    
    .cities-hero .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .cities-hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .cities-benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .cities-benefit-card {
        min-height: 160px;
        padding: 1rem 0.8rem;
    }
    
    .cities-benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .cities-benefit-card strong {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .cities-benefit-card p {
        font-size: 0.75rem;
    }
    
    .city-card {
        padding: 1rem;
    }
    
    .city-name {
        font-size: 1.1rem;
    }
    
    .city-region {
        font-size: 0.8rem;
    }
    
    .city-card-arrow {
        margin-top: 0.6rem;
        width: 30px;
        height: 30px;
    }
}

/* ========================================
   CUSTOM NOTIFICATION SYSTEM
======================================== */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    z-index: 3000;
    padding: 1rem;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInNotification 0.3s ease forwards;
}

@keyframes slideInNotification {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.notification-close:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.notification-message {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.notification-success {
    border-left: 4px solid var(--success-color);
}

.notification-success .notification-icon {
    color: var(--success-color);
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-info {
    border-left: 4px solid var(--primary-color);
}

.notification-info .notification-icon {
    color: var(--primary-color);
}

/* Mobile notification styles */
@media (max-width: 768px) {
    .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    @keyframes slideInNotification {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .notification-title {
        font-size: 0.9rem;
    }
    
    .notification-message {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .custom-notification {
        padding: 0.8rem;
    }
    
    .notification-header {
        gap: 0.5rem;
        margin-bottom: 0.4rem;
    }
    
    .notification-icon {
        width: 20px;
        height: 20px;
    }
    
    .notification-title {
        font-size: 0.85rem;
    }
    
    .notification-message {
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }
    
    .notification-close {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        top: 0.4rem;
        right: 0.4rem;
    }
}

/* ========================================
   SEO OPTIMIZED HEADING REPLACEMENTS
   Стили для div-элементов, заменяющих h3-h6
======================================== */

/* Заголовки карточек и элементов */
.benefit-card-title,
.for-who-card-title,
.format-feature-title,
.trust-feature-title,
.program-module-title,
.benefit-title,
.feature-title,
.mission-title,
.contact-title,
.support-title,
.support-method-title,
.guarantee-title,
.prerequisites-title,
.schedule-title,
.member-name,
.certificates-title,
.summary-title,
.security-item-title,
.advantage-title,
.lessons-grid-title,
.telegram-chat-title,
.telegram-title,
.telegram-preview-title,
.pricing-header-title,
.cta-title,
.cta-features-title,
.urgency-title,
.lesson-title,
.lessons-title,
.program-summary-title,
.modal-title,
.faq-contact-title,
.reviews-cta-title,
.contact-cta-title,
.benefits-summary-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

/* Специальные размеры для разных контекстов */
.program-module-title,
.benefit-card-title,
.for-who-card-title {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.feature-title,
.support-title,
.mission-title {
    font-size: clamp(1.2rem, 2.3vw, 1.4rem);
}

.advantage-title,
.lessons-grid-title,
.telegram-chat-title {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.security-item-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    display: inline;
}

/* Заголовки в модальных окнах */
.modal-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

/* Заголовки в FAQ */
.faq-question-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.4;
    color: var(--text-primary);
}

/* Заголовки в отзывах */
.review-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

/* Заголовки контактов и команды */
.member-name,
.contact-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

/* Заголовки CTA секций */
.reviews-cta-title,
.contact-cta-title,
.benefits-summary-title,
.faq-contact-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

/* Заголовки для страницы 404 */
.suggestions-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.suggestion-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
/* ========================================
   CITIES PAGE STYLES
======================================== */

/* Cities Hero Section - стиль как на странице обучения */
.cities-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--border-light), rgba(196, 139, 159, 0.05));
    background-image: url('/assets/img/cities-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.cities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 247, 245, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
}

.cities-hero .container {
    position: relative;
    z-index: 2;
}

.cities-hero .section-header {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

.cities-hero h1 {
    position: relative;
    margin-bottom: 1rem;
    padding-top: 0;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cities-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cities-hero .section-header.aos-animate h1::after {
    transform: translateX(-50%) scaleX(1);
}

.cities-hero .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.cities-hero .section-subtitle::before,
.cities-hero .section-subtitle::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    opacity: 0.6;
}

.cities-hero .section-subtitle::before {
    margin-right: 0.5rem;
}

.cities-hero .section-subtitle::after {
    margin-left: 0.5rem;
}

.cities-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.7;
    font-weight: 500;
}

/* Cities Benefits Section */
.cities-benefits {
    padding: 80px 0;
    background: var(--background-white);
    background-image: url('/assets/img/online-format-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cities-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 247, 245, 0.9) 100%);
    z-index: 1;
}

.cities-benefits .container {
    position: relative;
    z-index: 2;
}

/* Убеждаемся что стили section-title работают в cities-benefits */
.cities-benefits .section-title {
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    padding-top: 1.5rem;
    text-align: center;
}

.cities-benefits .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Убираем дублирующие стили для cities-benefits, используем базовые */

.cities-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cities-benefit-card {
    background: linear-gradient(135deg, var(--background-white) 0%, rgba(250, 247, 245, 0.8) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cities-benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 139, 159, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.cities-benefit-card:hover::before {
    opacity: 1;
}

.cities-benefit-card > * {
    position: relative;
    z-index: 2;
}

.cities-benefit-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.1) 0%, rgba(230, 183, 193, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.cities-benefit-card:hover .cities-benefit-icon {
    color: var(--primary-dark);
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(196, 139, 159, 0.15) 0%, rgba(230, 183, 193, 0.1) 100%);
}

.cities-benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(196, 139, 159, 0.2);
    border-color: var(--primary-light);
}

.cities-benefit-card strong {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    display: block;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.cities-benefit-card:hover strong {
    color: var(--primary-dark);
}

.cities-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.cities-benefit-card:hover p {
    color: var(--text-primary);
}

/* Cities Grid Section */
.cities-grid-section {
    padding: 80px 0;
    background: var(--background-main);
    background-image: url('/assets/img/comfort-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cities-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 247, 245, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.cities-grid-section .container {
    position: relative;
    z-index: 2;
}

/* Убеждаемся что стили section-title работают в cities-grid-section */
.cities-grid-section .section-title {
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    padding-top: 1.5rem;
    text-align: center;
}

.cities-grid-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Убираем дублирующие стили для cities-grid-section, используем базовые */

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.city-card {
    background: linear-gradient(135deg, var(--background-white) 0%, rgba(250, 247, 245, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 139, 159, 0.15), transparent);
    transition: left 0.6s ease;
}

.city-card:hover::before {
    left: 100%;
}

.city-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(196, 139, 159, 0.2);
    border-color: var(--primary-light);
}

.city-card-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.city-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    transition: color var(--transition-normal);
}

.city-card:hover .city-name {
    color: var(--primary-dark);
}

.city-region {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.city-card:hover .city-region {
    color: var(--primary-dark);
}

.city-card-arrow {
    color: var(--primary-color);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(196, 139, 159, 0.1);
    border-radius: 50%;
    margin-left: 1rem;
}

.city-card:hover .city-card-arrow {
    color: var(--primary-dark);
    background: rgba(196, 139, 159, 0.2);
    transform: translateX(5px) scale(1.1);
}

/* ========================================
   CITY PAGE STYLES
======================================== */

/* City Hero Section */
.city-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-main) 100%);
}

.city-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.city-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.city-breadcrumb a:hover {
    color: var(--primary-dark);
}

.city-breadcrumb span {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

.city-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.city-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.city-hero-cta {
    margin-top: 2rem;
}

/* City Benefits Section */
.city-benefits {
    padding: 80px 0;
    background: var(--background-white);
}

.city-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.city-benefit-card {
    background: var(--background-main);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

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

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.city-benefit-card strong {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: block;
    font-weight: 600;
}

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

/* City Reviews Section */
.city-reviews {
    padding: 80px 0;
    background: var(--background-main);
}

.city-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.review-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author strong {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    display: block;
    font-weight: 600;
}

.review-city {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.review-rating {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* City CTA Section */
.city-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.city-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.city-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-icon {
    color: var(--success-color);
    font-weight: bold;
}

.city-cta-price {
    margin: 2rem 0;
    font-size: 1.2rem;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
}

.price-discount {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.city-cta-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE DESIGN FOR CITIES
======================================== */

@media (max-width: 768px) {
    .cities-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    
    .cities-hero .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .city-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cities-hero-subtitle,
    .city-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cities-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cities-benefit-card {
        min-height: 200px;
        padding: 1.5rem;
    }
    
    .cities-benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .cities-benefit-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .city-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .city-card-arrow {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .city-benefits-grid,
    .city-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .city-cta-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cities-hero,
    .city-hero {
        padding: 120px 0 60px;
    }
    
    .cities-hero h1 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    
    .cities-hero .section-subtitle {
        font-size: 1rem;
    }
    
    .city-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cities-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cities-benefit-card {
        min-height: 180px;
        padding: 1.2rem;
    }
    
    .cities-benefit-card strong {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .cities-benefit-card p {
        font-size: 0.9rem;
    }
    
    .cities-benefits,
    .city-benefits,
    .city-reviews,
    .city-cta {
        padding: 60px 0;
    }
    
    .cities-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cities-benefit-card,
    .city-benefit-card,
    .review-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .cities-benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .cities-benefit-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .cities-benefit-card strong {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN FOR COURSE AND PROGRAM PAGES
======================================== */

@media (max-width: 768px) {
    .course-hero,
    .program-hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 480px) {
    .course-hero,
    .program-hero {
        padding: 100px 0 50px;
    }
}

/* ========================================
   ADDITIONAL MOBILE ENHANCEMENTS
======================================== */

/* Touch-friendly interactions */
@media (max-width: 768px) {
    /* Increase touch targets */
    .btn, button, .mobile-menu-btn, .faq-toggle, .program-module-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve tap highlighting */
    .btn, button, a, .mobile-nav-list a {
        -webkit-tap-highlight-color: rgba(196, 139, 159, 0.2);
    }
    
    /* Prevent text selection on interactive elements */
    .btn, button, .mobile-menu-btn, .faq-question, .program-module-header {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Improve form inputs on mobile */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Custom select styling */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23C48B9F'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 20px;
        padding-right: 40px;
    }
    
    /* Improve checkbox and radio styling */
    input[type="checkbox"], input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    /* Better focus states for accessibility */
    .btn:focus, button:focus, input:focus, select:focus, textarea:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Improve modal positioning on mobile */
    .modal {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better loading states */
    .btn.loading {
        position: relative;
        color: transparent;
    }
    
    .btn.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid transparent;
        border-top-color: currentColor;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Improve scroll performance */
    .reviews-container, .mobile-nav-content {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Better image loading */
    img {
        max-width: 100%;
        height: auto;
    }
    
    img:not(.loaded) {
        background: linear-gradient(90deg, var(--border-light) 25%, rgba(196, 139, 159, 0.1) 50%, var(--border-light) 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }
    
    /* Improve text readability */
    .hero-title, .section-title {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better spacing for small screens */
    .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    /* Handle notch/safe areas */
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .mobile-nav {
        padding-top: calc(80px + env(safe-area-inset-top));
    }
    
    /* Improve performance on low-end devices */
    .hero-bg-circle {
        will-change: auto;
        transform: translateZ(0);
    }
    
    /* Better error states */
    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }
    
    .form-error {
        color: #ef4444;
        font-size: 0.8rem;
        margin-top: 0.25rem;
        display: block;
    }
    
    /* Improve accessibility */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    /* Skip link for keyboard navigation */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary-color);
        color: white;
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 10000;
        transition: top 0.3s;
    }
    
    .skip-link:focus {
        top: 6px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
        --text-secondary: #000;
        --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-bg-circle {
        animation: none;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    /* Uncomment if dark mode is desired
    :root {
        --background-main: #1a1a1a;
        --background-white: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --border-color: rgba(255, 255, 255, 0.2);
    }
    */
}

/* Print styles */
@media print {
    .header, .mobile-nav, .fixed-cta, .scroll-to-top, .modal {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .btn {
        border: 1px solid #000;
        background: transparent !important;
        color: #000 !important;
    }
}

/* ========================================
   END OF MOBILE ENHANCEMENTS
======================================== */

/* ========================================
   СПЕЦИАЛЬНАЯ АДАПТАЦИЯ ДЛЯ ДИАПАЗОНА 391-479px
======================================== */
@media (min-width: 391px) and (max-width: 479px) {
    .container {
        padding: 0 12px !important; /* Уменьшили боковые отступы */
    }
    
    .hero-content {
        padding: 75px 0 28px;
        gap: 1rem; /* Уменьшили gap */
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(0.9rem, 3.2vw, 1.1rem) !important; /* Еще больше уменьшили */
        margin-bottom: 0.3rem; /* Еще меньше отступ */
        line-height: 1.0 !important; /* Еще меньше межстрочный интервал */
        text-align: center !important;
        word-break: break-word;
        hyphens: auto;
        letter-spacing: -0.4px; /* Увеличили отрицательный letter-spacing */
    }
    
    .hero-subtitle {
        font-size: clamp(0.65rem, 2vw, 0.8rem) !important; /* Еще больше уменьшили */
        margin-bottom: 0.3rem; /* Уменьшили отступ */
        line-height: 1.05 !important;
        letter-spacing: -0.3px;
    }
    
    .hero-description {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem) !important; /* Еще больше уменьшили */
        margin-bottom: 0.7rem; /* Уменьшили отступ */
        line-height: 1.2 !important;
        letter-spacing: -0.2px;
    }
    
    .hero-image {
        height: 130px; /* Еще меньше высота */
        margin-top: 0.5rem;
    }
    
    .hero-img {
        height: 130px;
    }
    
    .hero-features {
        gap: 0.25rem; /* Еще меньше gap */
        margin-bottom: 0.8rem;
    }
    
    .hero-feature {
        padding: 0.3rem; /* Еще меньше padding */
        border-radius: 6px;
    }
    
    .hero-feature-icon {
        font-size: 0.8rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.65rem; /* Еще меньше размер текста */
        line-height: 1.1;
    }
    
    .hero-cta .btn {
        padding: 6px 14px; /* Еще меньше padding */
        font-size: 0.75rem; /* Еще меньше размер шрифта */
        border-radius: 6px;
    }
    
    .hero-cta-note {
        font-size: 0.65rem; /* Еще меньше размер */
        margin-top: 0.4rem;
        line-height: 1.1;
    }
}

/* ========================================
   СПЕЦИАЛЬНАЯ АДАПТАЦИЯ ДЛЯ iPhone 12 Pro (390x844) И АНАЛОГИЧНЫХ
======================================== */
@media (max-width: 390px) {
    .hero-content {
        padding: 70px 0 25px; /* Уменьшили отступ сверху */
        gap: 1.2rem;
        text-align: center; /* Центрируем контент на iPhone 12 Pro */
    }
    
    .hero-title {
        font-size: clamp(1rem, 3.8vw, 1.3rem) !important;
        margin-bottom: 0.4rem;
        line-height: 0.95 !important;
        word-break: break-word;
        hyphens: auto;
        text-align: center !important; /* Центрируем заголовок на iPhone 12 Pro */
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 2.3vw, 0.85rem) !important;
        margin-bottom: 0.4rem;
        line-height: 1.1 !important;
        word-break: break-word;
    }
    
    .hero-description {
        font-size: clamp(0.65rem, 1.9vw, 0.75rem) !important;
        margin-bottom: 0.8rem;
        line-height: 1.25 !important;
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-features {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-feature {
        padding: 0.3rem;
        border-radius: 6px;
    }
    
    .hero-feature-icon {
        font-size: 0.8rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .hero-cta .btn {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        border-radius: 6px;
        line-height: 1.2;
    }
    
    .hero-image {
        height: 140px;
        margin-top: 0.5rem;
    }
    
    .hero-img {
        height: 140px;
    }
    
    .hero-cta-note {
        font-size: 0.6rem;
        margin-top: 0.4rem;
        line-height: 1.2;
    }
}

/* ========================================
   ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ МОБИЛЬНЫХ
======================================== */

/* Исправление горизонтального скролла */
@media (max-width: 768px) {
    /* Принудительно убираем горизонтальный скролл */
    html {
        overflow-x: hidden !important;
    }
    
    body {
        overflow-x: hidden !important;
        position: relative;
    }
    
    /* Исправляем все потенциальные источники горизонтального скролла */
    .hero-content,
    .reviews-container,
    .format-content,
    .program-module-content,
    .telegram-content,
    .cta-content,
    .benefits-summary,
    .trust-guarantees {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Исправляем слайдер отзывов */
    .reviews-slider {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    .reviews-container {
        width: 100% !important;
        display: flex !important;
        gap: 0 !important;
    }
    
    .review-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Убираем точки пагинации на мобильных */
    .reviews-pagination {
        display: none !important;
    }
    
    /* Исправляем иконки в format секции */
    .format-feature-icon,
    .advantage-icon {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Дополнительные исправления для очень маленьких экранов */
@media (max-width: 360px) {
    .container {
        padding: 0 10px !important;
    }
    
    .hero-content {
        padding: 70px 0 20px; /* Уменьшили отступ сверху */
        gap: 1rem;
        text-align: center; /* Центрируем контент на очень маленьких экранах */
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 4.2vw, 1.4rem);
        margin-bottom: 0.4rem;
        line-height: 1.0;
        text-align: center; /* Центрируем заголовок на очень маленьких экранах */
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-bottom: 0.4rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-feature {
        padding: 0.4rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.7rem;
    }
    
    .hero-cta .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-image {
        height: 150px;
        margin-top: 0.6rem;
    }
    
    .hero-img {
        height: 150px;
    }
    
    .hero-cta-note {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
}

/* Специальные стили для экранов шириной менее 375px (iPhone SE и меньше) */
@media (max-width: 375px) {
    .container {
        padding: 0 8px !important;
    }
    
    .hero-content {
        padding: 45px 0 12px;
        gap: 0.6rem;
        text-align: center; /* Центрируем контент на iPhone SE */
    }
    
    .hero-title {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
        margin-bottom: 0.3rem;
        line-height: 0.9 !important;
        letter-spacing: -0.5px;
        text-align: center !important; /* Центрируем заголовок на iPhone SE */
    }
    
    .hero-subtitle {
        font-size: clamp(0.7rem, 2.1vw, 0.8rem) !important;
        margin-bottom: 0.3rem;
        line-height: 1.05 !important;
        letter-spacing: -0.3px;
    }
    
    .hero-description {
        font-size: clamp(0.6rem, 1.7vw, 0.7rem) !important;
        margin-bottom: 0.6rem;
        line-height: 1.2 !important;
        letter-spacing: -0.2px;
    }
    
    .hero-features {
        gap: 0.25rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-feature {
        padding: 0.25rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.6rem;
    }
    
    .hero-cta .btn {
        padding: 5px 10px !important;
        font-size: 0.65rem !important;
        border-radius: 5px;
    }
    
    .hero-image {
        height: 120px;
        margin-top: 0.4rem;
    }
    
    .hero-img {
        height: 120px;
    }
    
    .hero-cta-note {
        font-size: 0.55rem;
        margin-top: 0.3rem;
    }
}

/* Специальные стили для экранов шириной менее 320px */
@media (max-width: 320px) {
    .container {
        padding: 0 6px !important;
    }
    
    .hero-content {
        padding: 40px 0 10px;
        gap: 0.5rem;
        text-align: center; /* Центрируем контент на минимальных экранах */
    }
    
    .hero-title {
        font-size: clamp(0.8rem, 3.2vw, 1rem) !important;
        margin-bottom: 0.25rem;
        line-height: 0.85 !important;
        letter-spacing: -0.7px;
        text-align: center !important; /* Центрируем заголовок на минимальных экранах */
    }
    
    .hero-subtitle {
        font-size: clamp(0.65rem, 1.9vw, 0.75rem) !important;
        margin-bottom: 0.25rem;
        line-height: 1.0 !important;
        letter-spacing: -0.4px;
    }
    
    .hero-description {
        font-size: clamp(0.55rem, 1.5vw, 0.65rem) !important;
        margin-bottom: 0.5rem;
        line-height: 1.15 !important;
        letter-spacing: -0.3px;
    }
    
    .hero-features {
        gap: 0.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-feature {
        padding: 0.2rem;
    }
    
    .hero-feature span:last-child {
        font-size: 0.55rem;
    }
    
    .hero-cta .btn {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
        border-radius: 4px;
    }
    
    .hero-image {
        height: 100px;
        margin-top: 0.3rem;
    }
    
    .hero-img {
        height: 100px;
    }
    
    .hero-cta-note {
        font-size: 0.5rem;
        margin-top: 0.25rem;
    }
}
/* ========================================
   НОРМАЛЬНАЯ МОБИЛЬНАЯ АДАПТАЦИЯ ДЛЯ HERO СЕКЦИИ
======================================== */