/*
Theme Name: БЬЮТИ ПРОРЫВ
Theme URI: https://beauty-proryv.ru
Author: Beauty Proryv Team
Author URI: https://beauty-proryv.ru
Description: Премиальный лендинг для программы наставничества бьюти-мастеров. Стиль "Quiet Luxury" с мягкими градиентами и GSAP анимациями.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beauty-proryv
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* ==========================================================================
   CSS VARIABLES - ДИЗАЙН-СИСТЕМА "QUIET LUXURY"
   ========================================================================== */

:root {
    /* Цвета фона - ГАРМОНИЗИРОВАНЫ С HERO */
    --bg-primary: #FDF5F2;
    --bg-secondary: #FCF0EC;
    --bg-tertiary: #FAE8E3;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    /* Цвета текста - УЛУЧШЕННАЯ ЧИТАЕМОСТЬ */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #666666;
    
    /* Акцентные цвета */
    --accent-primary: #E8A4B8;
    --accent-hover: #D48A9F;
    --accent-secondary: #F5D0C5;
    --accent-tertiary: #C9B8D4;
    --accent-gold: #C9A86C;
    --accent-success: #7CB99A;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #E8A4B8 0%, #F5D0C5 50%, #C9B8D4 100%);
    --gradient-hero: linear-gradient(-45deg, #E8A4B8, #F5D0C5, #C9B8D4, #FDFBF9);
    --gradient-button: linear-gradient(135deg, #E8A4B8 0%, #D48A9F 100%);
    
    /* Тени */
    --shadow-soft: 0 4px 20px rgba(232, 164, 184, 0.1);
    --shadow-medium: 0 8px 30px rgba(232, 164, 184, 0.15);
    --shadow-strong: 0 12px 40px rgba(232, 164, 184, 0.2);
    --shadow-button: 0 4px 15px rgba(232, 164, 184, 0.3);
    --shadow-button-hover: 0 8px 25px rgba(232, 164, 184, 0.4);
    
    /* Шрифты */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Размеры шрифтов - УЛУЧШЕННАЯ ЧИТАЕМОСТЬ */
    --fs-h1: clamp(2rem, 5vw, 3.25rem);
    --fs-h2: clamp(1.75rem, 4vw, 2.5rem);
    --fs-h3: clamp(1.375rem, 3vw, 1.75rem);
    --fs-body: clamp(1.05rem, 2.2vw, 1.2rem);
    --fs-small: 0.95rem;
    
    /* Скругления */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    
    /* Переходы */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Размеры контейнера */
    --container-max: 1200px;
    --container-padding: clamp(1rem, 5vw, 2rem);
    
    /* Высота хедера */
    --header-height: 80px;
    --header-height-scrolled: 64px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-primary);
    /* Фон как у Hero - без белых областей */
    background: var(--gradient-hero);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Скрытие скролла при открытом модальном окне */
body.modal-open {
    overflow: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-hover);
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
}

/* ========== СЕКЦИИ - ФОНОВЫЕ ИЗОБРАЖЕНИЯ ВИДИМЫ ========== */

/* Секции с фоновыми изображениями - полная видимость */
.section[style*="background-image"] {
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Убираем все оверлеи для секций с изображениями */
.section[style*="background-image"]::before {
    display: none !important;
}

.section[style*="background-image"] > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
}

/* Улучшенная читаемость заголовков на фоновых изображениях */
.section[style*="background-image"] .section-title {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(232, 164, 184, 0.2);
    display: inline-block;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--text-primary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Улучшенная читаемость подзаголовков на фоновых изображениях */
.section[style*="background-image"] .section-subtitle {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(232, 164, 184, 0.2);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-button);
    color: #fff;
    box-shadow: var(--shadow-button);
    animation: subtlePulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(232, 164, 184, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
}

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

.btn-primary:hover::after {
    width: 300%;
    height: 300%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-hover);
    border: 3px solid var(--accent-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.3);
    font-weight: 700;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-button);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 25px rgba(232, 164, 184, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-magnetic {
    position: relative;
}

/* Пульсация кнопки - VIP Premium */
@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: var(--shadow-button);
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 12px 40px rgba(232, 164, 184, 0.6),
            0 0 30px rgba(232, 164, 184, 0.4),
            0 0 60px rgba(232, 164, 184, 0.2);
        filter: brightness(1.05);
        transform: scale(1.02);
        filter: brightness(1.05);
    }
}

/* VIP: Ripple effect для кнопок */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-slow);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 
        0 4px 30px rgba(232, 164, 184, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(232, 164, 184, 0.1);
    border-bottom: 1px solid rgba(232, 164, 184, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header__logo span {
    color: var(--accent-hover);
    font-weight: 800;
    text-shadow: none;
    -webkit-text-fill-color: var(--accent-hover);
}

.header__logo:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(232, 164, 184, 0.3);
}

.header__logo:hover span {
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
}

.header__logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(232, 164, 184, 0.3));
}

/* Desktop Navigation */
.nav {
    display: none;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--accent-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    margin-left: 1rem;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle__bar:nth-child(1) { margin-bottom: 6px; }
.menu-toggle__bar:nth-child(3) { margin-top: 6px; }

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

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    transition: right var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav__list {
    list-style: none;
    text-align: center;
}

.mobile-nav__item {
    margin-bottom: 2rem;
}

.mobile-nav__link {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
    color: var(--accent-primary);
}

.mobile-nav__cta {
    margin-top: 2rem;
}

/* Desktop показываем навигацию */
@media (min-width: 992px) {
    .nav {
        display: flex;
        align-items: center;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
    /* Убираем стандартный градиент секции - Hero имеет свой фон */
    background: transparent !important;
}

/* Hero НЕ нужны стандартные переходы секций */
.hero::before {
    display: none !important;
}

/* Hero - без нижнего перехода */
.hero::after {
    display: none;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* ========== VIP PREMIUM: GRADIENT MESH ========== */
.hero__gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero__gradient-mesh::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 40% 50% at 20% 30%, rgba(232, 164, 184, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(245, 208, 197, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 45% 55% at 60% 70%, rgba(201, 184, 212, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 10% 80%, rgba(232, 164, 184, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 55% 35% at 90% 60%, rgba(201, 168, 108, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 40% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    animation: gradient-mesh-float 20s ease-in-out infinite;
}

.hero__gradient-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 30% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 70% 40%, rgba(232, 164, 184, 0.2) 0%, transparent 50%);
    animation: gradient-mesh-float 25s ease-in-out infinite reverse;
}

@keyframes gradient-mesh-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, -3%) rotate(2deg);
    }
    50% {
        transform: translate(-3%, 5%) rotate(-1deg);
    }
    75% {
        transform: translate(3%, 3%) rotate(1deg);
    }
}

/* ========== VIP PREMIUM ANIMATIONS ========== */

/* Мерцающие частицы (Sparkle Effect) - УВЕЛИЧЕННОЕ КОЛИЧЕСТВО */
.hero__sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.9) 20%,
        rgba(232,164,184,1) 40%, 
        rgba(201,184,212,0.8) 60%,
        transparent 80%);
    border-radius: 50%;
    animation: sparkle-float 6s ease-in-out infinite;
    opacity: 0;
    box-shadow: 
        0 0 12px rgba(255,255,255,1), 
        0 0 25px rgba(232,164,184,0.9),
        0 0 40px rgba(201,184,212,0.6),
        0 0 60px rgba(232,164,184,0.4);
}

/* 20 светлячков вместо 8 */
.sparkle:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; left: 88%; animation-delay: 0.8s; }
.sparkle:nth-child(3) { top: 55%; left: 15%; animation-delay: 1.6s; }
.sparkle:nth-child(4) { top: 65%; left: 80%; animation-delay: 2.4s; }
.sparkle:nth-child(5) { top: 35%; left: 45%; animation-delay: 1.2s; }
.sparkle:nth-child(6) { top: 75%; left: 30%; animation-delay: 3s; }
.sparkle:nth-child(7) { top: 15%; left: 60%; animation-delay: 0.6s; }
.sparkle:nth-child(8) { top: 50%; left: 92%; animation-delay: 2s; }
.sparkle:nth-child(9) { top: 5%; left: 35%; animation-delay: 1.8s; }
.sparkle:nth-child(10) { top: 85%; left: 55%; animation-delay: 2.6s; }
.sparkle:nth-child(11) { top: 25%; left: 25%; animation-delay: 0.4s; }
.sparkle:nth-child(12) { top: 45%; left: 70%; animation-delay: 3.2s; }
.sparkle:nth-child(13) { top: 70%; left: 5%; animation-delay: 1s; }
.sparkle:nth-child(14) { top: 30%; left: 95%; animation-delay: 2.2s; }
.sparkle:nth-child(15) { top: 90%; left: 75%; animation-delay: 3.4s; }
.sparkle:nth-child(16) { top: 8%; left: 78%; animation-delay: 1.4s; }
.sparkle:nth-child(17) { top: 60%; left: 40%; animation-delay: 2.8s; }
.sparkle:nth-child(18) { top: 40%; left: 12%; animation-delay: 0.2s; }
.sparkle:nth-child(19) { top: 80%; left: 88%; animation-delay: 3.6s; }
.sparkle:nth-child(20) { top: 18%; left: 52%; animation-delay: 1.1s; }

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateY(0) translateX(0);
        filter: brightness(1);
    }
    5% {
        opacity: 0.6;
        transform: scale(0.8) translateY(-5px) translateX(2px);
    }
    15% {
        opacity: 1;
        transform: scale(1.8) translateY(-20px) translateX(8px);
        filter: brightness(1.5);
    }
    30% {
        opacity: 0.95;
        transform: scale(2.2) translateY(-50px) translateX(-15px);
        filter: brightness(1.3);
    }
    45% {
        opacity: 1;
        transform: scale(1.6) translateY(-70px) translateX(20px);
        filter: brightness(1.6);
    }
    60% {
        opacity: 0.9;
        transform: scale(2) translateY(-90px) translateX(-12px);
        filter: brightness(1.4);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.4) translateY(-110px) translateX(10px);
        filter: brightness(1.2);
    }
    90% {
        opacity: 0.4;
        transform: scale(1) translateY(-130px) translateX(-5px);
        filter: brightness(1);
    }
}

/* Дополнительные светлячки с разными цветами */
.sparkle:nth-child(odd) {
    background: radial-gradient(circle, 
        rgba(255,255,255,1) 0%, 
        rgba(245,208,197,1) 40%, 
        rgba(232,164,184,0.7) 70%,
        transparent 90%);
}

.sparkle:nth-child(3n) {
    background: radial-gradient(circle, 
        rgba(255,255,255,1) 0%, 
        rgba(201,168,108,0.9) 40%, 
        rgba(201,184,212,0.6) 70%,
        transparent 90%);
    box-shadow: 
        0 0 15px rgba(255,255,255,1), 
        0 0 30px rgba(201,168,108,0.8),
        0 0 50px rgba(201,168,108,0.5);
}

/* Мягкое пульсирующее свечение по краям */
.hero__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(232, 164, 184, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201, 184, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 208, 197, 0.1) 0%, transparent 50%);
    animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Декоративные парящие элементы - VIP Premium */
.hero__float-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.hero__float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(232, 164, 184, 0.25) 50%,
        rgba(201, 184, 212, 0.2) 100%);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: 
        0 8px 32px rgba(232, 164, 184, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(232, 164, 184, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float-gentle 8s ease-in-out infinite;
}

@keyframes float-gentle {
    0% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
    15% { transform: translateY(-80px) translateX(60px) rotate(8deg) scale(1.05); }
    30% { transform: translateY(-40px) translateX(-40px) rotate(-5deg) scale(0.95); }
    45% { transform: translateY(-120px) translateX(30px) rotate(12deg) scale(1.1); }
    60% { transform: translateY(-60px) translateX(-70px) rotate(-8deg) scale(1); }
    75% { transform: translateY(-100px) translateX(50px) rotate(6deg) scale(1.08); }
    90% { transform: translateY(-30px) translateX(-20px) rotate(-3deg) scale(0.98); }
    100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
}

.hero__float-element:nth-child(1) {
    top: 15%;
    left: 8%;
    width: 90px;
    height: 90px;
    animation-delay: 0s;
    animation-duration: 10s;
}

.hero__float-element:nth-child(2) {
    top: 55%;
    left: 3%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
    animation-duration: 7s;
}

.hero__float-element:nth-child(3) {
    top: 25%;
    right: 8%;
    width: 110px;
    height: 110px;
    animation-delay: 1s;
    animation-duration: 12s;
}

.hero__float-element:nth-child(4) {
    top: 65%;
    right: 12%;
    width: 60px;
    height: 60px;
    animation-delay: 3s;
    animation-duration: 9s;
}

.hero__float-element:nth-child(5) {
    top: 80%;
    left: 18%;
    width: 80px;
    height: 80px;
    animation-delay: 1.5s;
    animation-duration: 11s;
}

.hero__float-element:nth-child(6) {
    top: 40%;
    right: 5%;
    width: 70px;
    height: 70px;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.hero__float-element:nth-child(7) {
    top: 10%;
    left: 45%;
    width: 55px;
    height: 55px;
    animation-delay: 0.5s;
    animation-duration: 8s;
}

.hero__float-element:nth-child(8) {
    top: 90%;
    right: 25%;
    width: 65px;
    height: 65px;
    animation-delay: 3.5s;
    animation-duration: 10s;
}

/* Mobile: меньше элементов */
@media (max-width: 768px) {
    .hero__float-element {
        opacity: 0.6;
    }
    .hero__float-element:nth-child(3),
    .hero__float-element:nth-child(5) {
        display: none;
    }
}

/* ========== VIP PREMIUM: ЛЕТАЮЩИЕ БАБОЧКИ ========== */

.hero__butterflies {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.butterfly {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0;
    animation: butterfly-flight 15s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(232, 164, 184, 0.3));
}

.butterfly__wings {
    position: relative;
    width: 100%;
    height: 100%;
    animation: wing-flap 0.35s ease-in-out infinite;
}

.butterfly__wing {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(232, 164, 184, 0.9) 0%, 
        rgba(245, 208, 197, 0.8) 30%,
        rgba(201, 184, 212, 0.9) 70%,
        rgba(232, 164, 184, 0.7) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform-origin: center right;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 5px rgba(232, 164, 184, 0.4);
}

.butterfly__wing--left {
    left: 0;
    transform-origin: center right;
    animation: wing-left 0.35s ease-in-out infinite;
}

.butterfly__wing--right {
    right: 0;
    transform-origin: center left;
    animation: wing-right 0.35s ease-in-out infinite;
}

.butterfly__body {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(to bottom, #D48A9F, #E8A4B8);
    border-radius: 50%;
}

/* Анимация взмаха крыльев */
@keyframes wing-left {
    0%, 100% { transform: rotateY(0deg) rotateX(10deg); }
    50% { transform: rotateY(60deg) rotateX(-20deg); }
}

@keyframes wing-right {
    0%, 100% { transform: rotateY(0deg) rotateX(10deg); }
    50% { transform: rotateY(-60deg) rotateX(-20deg); }
}

/* Анимация полёта бабочек */
@keyframes butterfly-flight {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.5);
    }
    5% {
        opacity: 0.9;
        transform: translate(50px, -30px) rotate(15deg) scale(1);
    }
    15% {
        opacity: 1;
        transform: translate(120px, -80px) rotate(-10deg) scale(1.1);
    }
    25% {
        opacity: 0.95;
        transform: translate(180px, -40px) rotate(20deg) scale(0.95);
    }
    35% {
        opacity: 1;
        transform: translate(250px, -120px) rotate(-15deg) scale(1.05);
    }
    50% {
        opacity: 0.9;
        transform: translate(350px, -60px) rotate(10deg) scale(1);
    }
    65% {
        opacity: 0.85;
        transform: translate(450px, -150px) rotate(-20deg) scale(1.1);
    }
    80% {
        opacity: 0.6;
        transform: translate(550px, -80px) rotate(15deg) scale(0.9);
    }
    95% {
        opacity: 0.3;
        transform: translate(650px, -200px) rotate(-10deg) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: translate(700px, -180px) rotate(0deg) scale(0.5);
    }
}

/* Позиционирование бабочек */
.butterfly:nth-child(1) {
    top: 60%;
    left: -5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.butterfly:nth-child(2) {
    top: 30%;
    left: -8%;
    animation-delay: 3s;
    animation-duration: 22s;
    transform: scale(0.8);
}

.butterfly:nth-child(3) {
    top: 75%;
    left: -3%;
    animation-delay: 6s;
    animation-duration: 20s;
    transform: scale(1.2);
}

.butterfly:nth-child(4) {
    top: 45%;
    left: -10%;
    animation-delay: 9s;
    animation-duration: 16s;
    transform: scale(0.9);
}

.butterfly:nth-child(5) {
    top: 20%;
    left: -6%;
    animation-delay: 12s;
    animation-duration: 24s;
    transform: scale(0.7);
}

.butterfly:nth-child(6) {
    top: 85%;
    left: -4%;
    animation-delay: 4s;
    animation-duration: 19s;
    transform: scale(1.1);
}

/* Отзеркаленные бабочки справа налево */
.butterfly--reverse {
    animation-name: butterfly-flight-reverse;
}

@keyframes butterfly-flight-reverse {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.5) scaleX(-1);
    }
    5% {
        opacity: 0.9;
        transform: translate(-50px, -30px) rotate(-15deg) scale(1) scaleX(-1);
    }
    15% {
        opacity: 1;
        transform: translate(-120px, -80px) rotate(10deg) scale(1.1) scaleX(-1);
    }
    25% {
        opacity: 0.95;
        transform: translate(-180px, -40px) rotate(-20deg) scale(0.95) scaleX(-1);
    }
    35% {
        opacity: 1;
        transform: translate(-250px, -120px) rotate(15deg) scale(1.05) scaleX(-1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-350px, -60px) rotate(-10deg) scale(1) scaleX(-1);
    }
    65% {
        opacity: 0.85;
        transform: translate(-450px, -150px) rotate(20deg) scale(1.1) scaleX(-1);
    }
    80% {
        opacity: 0.6;
        transform: translate(-550px, -80px) rotate(-15deg) scale(0.9) scaleX(-1);
    }
    95% {
        opacity: 0.3;
        transform: translate(-650px, -200px) rotate(10deg) scale(0.7) scaleX(-1);
    }
    100% {
        opacity: 0;
        transform: translate(-700px, -180px) rotate(0deg) scale(0.5) scaleX(-1);
    }
}

.butterfly--reverse:nth-child(7) {
    top: 50%;
    right: -5%;
    left: auto;
    animation-delay: 2s;
    animation-duration: 21s;
}

.butterfly--reverse:nth-child(8) {
    top: 25%;
    right: -8%;
    left: auto;
    animation-delay: 7s;
    animation-duration: 17s;
    transform: scale(0.85);
}

.butterfly--reverse:nth-child(9) {
    top: 70%;
    right: -3%;
    left: auto;
    animation-delay: 11s;
    animation-duration: 23s;
    transform: scale(1.15);
}

/* Mobile: меньше бабочек */
@media (max-width: 768px) {
    .butterfly:nth-child(n+4) {
        display: none;
    }
    .butterfly--reverse:nth-child(n+8) {
        display: none;
    }
    .butterfly {
        width: 24px;
        height: 24px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .butterfly:nth-child(5),
    .butterfly:nth-child(6) {
        display: none;
    }
}

.hero__content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero__pretitle {
    display: inline-block;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(232, 164, 184, 0.3);
    -webkit-text-fill-color: var(--accent-hover);
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        1px 1px 0 #FFFFFF,
        -1px -1px 0 #FFFFFF,
        1px -1px 0 #FFFFFF,
        -1px 1px 0 #FFFFFF,
        0 3px 15px rgba(255, 255, 255, 0.8);
}

.hero__title .word {
    display: inline-block;
}

.hero__subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 600; /* Жирнее */
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem; /* Уменьшен padding */
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.hero__cta-wrapper {
    margin-bottom: 1rem;
}

.hero__cta-note {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.hero__trust-icon {
    font-size: 1.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.hero__scroll span:first-child {
    font-size: 2rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

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

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

/* ==========================================================================
   PROBLEMS SECTION (Знакомо?)
   ========================================================================== */

/* Problems секция - показываем фоновое изображение */
.problems[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 карточек в линию на десктопе */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Адаптив для проблемных карточек */
@media (max-width: 1200px) {
    .problems__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.problem-card {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 25px rgba(232, 164, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(232, 164, 184, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 
        0 20px 40px rgba(232, 164, 184, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.6);
    border-color: rgba(232, 164, 184, 0.4);
}

.problem-card__emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-card__text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.problems__footer {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-hover);
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.15);
    border: 1px solid rgba(232, 164, 184, 0.3);
}

/* Центрирование блока с футером */
.problems .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   TRANSFORMATION SECTION (Было → Стало)
   ========================================================================== */

.transformation__table {
    display: grid;
    gap: 1rem;
}

.transformation__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(232, 164, 184, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(232, 164, 184, 0.25);
    transition: all 0.3s ease;
}

.transformation__row:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(232, 164, 184, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.transformation__cell {
    padding: 1.25rem;
}

.transformation__cell--before {
    background: rgba(232, 164, 184, 0.1);
    border-right: 2px solid var(--accent-primary);
}

.transformation__cell--after {
    background: rgba(124, 185, 154, 0.1);
}

.transformation__label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
}

.transformation__cell--before .transformation__label {
    background: linear-gradient(135deg, #D48A9F 0%, #E8A4B8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 138, 159, 0.4);
}

.transformation__cell--after .transformation__label {
    background: linear-gradient(135deg, #5BA37A 0%, #7CB99A 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 185, 154, 0.4);
}

.transformation__text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 600;
}

.transformation__cell--after .transformation__text {
    font-weight: 700; /* Ещё жирнее */
    color: var(--text-primary);
}

@media (max-width: 576px) {
    .transformation__row {
        grid-template-columns: 1fr;
    }
    
    .transformation__cell--before {
        border-right: none;
        border-bottom: 2px solid var(--accent-primary);
    }
}

/* ==========================================================================
   MODULES SECTION (Что внутри программы)
   ========================================================================== */

.modules {
    background: var(--bg-secondary);
}

.modules__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.modules__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-tertiary));
    transform: translateX(-50%);
    border-radius: 2px;
    transform-origin: top;
}

.module-card {
    position: relative;
    width: calc(50% - 40px);
    padding: 2rem;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 10px 40px rgba(232, 164, 184, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(232, 164, 184, 0.25);
    transform-style: preserve-3d;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.module-card:hover::before {
    transform: translateX(100%);
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(232, 164, 184, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);
    border-color: rgba(232, 164, 184, 0.4);
}

.module-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.module-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.module-card:nth-child(odd)::before {
    right: -50px;
}

.module-card:nth-child(even)::before {
    left: -50px;
}

.module-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.module-card__icon {
    font-size: 2rem;
}

.module-card__number {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.module-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700; /* Жирнее */
}

.module-card__result {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
}

.module-card__result strong {
    color: var(--accent-success);
    font-weight: 700;
}

/* VIP бонус */
.modules__vip {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 50%, #FFEFD9 100%); /* Золотистый оттенок */
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

.modules__vip-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--accent-gold);
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.modules__vip-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

/* Mobile timeline */
@media (max-width: 768px) {
    .modules__line {
        left: 20px;
    }
    
    .module-card {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        margin-right: 0 !important;
    }
    
    .module-card::before {
        left: -40px !important;
        right: auto !important;
    }
}

/* ==========================================================================
   FORMAT SECTION (Как проходит обучение)
   ========================================================================== */

.format__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 блоков в линию на десктопе */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Адаптив для формат-карточек */
@media (max-width: 1200px) {
    .format__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .format__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.format-card {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 10px 40px rgba(232, 164, 184, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid rgba(232, 164, 184, 0.25);
}

.format-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.18);
}

.format-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.format-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700; /* Жирнее */
}

.format-card__text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.format__schedule {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-md);
    font-weight: 700; /* Жирнее */
    font-size: 1.1rem; /* Крупнее */
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.15);
    border: 1px solid rgba(232, 164, 184, 0.2);
}

.format__schedule-icon {
    margin-right: 0.5rem;
}

/* ==========================================================================
   PRICING SECTION (Тарифы)
   ========================================================================== */

.pricing {
    background: var(--bg-secondary);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 тарифа в одну линию */
    gap: 2rem;
    align-items: stretch;
}

/* Адаптив для тарифов */
@media (max-width: 1024px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing__grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    position: relative;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 
        0 12px 48px rgba(232, 164, 184, 0.22),
        0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(232, 164, 184, 0.25);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) rotateX(8deg) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(232, 164, 184, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255,255,255,0.8);
    border-color: rgba(232, 164, 184, 0.5);
}

.pricing-card--popular {
    border: 3px solid var(--accent-primary);
    transform: scale(1.02);
}

.pricing-card--popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-button);
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card__header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 800; /* Жирнее */
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.pricing-card__price-note {
    display: block;
    font-size: var(--fs-small);
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card__target {
    font-size: 1rem;
    color: var(--text-primary);
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 500; /* Жирнее */
}

.pricing-card__features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
}

.pricing-card__feature-icon {
    color: var(--accent-success);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-card__cta {
    width: 100%;
    text-align: center;
}

.pricing__note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.15);
    border: 1px solid rgba(232, 164, 184, 0.2);
}

.pricing__note-icon {
    margin-right: 0.5rem;
}

/* Центрирование pricing note */
.pricing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   GUARANTEE SECTION (Гарантия)
   ========================================================================== */

.guarantee {
    background: linear-gradient(135deg, rgba(232, 164, 184, 0.05), rgba(201, 184, 212, 0.05));
}

.guarantee__content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 16px 56px rgba(232, 164, 184, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(232, 164, 184, 0.3);
}

.guarantee__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.guarantee__text {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.guarantee__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 элемента в одну линию */
    gap: 1rem;
    text-align: left;
}

/* Адаптив для гарантии */
@media (max-width: 1024px) {
    .guarantee__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .guarantee__list {
        grid-template-columns: 1fr;
    }
}

.guarantee__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBFA 100%);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.12);
    border: 1px solid rgba(232, 164, 184, 0.15);
    font-size: 1rem;
    font-weight: 500; /* Жирнее */
}

.guarantee__item-icon {
    color: var(--accent-success);
    font-size: 1.25rem;
}

/* ==========================================================================
   TARGET SECTION (Для кого)
   ========================================================================== */

.target {
    background: var(--bg-secondary);
}

.target__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.target__column {
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.target__column--yes {
    background: linear-gradient(135deg, #F0FFF4 0%, #E8FFF0 50%, #E0FFE8 100%); /* Зелёноватый оттенок */
    border: 3px solid var(--accent-success);
}

.target__column--no {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%); /* Розоватый оттенок */
    border: 3px solid var(--accent-primary);
}

.target__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.target__title-icon {
    font-size: 1.5rem;
}

.target__list {
    list-style: none;
}

.target__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.target__item:last-child {
    border-bottom: none;
}

.target__item-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.target__column--yes .target__item-icon {
    color: var(--accent-success);
}

.target__column--no .target__item-icon {
    color: var(--accent-hover);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq__list {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: 0 4px 25px rgba(232, 164, 184, 0.15);
    overflow: hidden;
    border: 1px solid rgba(232, 164, 184, 0.2);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    text-align: left;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--accent-primary);
}

.faq-item__icon {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
    color: var(--accent-primary);
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
}

.faq-item__answer-inner {
    padding: 1rem 1.75rem 1.5rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(232, 164, 184, 0.12) 0%, rgba(201, 184, 212, 0.12) 100%);
    margin: 0 0.5rem 0.5rem;
    border-radius: var(--radius-sm);
    padding-top: 1rem;
}

.faq__footer {
    text-align: center;
    margin-top: 2rem;
}

.faq__footer-text {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ==========================================================================
   NEWS SECTION (Блог)
   ========================================================================== */

.news {
    background: var(--bg-secondary);
}

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

.news-card {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(232, 164, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(232, 164, 184, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.news-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(232, 164, 184, 0.25),
        0 12px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.5);
    border-color: rgba(232, 164, 184, 0.4);
}

.news-card__image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-card__image {
    transform: scale(1.05);
}

.news-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    font-size: 3rem;
}

.news-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-button);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.news-card__content {
    padding: 1.25rem;
}

.news-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.news-card__title a:hover {
    color: var(--accent-primary);
}

.news-card__date {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.news-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__link {
    display: block;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--accent-primary);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.news-card__link:hover {
    color: var(--accent-hover);
    background: rgba(232, 164, 184, 0.05);
}

/* News Layout with Featured Article */
.news__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* FEATURED NEWS - Главная статья */
.news-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(232, 164, 184, 0.2);
    transition: all var(--transition-base);
    border: 1px solid rgba(232, 164, 184, 0.2);
}

@media (min-width: 768px) {
    .news-featured {
        grid-template-columns: 1.2fr 1fr;
    }
}

.news-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(232, 164, 184, 0.3);
}

.news-featured__image-wrapper {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .news-featured__image-wrapper {
        min-height: 400px;
    }
}

.news-featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-featured:hover .news-featured__image {
    transform: scale(1.05);
}

.news-featured__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    font-size: 5rem;
}

.news-featured__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.news-featured__category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-button);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.news-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.news-featured__date {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.news-featured__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.news-featured__title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.news-featured__title a:hover {
    color: var(--accent-primary);
}

.news-featured__excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-featured__cta {
    align-self: flex-start;
}

/* Adjust grid for remaining news cards */
.news__layout .news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.news__cta {
    text-align: center;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* Final CTA с фоновым изображением */
.final-cta[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Final CTA - без оверлеев */
.final-cta::before,
.final-cta::after {
    display: none !important;
}

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

/* Author image in Final CTA */
.final-cta__author {
    margin-bottom: 2rem;
}

.final-cta__author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(232, 164, 184, 0.3);
    transition: all var(--transition-base);
}

.final-cta__author-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(232, 164, 184, 0.4);
}

.final-cta__content {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(232, 164, 184, 0.2);
    border: 1px solid rgba(232, 164, 184, 0.2);
}

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

.final-cta__subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.final-cta__buttons {
    margin-bottom: 1rem;
}

.final-cta__note {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.final-cta__socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.final-cta__social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.final-cta__social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--accent-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--text-primary);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
}

/* Плавный переход к тёмному футеру */
.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(45, 45, 45, 0.3) 40%,
        rgba(45, 45, 45, 0.7) 70%,
        var(--text-primary) 100%
    );
    pointer-events: none;
}

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

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer__description {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--accent-primary);
}

.footer__socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__social {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent-primary); /* Розовый фон для видимости */
    border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(232, 164, 184, 0.4);
}

.footer__social svg {
    fill: #FFFFFF !important;
    color: #FFFFFF !important;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer__social:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 8px 25px rgba(232, 164, 184, 0.6);
}

/* Гарантируем видимость иконок */
.footer__social path {
    fill: #FFFFFF !important;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer__copyright {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
    color: var(--accent-primary);
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active + .modal,
.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal__close:hover {
    color: var(--text-primary);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal__subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form__label span {
    color: var(--accent-hover);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form__textarea {
    min-height: 100px;
    resize: vertical;
}

.form__submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form__success {
    text-align: center;
    padding: 2rem 0;
}

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

.form__success-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-button);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-button-hover);
}

/* ==========================================================================
   CUSTOM CURSOR (Desktop only)
   ========================================================================== */

.custom-cursor {
    display: none;
}

@media (min-width: 1024px) and (pointer: fine) {
    .custom-cursor {
        display: block;
        width: 12px;
        height: 12px;
        background: rgba(232, 164, 184, 0.5);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.2s ease;
        mix-blend-mode: difference;
    }
    
    .custom-cursor.hover {
        transform: scale(3);
        background: rgba(232, 164, 184, 0.2);
        border: 1px solid var(--accent-primary);
    }
}

/* ==========================================================================
   COUNTERS ANIMATION
   ========================================================================== */

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* ==========================================================================
   BLOG PAGES STYLES
   ========================================================================== */

.blog-page {
    padding-top: calc(var(--header-height) + 2rem);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Single Post */
.blog-single {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
}

.blog-single__header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-single__category {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--gradient-button);
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.blog-single__title {
    margin-bottom: 1rem;
}

.blog-single__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

.blog-single__image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-single__image img {
    width: 100%;
    height: auto;
}

.blog-single__content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-single__content h2 {
    margin: 2rem 0 1rem;
}

.blog-single__content h3 {
    margin: 1.5rem 0 0.75rem;
}

.blog-single__content p {
    margin-bottom: 1.25rem;
}

.blog-single__content ul,
.blog-single__content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-single__content li {
    margin-bottom: 0.5rem;
}

.blog-single__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-single__content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.blog-single__footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.blog-single__share span {
    font-weight: 600;
}

.blog-single__share a {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    transition: all var(--transition-fast);
}

.blog-single__share a:hover {
    background: var(--accent-primary);
    color: #fff;
}

.blog-single__nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.blog-single__nav a {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.blog-single__nav a:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-404__code {
    font-size: 8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404__title {
    margin-bottom: 1rem;
}

.error-404__text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ==========================================================================
   SEARCH PAGE
   ========================================================================== */

.search-results__header {
    margin-bottom: 2rem;
}

.search-results__query {
    color: var(--accent-primary);
}

.search-results__count {
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background: var(--accent-primary);
    color: #fff;
}

.pagination .current {
    background: var(--accent-primary);
    color: #fff;
}

/* ==========================================================================
   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;
}

:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ==========================================================================
   ANIMATIONS (AOS fallback classes)
   ========================================================================== */

/* ПРИНУДИТЕЛЬНАЯ ВИДИМОСТЬ - переопределяем AOS inline стили */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.problem-card,
.transformation__row,
.module-card,
.format-card,
.pricing-card,
.guarantee__content,
.guarantee__item,
.target__column,
.faq-item,
.news-card,
.news-featured,
.section-header,
.problems__footer,
.modules__vip,
.format__schedule,
.pricing__note,
.final-cta__content,
.hero__content,
.hero__pretitle,
.hero__title,
.hero__subtitle,
.hero__cta-wrapper,
.hero__trust {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

[data-aos="fade-in"] {
    opacity: 1;
    transition: opacity 0.8s ease;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

/* ==========================================================================
   ГЛОБАЛЬНЫЕ ЭФФЕКТЫ - БАБОЧКИ И СВЕТЛЯЧКИ НА ВЕСЬ САЙТ
   ========================================================================== */

.global-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

/* Глобальные светлячки */
.global-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.global-sparkles .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(232,164,184,0.8) 40%, rgba(201,184,212,0.5) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(232, 164, 184, 0.7),
        0 0 30px rgba(201, 184, 212, 0.5);
    animation: sparkle-float 8s ease-in-out infinite;
}

/* Разные позиции и задержки для светлячков */
.global-sparkles .sparkle:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.global-sparkles .sparkle:nth-child(2) { top: 15%; left: 85%; animation-delay: 0.5s; animation-duration: 9s; }
.global-sparkles .sparkle:nth-child(3) { top: 25%; left: 25%; animation-delay: 1s; animation-duration: 6s; }
.global-sparkles .sparkle:nth-child(4) { top: 35%; left: 70%; animation-delay: 1.5s; animation-duration: 8s; }
.global-sparkles .sparkle:nth-child(5) { top: 45%; left: 5%; animation-delay: 2s; animation-duration: 10s; }
.global-sparkles .sparkle:nth-child(6) { top: 55%; left: 90%; animation-delay: 2.5s; animation-duration: 7s; }
.global-sparkles .sparkle:nth-child(7) { top: 65%; left: 40%; animation-delay: 3s; animation-duration: 9s; }
.global-sparkles .sparkle:nth-child(8) { top: 75%; left: 60%; animation-delay: 3.5s; animation-duration: 6s; }
.global-sparkles .sparkle:nth-child(9) { top: 85%; left: 15%; animation-delay: 4s; animation-duration: 8s; }
.global-sparkles .sparkle:nth-child(10) { top: 95%; left: 75%; animation-delay: 4.5s; animation-duration: 11s; }
.global-sparkles .sparkle:nth-child(11) { top: 10%; left: 50%; animation-delay: 0.3s; animation-duration: 7.5s; }
.global-sparkles .sparkle:nth-child(12) { top: 20%; left: 95%; animation-delay: 0.8s; animation-duration: 8.5s; }
.global-sparkles .sparkle:nth-child(13) { top: 30%; left: 3%; animation-delay: 1.3s; animation-duration: 6.5s; }
.global-sparkles .sparkle:nth-child(14) { top: 40%; left: 35%; animation-delay: 1.8s; animation-duration: 9.5s; }
.global-sparkles .sparkle:nth-child(15) { top: 50%; left: 80%; animation-delay: 2.3s; animation-duration: 7.2s; }
.global-sparkles .sparkle:nth-child(16) { top: 60%; left: 20%; animation-delay: 2.8s; animation-duration: 10.5s; }
.global-sparkles .sparkle:nth-child(17) { top: 70%; left: 55%; animation-delay: 3.3s; animation-duration: 6.8s; }
.global-sparkles .sparkle:nth-child(18) { top: 80%; left: 92%; animation-delay: 3.8s; animation-duration: 8.2s; }
.global-sparkles .sparkle:nth-child(19) { top: 90%; left: 45%; animation-delay: 4.3s; animation-duration: 9.8s; }
.global-sparkles .sparkle:nth-child(20) { top: 8%; left: 30%; animation-delay: 4.8s; animation-duration: 7.8s; }
.global-sparkles .sparkle:nth-child(21) { top: 18%; left: 65%; animation-delay: 0.2s; animation-duration: 8.8s; }
.global-sparkles .sparkle:nth-child(22) { top: 28%; left: 8%; animation-delay: 0.7s; animation-duration: 6.2s; }
.global-sparkles .sparkle:nth-child(23) { top: 38%; left: 88%; animation-delay: 1.2s; animation-duration: 9.2s; }
.global-sparkles .sparkle:nth-child(24) { top: 48%; left: 48%; animation-delay: 1.7s; animation-duration: 7.5s; }
.global-sparkles .sparkle:nth-child(25) { top: 58%; left: 12%; animation-delay: 2.2s; animation-duration: 10.2s; }
.global-sparkles .sparkle:nth-child(26) { top: 68%; left: 78%; animation-delay: 2.7s; animation-duration: 6.5s; }
.global-sparkles .sparkle:nth-child(27) { top: 78%; left: 28%; animation-delay: 3.2s; animation-duration: 8.5s; }
.global-sparkles .sparkle:nth-child(28) { top: 88%; left: 58%; animation-delay: 3.7s; animation-duration: 9.5s; }
.global-sparkles .sparkle:nth-child(29) { top: 12%; left: 72%; animation-delay: 4.2s; animation-duration: 7.2s; }
.global-sparkles .sparkle:nth-child(30) { top: 92%; left: 22%; animation-delay: 4.7s; animation-duration: 8.2s; }

@keyframes sparkle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) scale(1.1);
        opacity: 0.9;
    }
}

/* Глобальные бабочки */
.global-butterflies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Глобальные бабочки - ПЛАВНЫЙ ПОЛЁТ */
.butterfly--global {
    position: absolute !important;
    opacity: 0.85 !important;
    width: 32px !important;
    height: 32px !important;
    animation: butterfly-fly-global 45s linear infinite !important; /* Медленнее в 2 раза */
    filter: drop-shadow(0 4px 12px rgba(232, 164, 184, 0.5)) !important;
}

/* Разные траектории для глобальных бабочек (8 штук) */
.global-butterflies .butterfly:nth-child(1) { animation-delay: 0s !important; --start-y: 15%; }
.global-butterflies .butterfly:nth-child(2) { animation-delay: 5s !important; --start-y: 35%; }
.global-butterflies .butterfly:nth-child(3) { animation-delay: 10s !important; --start-y: 55%; }
.global-butterflies .butterfly:nth-child(4) { animation-delay: 15s !important; --start-y: 75%; }
.global-butterflies .butterfly:nth-child(5) { animation-delay: 3s !important; --start-y: 25%; }
.global-butterflies .butterfly:nth-child(6) { animation-delay: 8s !important; --start-y: 45%; }
.global-butterflies .butterfly:nth-child(7) { animation-delay: 13s !important; --start-y: 65%; }
.global-butterflies .butterfly:nth-child(8) { animation-delay: 18s !important; --start-y: 85%; }

/* Глобальные бабочки в обратном направлении - ещё медленнее */
.global-butterflies .butterfly--reverse {
    animation: butterfly-fly-global-reverse 50s linear infinite !important;
}
.global-butterflies .butterfly:nth-child(11) { animation-delay: 9s; --start-y: 35%; }
.global-butterflies .butterfly:nth-child(12) { animation-delay: 11s; --start-y: 55%; }

/* Анимация полёта бабочек слева направо - ВСЕГДА ВИДИМЫЕ */
@keyframes butterfly-fly-global {
    0% {
        left: -10%;
        top: var(--start-y, 50%);
        transform: translateY(0) rotate(5deg);
        opacity: 0.9;
    }
    5% {
        opacity: 0.9;
    }
    10% {
        top: calc(var(--start-y, 50%) - 10%);
        transform: translateY(-20px) rotate(-5deg);
    }
    20% {
        top: calc(var(--start-y, 50%) + 5%);
        transform: translateY(10px) rotate(8deg);
    }
    30% {
        top: calc(var(--start-y, 50%) - 15%);
        transform: translateY(-30px) rotate(-3deg);
    }
    40% {
        top: calc(var(--start-y, 50%) + 10%);
        transform: translateY(15px) rotate(6deg);
    }
    50% {
        left: 50%;
        top: calc(var(--start-y, 50%) - 5%);
        transform: translateY(-10px) rotate(-6deg);
    }
    60% {
        top: calc(var(--start-y, 50%) + 15%);
        transform: translateY(20px) rotate(4deg);
    }
    70% {
        top: calc(var(--start-y, 50%) - 20%);
        transform: translateY(-25px) rotate(-8deg);
    }
    80% {
        top: calc(var(--start-y, 50%) + 8%);
        transform: translateY(12px) rotate(5deg);
    }
    90% {
        top: calc(var(--start-y, 50%) - 12%);
        transform: translateY(-18px) rotate(-4deg);
    }
    95% {
        opacity: 0.9;
    }
    100% {
        left: 110%;
        top: var(--start-y, 50%);
        transform: translateY(0) rotate(5deg);
        opacity: 0.9;
    }
}

/* Бабочки в обратном направлении */
.global-butterflies .butterfly--reverse {
    animation: butterfly-fly-global-reverse 28s linear infinite;
}

@keyframes butterfly-fly-global-reverse {
    0% {
        right: -10%;
        left: auto;
        top: var(--start-y, 50%);
        transform: translateY(0) rotate(-5deg) scaleX(-1);
        opacity: 0.9;
    }
    5% {
        opacity: 0.9;
    }
    10% {
        top: calc(var(--start-y, 50%) + 12%);
        transform: translateY(25px) rotate(5deg) scaleX(-1);
    }
    20% {
        top: calc(var(--start-y, 50%) - 8%);
        transform: translateY(-15px) rotate(-8deg) scaleX(-1);
    }
    30% {
        top: calc(var(--start-y, 50%) + 18%);
        transform: translateY(35px) rotate(3deg) scaleX(-1);
    }
    40% {
        top: calc(var(--start-y, 50%) - 12%);
        transform: translateY(-20px) rotate(-6deg) scaleX(-1);
    }
    50% {
        right: 50%;
        top: calc(var(--start-y, 50%) + 8%);
        transform: translateY(15px) rotate(6deg) scaleX(-1);
    }
    60% {
        top: calc(var(--start-y, 50%) - 18%);
        transform: translateY(-30px) rotate(-4deg) scaleX(-1);
    }
    70% {
        top: calc(var(--start-y, 50%) + 22%);
        transform: translateY(40px) rotate(8deg) scaleX(-1);
    }
    80% {
        top: calc(var(--start-y, 50%) - 6%);
        transform: translateY(-10px) rotate(-5deg) scaleX(-1);
    }
    90% {
        top: calc(var(--start-y, 50%) + 14%);
        transform: translateY(22px) rotate(4deg) scaleX(-1);
    }
    95% {
        opacity: 0.9;
    }
    100% {
        right: 110%;
        left: auto;
        top: var(--start-y, 50%);
        transform: translateY(0) rotate(-5deg) scaleX(-1);
        opacity: 0.9;
    }
}

/* Адаптив - меньше эффектов на мобильных */
@media (max-width: 768px) {
    .global-sparkles .sparkle:nth-child(n+16) {
        display: none;
    }
    .global-butterflies .butterfly:nth-child(n+7) {
        display: none;
    }
}

@media (max-width: 480px) {
    .global-sparkles .sparkle:nth-child(n+11) {
        display: none;
    }
    .global-butterflies .butterfly:nth-child(n+5) {
        display: none;
    }
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - ГРАДИЕНТНЫЕ ЗАГОЛОВКИ
   ========================================================================== */

/* Градиентные акценты на заголовках секций */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 1; 
        width: 80px;
    }
    50% { 
        opacity: 0.7; 
        width: 120px;
    }
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - МИКРО-АНИМАЦИИ ИКОНОК
   ========================================================================== */

/* Анимация эмодзи при наведении на карточки */
.problem-card__emoji,
.hero__trust-icon,
.pricing-card__feature-icon,
.target__item-icon,
.guarantee__icon,
.format-card__icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.problem-card:hover .problem-card__emoji,
.hero__trust-item:hover .hero__trust-icon,
.pricing-card__feature:hover .pricing-card__feature-icon,
.target__item:hover .target__item-icon {
    transform: scale(1.3) rotate(10deg);
}

.guarantee__content:hover .guarantee__icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(0.9) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-3deg); }
}

/* Анимация галочек в тарифах */
.pricing-card__feature-icon {
    animation: checkPop 0.5s ease forwards;
    animation-play-state: paused;
}

.pricing-card:hover .pricing-card__feature-icon {
    animation-play-state: running;
}

@keyframes checkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - ПАРАЛЛАКС ФОНОВ
   ========================================================================== */

/* Фиксированные фоны для эффекта параллакса */
.section[style*="background-image"] {
    background-attachment: fixed;
}

/* Для мобильных - отключаем fixed (не поддерживается на iOS) */
@media (max-width: 1024px) {
    .section[style*="background-image"] {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - УСИЛЕННЫЕ HOVER ЭФФЕКТЫ
   ========================================================================== */

/* Карточки с 3D эффектом при наведении */
.problem-card,
.module-card,
.format-card,
.pricing-card,
.faq-item,
.target__column {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.problem-card:hover,
.module-card:hover,
.format-card:hover,
.faq-item:hover,
.target__column:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(232, 164, 184, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Свечение вокруг популярного тарифа */
.pricing-card--popular {
    animation: popularGlow 3s ease-in-out infinite;
}

@keyframes popularGlow {
    0%, 100% {
        box-shadow: 
            0 12px 48px rgba(232, 164, 184, 0.22),
            0 6px 20px rgba(0, 0, 0, 0.1),
            0 0 0 3px rgba(232, 164, 184, 0.3);
    }
    50% {
        box-shadow: 
            0 16px 60px rgba(232, 164, 184, 0.35),
            0 8px 30px rgba(0, 0, 0, 0.15),
            0 0 0 5px rgba(232, 164, 184, 0.5),
            0 0 40px rgba(232, 164, 184, 0.2);
    }
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - ТЕКСТОВЫЕ ЭФФЕКТЫ
   ========================================================================== */

/* Градиентный текст для цен */
.pricing-card__price {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Подчёркивание ссылок при наведении */
.footer__list a,
.footer__contact-item a {
    position: relative;
}

.footer__list a::after,
.footer__contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.footer__list a:hover::after,
.footer__contact-item a:hover::after {
    width: 100%;
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - АНИМАЦИЯ ПОЯВЛЕНИЯ
   ========================================================================== */

/* Усиленные AOS анимации */
[data-aos="fade-up"] {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.8s ease !important;
}

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

[data-aos="zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.6s ease !important;
}

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

/* Каскадная анимация для карточек */
.problems__grid .problem-card:nth-child(1) { transition-delay: 0.1s; }
.problems__grid .problem-card:nth-child(2) { transition-delay: 0.2s; }
.problems__grid .problem-card:nth-child(3) { transition-delay: 0.3s; }
.problems__grid .problem-card:nth-child(4) { transition-delay: 0.4s; }
.problems__grid .problem-card:nth-child(5) { transition-delay: 0.5s; }

.pricing__grid .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing__grid .pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing__grid .pricing-card:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - ПЛАВАЮЩИЕ ЭЛЕМЕНТЫ
   ========================================================================== */

/* Мягкое покачивание для VIP бейджа */
.modules__vip-badge,
.pricing-card__badge {
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(1deg); }
    75% { transform: translateY(3px) rotate(-1deg); }
}

/* Пульсация иконки гарантии */
.guarantee__icon {
    animation: guaranteePulse 2s ease-in-out infinite;
}

@keyframes guaranteePulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(232, 164, 184, 0));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(232, 164, 184, 0.5));
    }
}

/* ==========================================================================
   PREMIUM EFFECTS 10/10 - ИНТЕРАКТИВНОСТЬ
   ========================================================================== */

/* Курсор pointer для интерактивных элементов */
.problem-card,
.module-card,
.format-card,
.pricing-card,
.faq-item,
.target__column,
.news-card {
    cursor: pointer;
}

/* Ripple эффект для кнопок (улучшенный) */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННЫЕ МЕТКИ "ДО" И "ПОСЛЕ"
   ========================================================================== */

.transformation__images {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.transformation__image {
    position: relative;
    max-width: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.transformation__image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.transformation__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* МЕТКИ "ДО" И "ПОСЛЕ" - ВИДИМЫЕ НА ПОДЛОЖКЕ */
.transformation__image-label {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.transformation__image:hover .transformation__image-label {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Метка ДО - тёмная с градиентом */
.transformation__image--before .transformation__image-label {
    background: linear-gradient(135deg, #4A4A4A 0%, #2C2C2C 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Метка ПОСЛЕ - акцентная с градиентом */
.transformation__image--after .transformation__image-label {
    background: var(--gradient-button);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Градиентный overlay на изображениях для контраста */
.transformation__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (max-width: 768px) {
    .transformation__images {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .transformation__image {
        max-width: 280px;
    }
    
    .transformation__image-label {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   PREMIUM 10/10 - ВОЛНИСТЫЕ ПЕРЕХОДЫ МЕЖДУ СЕКЦИЯМИ
   ========================================================================== */

/* Декоративная волна между секциями */
.section-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.section-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.section-wave--top {
    top: -2px;
    bottom: auto;
    transform: rotate(180deg);
}

/* Волна с градиентом */
.section-wave path {
    fill: var(--bg-primary);
}

.section-wave--pink path {
    fill: #FDF5F2;
}

.section-wave--cream path {
    fill: #FCF0EC;
}

/* Анимированная волна */
.section-wave--animated path {
    animation: wave-float 8s ease-in-out infinite;
}

@keyframes wave-float {
    0%, 100% { d: path("M0,64 C320,100 640,20 960,64 C1280,108 1600,20 1920,64 L1920,100 L0,100 Z"); }
    50% { d: path("M0,64 C320,20 640,100 960,64 C1280,20 1600,100 1920,64 L1920,100 L0,100 Z"); }
}

/* ==========================================================================
   PREMIUM 10/10 - ТЕКСТУРНЫЙ NOISE OVERLAY
   ========================================================================== */

/* Глобальный noise overlay для глубины */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННЫЙ GLASSMORPHISM НА МОДАЛКАХ
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9) translateY(20px);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(253, 245, 242, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 80px rgba(232, 164, 184, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(232, 164, 184, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active + .modal,
.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) translateY(0);
}

/* Декоративный градиент на модальном окне */
.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННЫЕ СЧЁТЧИКИ С АНИМАЦИЕЙ
   ========================================================================== */

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(232, 164, 184, 0.2);
    transition: all 0.3s ease;
}

.hero__trust-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(232, 164, 184, 0.35);
}

.hero__trust-item .counter-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 800;
}

/* ==========================================================================
   PREMIUM 10/10 - МИКРО-АНИМАЦИИ ИКОНОК
   ========================================================================== */

/* Bounce при hover на эмодзи */
.problem-card__emoji {
    display: inline-block;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.problem-card:hover .problem-card__emoji {
    transform: scale(1.3) rotate(10deg);
    animation: emoji-bounce 0.6s ease;
}

@keyframes emoji-bounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.4) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(8deg); }
    70% { transform: scale(1.35) rotate(-3deg); }
    100% { transform: scale(1.3) rotate(10deg); }
}

/* Иконки формата обучения */
.format-card__icon {
    display: inline-block;
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.format-card:hover .format-card__icon {
    transform: scale(1.2) translateY(-5px);
    animation: icon-float 2s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: scale(1.2) translateY(-5px); }
    50% { transform: scale(1.2) translateY(-12px); }
}

/* Галочки в тарифах с анимацией */
.pricing-card__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #7CB99A 0%, #5BA37A 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(124, 185, 154, 0.4);
    transition: all 0.3s ease;
}

.pricing-card__feature:hover .pricing-card__feature-icon {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(124, 185, 154, 0.6);
}

/* Иконка щита гарантии */
.guarantee__icon {
    display: inline-block;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: shield-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(232, 164, 184, 0.3));
}

@keyframes shield-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 8px 20px rgba(232, 164, 184, 0.3));
    }
    50% { 
        transform: scale(1.08);
        filter: drop-shadow(0 12px 30px rgba(232, 164, 184, 0.5));
    }
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННЫЙ SHIMMER НА КНОПКАХ
   ========================================================================== */

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
    animation: shimmer-continuous 3s ease-in-out infinite;
}

@keyframes shimmer-continuous {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* Второй слой shimmer для более премиального эффекта */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 60%
    );
    z-index: 0;
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННЫЕ FAQ СТИЛИ
   ========================================================================== */

.faq-item {
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FFF0ED 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    box-shadow: 
        0 4px 25px rgba(232, 164, 184, 0.12),
        0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 2px solid rgba(232, 164, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(232, 164, 184, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(232, 164, 184, 0.3);
}

.faq-item.active {
    border-color: var(--accent-primary);
    box-shadow: 
        0 15px 50px rgba(232, 164, 184, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    text-align: left;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item__question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.faq-item.active .faq-item__question::before {
    height: 60%;
}

.faq-item__question:hover {
    color: var(--accent-hover);
}

.faq-item__icon {
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--accent-primary);
    background: rgba(232, 164, 184, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    background: var(--gradient-primary);
    color: #fff;
}

.faq-item__answer-inner {
    padding: 0 2rem 1.75rem 2rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(232, 164, 184, 0.08) 0%, rgba(201, 184, 212, 0.08) 100%);
    margin: 0 1rem 1rem;
    padding-top: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-primary);
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННЫЕ КАРТОЧКИ ТАРИФОВ
   ========================================================================== */

.pricing-card {
    position: relative;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF8F6 50%, #FFFAF8 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(232, 164, 184, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(232, 164, 184, 0.2);
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(232, 164, 184, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(232, 164, 184, 0.4);
}

/* Популярный тариф - премиум стиль */
.pricing-card--popular {
    border: 3px solid var(--accent-primary);
    transform: scale(1.03);
    background: linear-gradient(145deg, #FFFBFA 0%, #FFF5F2 50%, #FFF0ED 100%);
    box-shadow: 
        0 25px 70px rgba(232, 164, 184, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(232, 164, 184, 0.15);
}

.pricing-card--popular::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
    animation: popular-glow 3s ease-in-out infinite;
}

@keyframes popular-glow {
    0%, 100% { opacity: 0.3; filter: blur(15px); }
    50% { opacity: 0.5; filter: blur(20px); }
}

.pricing-card--popular:hover {
    transform: scale(1.03) translateY(-12px);
}

.pricing-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 2rem;
    background: var(--gradient-button);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 
        0 6px 20px rgba(232, 164, 184, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badge-float 2.5s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

/* ==========================================================================
   PREMIUM 10/10 - УЛУЧШЕННАЯ МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================================== */

@media (max-width: 768px) {
    /* Уменьшаем количество анимаций для производительности */
    .hero__float-element:nth-child(n+5) {
        display: none;
    }
    
    .sparkle:nth-child(n+11) {
        display: none;
    }
    
    .butterfly:nth-child(n+4) {
        display: none;
    }
    
    /* Улучшаем touch-эффекты */
    .btn {
        -webkit-tap-highlight-color: rgba(232, 164, 184, 0.3);
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    /* Увеличиваем touch-области */
    .faq-item__question {
        padding: 1.5rem 1.25rem;
        min-height: 60px;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    /* Упрощаем тени для производительности */
    .pricing-card,
    .problem-card,
    .module-card,
    .faq-item {
        box-shadow: 0 4px 20px rgba(232, 164, 184, 0.15);
    }
    
    /* Отключаем 3D эффекты на мобильных */
    .pricing-card:hover,
    .problem-card:hover,
    .news-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    /* Ещё больше упрощаем для маленьких экранов */
    .hero__butterflies,
    .hero__float-elements {
        opacity: 0.5;
    }
    
    .global-butterflies .butterfly:nth-child(n+3) {
        display: none;
    }
    
    .global-sparkles .sparkle:nth-child(n+8) {
        display: none;
    }
    
    /* Уменьшаем отступы */
    .section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }
    
    .pricing-card,
    .faq-item,
    .problem-card {
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   PREMIUM 10/10 - ФИНАЛЬНЫЕ ШТРИХИ
   ========================================================================== */

/* Плавная анимация скролла для всей страницы */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

/* Улучшенный selection */
::selection {
    background: rgba(232, 164, 184, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(232, 164, 184, 0.3);
    color: var(--text-primary);
}

/* Улучшенные scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(232, 164, 184, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-hover) 0%, #C47A8F 100%);
}

/* Анимация появления контента при загрузке */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero__pretitle { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.2s; }
.hero__subtitle { animation-delay: 0.3s; }
.hero__cta-wrapper { animation-delay: 0.4s; }
.hero__cta-note { animation-delay: 0.5s; }
.hero__trust { animation-delay: 0.6s; }

/* ==========================================================================
   PREMIUM 10/10 - ДОПОЛНИТЕЛЬНЫЕ ФИНАЛЬНЫЕ ЭФФЕКТЫ
   ========================================================================== */

/* Улучшенная форма в модальном окне */
.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid rgba(232, 164, 184, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(232, 164, 184, 0.05);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 
        0 0 0 4px rgba(232, 164, 184, 0.15),
        0 4px 20px rgba(232, 164, 184, 0.1);
    transform: translateY(-2px);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(74, 74, 74, 0.5);
}

.form__label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.form__label span {
    color: var(--accent-hover);
}

/* Улучшенный success message */
.form__success {
    text-align: center;
    padding: 3rem 1rem;
}

.form__success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: success-bounce 0.8s ease;
}

@keyframes success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.form__success-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--accent-success);
    margin-bottom: 0.75rem;
}

.form__success-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Улучшенная кнопка закрытия модалки */
.modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 164, 184, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal__close:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: rotate(90deg);
}

/* Улучшенный заголовок модалки */
.modal__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal__subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Улучшенные новостные карточки */
.news-card {
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 10;
    pointer-events: none;
}

.news-card:hover::before {
    transform: translateX(100%);
}

/* Бейдж HOT на featured news */
.news-featured__badge {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
    }
}

/* Улучшенный scroll-to-top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-button);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 
        0 6px 25px rgba(232, 164, 184, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

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

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(232, 164, 184, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.scroll-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Pulse анимация на scroll-top */
.scroll-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    animation: scroll-pulse 2s ease-in-out infinite;
    opacity: 0;
}

.scroll-top.visible::after {
    opacity: 1;
}

@keyframes scroll-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Улучшенный кастомный курсор */
.custom-cursor {
    display: none;
}

@media (min-width: 1024px) and (pointer: fine) {
    .custom-cursor {
        display: block;
        width: 16px;
        height: 16px;
        background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99999;
        transition: transform 0.15s ease;
        mix-blend-mode: difference;
        filter: drop-shadow(0 0 8px var(--accent-primary));
    }
    
    .custom-cursor.hover {
        transform: scale(4);
        background: radial-gradient(circle, rgba(232, 164, 184, 0.3) 0%, transparent 70%);
        border: 2px solid var(--accent-primary);
    }
}

/* Анимация загрузки страницы */
body {
    animation: page-fade-in 0.6s ease;
}

@keyframes page-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .header,
    .footer,
    .scroll-top,
    .custom-cursor,
    .modal-overlay,
    .modal,
    .global-effects {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        padding: 1rem 0;
    }
}

