    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-primary: #FF8C00;
            --color-primary-dark: #E67E00;
            --color-primary-light: #FFB84D;
            --color-cream: #FFF8F0;
            --color-white: #FFFFFF;
            --color-green: #7CB342;
            --color-green-light: #E8F5E9;
            --color-text: #2D3436;
            --color-text-light: #636E72;
            --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
            --shadow-strong: 0 20px 60px rgba(0,0,0,0.15);
            --radius: 20px;
            --radius-lg: 30px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--color-cream);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Базовые стили секций и сеток --- */
        section { padding: 80px 24px; }
        .section-container { max-width: 1280px; margin: 0 auto; }
        .section-title { font-size: 42px; text-align: center; margin-bottom: 16px; }
        .section-subtitle { text-align: center; color: var(--color-text-light); font-size: 18px; max-width: 600px; margin: 0 auto 48px; }
        .bg-white { background: var(--color-white); }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .card { background: var(--color-white); padding: 32px 24px; border-radius: var(--radius); box-shadow: var(--shadow-soft); text-align: center; transition: var(--transition); }
        .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
        .icon-svg { width: 32px; height: 32px; stroke: var(--color-primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
        .icon-small { width: 24px; height: 24px; }

        /* --- Header Styles --- */
        .header {
            background: var(--color-white);
            box-shadow: var(--shadow-soft);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        .header.scrolled { box-shadow: var(--shadow-medium); }
        .header-container {
            max-width: 1280px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center; justify-content: space-between; height: 80px;
        }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: var(--transition); }
        .logo-icon {
            width: 50px; height: 50px; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
        }
        .logo-icon svg { width: 30px; height: 30px; fill: white; }
        .logo-text { display: flex; flex-direction: column; }
        .logo-title { font-size: 24px; font-weight: 700; color: var(--color-text); line-height: 1.2; letter-spacing: -0.5px; }
        .logo-subtitle { font-size: 12px; color: var(--color-text-light); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

        .nav-desktop { display: flex; align-items: center; gap: 8px; }
        .nav-link {
            display: flex; align-items: center; gap: 6px; padding: 12px 16px;
            color: var(--color-text); text-decoration: none; font-weight: 500; font-size: 15px;
            border-radius: 12px; transition: var(--transition); cursor: pointer; background: none; border: none; font-family: inherit;
        }
        .nav-link:hover { background-color: var(--color-cream); color: var(--color-primary); }

        .header-contacts { display: flex; align-items: center; gap: 20px; }
        .contact-phone { display: flex; flex-direction: column; align-items: flex-end; }
        .phone-number { font-size: 18px; font-weight: 700; color: var(--color-text); text-decoration: none; transition: var(--transition); }
        .phone-number:hover { color: var(--color-primary); }
        .phone-label { font-size: 12px; color: var(--color-green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
        .phone-label::before { content: ''; width: 6px; height: 6px; background: var(--color-green); border-radius: 50%; display: inline-block; }

        .btn-primary, .btn-outline {
            padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px;
            transition: var(--transition); border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; justify-content: center;
        }
        .btn-primary { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: white; box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4); }
        .btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }

        .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; z-index: 1001; }
        .mobile-menu-btn span { display: block; width: 25px; height: 2px; background: var(--color-text); transition: var(--transition); border-radius: 2px; }
        .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .nav-mobile {
            display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: var(--color-white);
            padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; z-index: 999;
        }
        .nav-mobile.active { transform: translateX(0); }
        .mobile-nav-item { border-bottom: 1px solid #f0f0f0; }
        .mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; color: var(--color-text); text-decoration: none; font-weight: 600; font-size: 18px; }
        
        .mobile-contacts { margin-top: 32px; padding-top: 32px; border-top: 2px solid var(--color-cream); }
        .mobile-phone { font-size: 24px; font-weight: 700; color: var(--color-text); text-decoration: none; display: block; margin-bottom: 16px; }

 /* --- Hero Section --- */
        .hero { margin-top: 80px; padding: 80px 24px; background: linear-gradient(135deg, var(--color-cream) 0%, #FFF5E6 100%); position: relative; overflow: hidden; }
        .hero-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
        
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--color-green-light); color: var(--color-green); padding: 6px 12px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
        .hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
        .hero-title { font-size: 56px; font-weight: 800; line-height: 1.1; color: var(--color-text); margin-bottom: 16px; letter-spacing: -1px; }
        .hero-title span { color: var(--color-primary); }
.hero-subtitle { font-size: 20px; color: var(--color-text-light); line-height: 1.6; margin-bottom: 24px; }        
.hero-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
        .hero-feature { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--color-text); }
        .hero-feature-icon { width: 28px; height: 28px; background: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); flex-shrink: 0; color: var(--color-primary); font-weight: bold; }
        
/* Правая колонка и визуал */
        .hero-right { position: relative; height: 100%; min-height: 500px; }
        .hero-image-desktop { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); position: relative; z-index: 2; }
        .hero-image-mobile { display: none; }
        
.hero-floating-card { 
            position: absolute; 
            background: var(--color-white); 
            padding: 16px 20px; /* Сделали чуть компактнее */
            border-radius: var(--radius); 
            box-shadow: var(--shadow-medium); 
            z-index: 3; 
            top: 30px;      /* Прижали к верху */
            left: -30px;   /* Сдвинули вправо */
            right: auto;     /* Сбросили старое значение left */
            max-width: 320px;
        }
.floating-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
        .floating-card-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
        .floating-card-info { display: flex; flex-direction: column; }
        .floating-card-name { font-weight: 700; font-size: 14px; color: var(--color-text); }
        .floating-card-role { font-size: 12px; color: var(--color-text-light); }
        .floating-card-text { font-size: 13px; color: var(--color-text); line-height: 1.5; font-style: italic; }
        
/* 3. Плашки доверия кладем прямо на картинку в правый нижний угол */
        .hero-trust-badges { 
            position: absolute; 
            bottom: 24px; 
            right: 24px; /* Прямо внутри картинки */
            display: flex; 
            flex-direction: column; 
            gap: 10px; 
            z-index: 3; 
        }
        .trust-badge { background: var(--color-white); padding: 10px 16px; border-radius: 50px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--color-text); }
        .trust-badge svg { width: 18px; height: 18px; color: var(--color-green); }

        /* --- Внутренние блоки (Цены, Программы, Меню) --- */
        .urgency { background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%); padding: 16px 24px; text-align: center; font-size: 16px; border-bottom: 1px solid rgba(255,140,0,0.1); }
        .urgency span { color: var(--color-primary); font-weight: 700; background: var(--color-white); padding: 4px 12px; border-radius: 20px; margin: 0 4px; box-shadow: 0 2px 8px rgba(255,140,0,0.2); }

        .features-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 40px auto 0; }
        .feature-item { display: flex; align-items: center; gap: 16px; background: var(--color-cream); padding: 20px 24px; border-radius: var(--radius); font-size: 16px; }
        .feature-item-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--color-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

        .pricing-card { background: var(--color-white); padding: 40px; border-radius: 30px; box-shadow: var(--shadow-soft); transition: var(--transition); text-align: left; }
        .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
        .pricing-time { color: var(--color-text-light); border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
        .pricing-features { list-style: none; margin-bottom: 24px;}
        .pricing-features li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--color-text-light); }
        .pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--color-green); font-weight: bold; }
        .price { font-size: 36px; font-weight: 800; color: var(--color-primary); margin-top: 20px; }
        .price-old { font-size: 20px; color: #999; text-decoration: line-through; margin-right: 12px; }

        /* Мини-таблица вариантов цены внутри pricing-card (страница Цены) */
        .pricing-variants { margin-top: 24px; padding-top: 20px; border-top: 1px solid #eee; }
        .pricing-variant { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed #f0f0f0; }
        .pricing-variant:last-child { border-bottom: none; }
        .pricing-variant-label { font-size: 15px; color: var(--color-text-light); font-weight: 500; }
        .pricing-variant-price { font-size: 18px; font-weight: 800; color: var(--color-primary); white-space: nowrap; }
        .pricing-variant-old { font-size: 14px; font-weight: 500; color: #999; text-decoration: line-through; margin-right: 6px; }

        /* Главная цена внутри pricing-variants (без label, крупная) */
        .pricing-variant-main { padding: 0 0 20px; border-bottom: 1px solid #eee; margin-bottom: 8px; }
        .pricing-variant-main .price { margin-top: 0; }

        /* Растягиваем карточки одинаково внутри grid-2 для страницы Цены */
        .pricing-card { display: flex; flex-direction: column; }
        .pricing-card .pricing-variants { margin-top: auto; }

        .program-card { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; transition: var(--transition); text-align: center; display: flex; flex-direction: column; }
        .program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
        .program-img { width: 100%; height: 180px; object-fit: cover; }
        .program-content { padding: 0 24px 32px; display: flex; flex-direction: column; align-items: center; flex-grow: 1; }
        .program-icon-wrapper { width: 64px; height: 64px; background: var(--color-cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: -32px; margin-bottom: 16px; border: 4px solid var(--color-white); }

        .flex-card { background: var(--color-white); padding: 32px; border-radius: var(--radius); display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow-soft); }
        .flex-card-icon { background: var(--color-cream); padding: 16px; border-radius: 50%; flex-shrink: 0; }
        
/* --- Обновленные стили для шагов маршрута (автоматические цифры) --- */
.direction-steps-text ul, 
.direction-steps-text ol { 
    list-style: none; 
    margin-top: 25px; /* Немного увеличили отступ */
    padding-left: 0; 
    counter-reset: step-counter; /* Запускаем счетчик */
}

.direction-steps-text li { 
    position: relative; 
    /* 28px ширина кружка + 16px отступ = 44px */
    padding-left: 44px; 
    margin-bottom: 16px; 
    min-height: 28px; 
    display: flex; 
    align-items: center; 
    color: var(--color-text);
}

.direction-steps-text li::before {
    counter-increment: step-counter; 
    content: counter(step-counter);
    position: absolute; 
    left: 0; 
    top: 0; /* Привязали к верху строки */
    
    /* Твой дизайн: */
    width: 28px; 
    height: 28px; 
    background: var(--color-primary); 
    color: white;
    border-radius: 50%; 
    font-weight: bold; 
    font-size: 14px;
    
    /* Центрируем саму цифру */
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* Стили для новых оранжевых иконок */
.direction-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary); /* Используем оранжевую переменную */
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

        .teacher-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--color-cream); }

        .review-card { background: var(--color-cream); padding: 32px; border-radius: var(--radius); text-align: left; }
        .reviewer { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
        .reviewer-avatar { width: 48px; height: 48px; background: var(--color-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 20px; }

        /* --- Gallery --- */
        .gallery-section { padding: 80px 24px; } /* перенесено из инлайн style (моб. override ниже) */
        .gallery-slider { position: relative; max-width: 900px; margin: 0 auto 24px; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-medium); touch-action: pan-y; }
        .gallery-track { display: flex; transition: transform 0.5s ease; }
        .gallery-slide { flex: 0 0 100%; width: 100%; height: 500px; }
        .gallery-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
        .gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); z-index: 10; }
        .gallery-prev { left: 20px; } .gallery-next { right: 20px; }
		
		/* Контейнер и сами точки для галереи */
.gallery-dots-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}
.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.gallery-dot:hover { background: rgba(255, 255, 255, 0.8); }
.gallery-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* --- CTA Section --- */
.cta-box {
    background: var(--color-white); /* Фон теперь белый */
    border: 1px solid #eee; /* Легкая граница */
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: var(--shadow-medium); /* Мощная тень, чтобы блок "парил" */
}
.cta-box-content {
    color: var(--color-text); /* Текст теперь темный */
    max-width: 650px;
}
.cta-box-title {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--color-text); /* Заголовок темный */
}
.cta-box-text {
    font-size: 18px;
    color: var(--color-text-light); /* Описание чуть светлее */
    line-height: 1.5;
}

@media (max-width: 640px) {
    .cta-box { flex-direction: column; text-align: center; justify-content: center; }
    .cta-box-title { font-size: 28px; }
}

        /* --- Footer --- */

        .footer { background: #1a1a1a; color: white; padding: 60px 24px 20px; }
        .footer-container { max-width: 1280px; margin: 0 auto; }
		                .footer-metro-btn { display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.15); color: white; padding: 8px 16px; border-radius: 20px; text-decoration: none; font-size: 14px; transition: background 0.3s; }
                .footer-metro-btn:hover { background: rgba(0,0,0,0.3); color: white; }
.footer-top {
    background: rgba(255, 255, 255, 0.05); /* Погасили фон */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Добавили легкую границу */
    border-radius: var(--radius); 
    padding: 30px 40px; 
    margin-bottom: 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 24px; 
}
.subscribe-form { display: flex; gap: 10px; }
.subscribe-form input { 
    box-sizing: border-box; /* Блокируем вылезание за края */
    padding: 14px 20px; 
    border-radius: 50px; 
    border: 1px solid rgba(255,255,255,0.2); 
    background: rgba(255, 255, 255, 0.1); 
    color: white;
    outline: none; 
    width: 100%;          
    max-width: 300px;     
    font-family: inherit; 
}
.subscribe-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

.subscribe-form button { 
    box-sizing: border-box; /* Блокируем вылезание за края */
    background: white; 
    color: #1a1a1a; 
    border: none; 
    padding: 14px 28px; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: bold; 
    transition: var(--transition);
}
.subscribe-form button:hover { background: #f0f0f0; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #ccc; transition: var(--transition); text-decoration: none;}
        .footer-links a:hover { color: var(--color-primary); }
.social-circle {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 40px;
                        height: 40px;
                        background: rgba(255, 255, 255, 0.2);
                        border-radius: 50%;
                        color: white;
                        text-decoration: none;
                        transition: background 0.3s ease;
                    }
                    .social-circle:hover {
                        background: rgba(255, 255, 255, 0.4);
                    }
		
		/* Дополнение для выпадающего меню */
.has-dropdown { position: relative; }
.dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--color-white); min-width: 220px;
    box-shadow: var(--shadow-medium); border-radius: 12px;
    padding: 10px 0; list-style: none; margin-top: 10px;
}
.dropdown::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-dropdown:hover .dropdown { display: block; animation: fadeIn 0.2s ease forwards; }
.dropdown a {
    display: block; padding: 10px 20px; color: var(--color-text);
    text-decoration: none; font-size: 15px; transition: var(--transition);
}
.dropdown a:hover { background: var(--color-cream); color: var(--color-primary); padding-left: 25px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   ДВУХУРОВНЕВАЯ ШАПКА
   ========================================= */

.header-top {
    background: var(--color-cream);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex; 
    align-items: center;
    height: 35px; /* Очень тонкая и аккуратная */
}

.header-top-inner {
    max-width: 1280px; 
    width: 100%; 
    margin: 0 auto; padding: 0 24px;
    display: flex; 
    justify-content: flex-end; 
    gap: 24px; 
    align-items: center;
    font-size: 13px; 
    color: var(--color-text-light);
}

.header-top a {
    color: var(--color-text); 
    font-weight: 600; 
    text-decoration: none; 
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top a:hover { 
    color: var(--color-primary); 
}

/* Переопределяем отступ у секции Герой, чтобы учесть новую полоску (80px оригинальная шапка + 35px верхняя = 115px) */
.hero { margin-top: 115px; }

/* На мобильных прячем полоску и возвращаем оригинальный отступ дизайнера */
@media (max-width: 1024px) {
    .header-top { display: none; }
    .hero { margin-top: 70px; }
}

        /* --- Модальное окно --- */
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; align-items: center; justify-content: center; }
        .modal.active { display: flex; }
        .modal-content { background: white; padding: 40px; border-radius: var(--radius); width: 100%; max-width: 400px; position: relative; }
        .modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--color-text-light); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--color-text); }
        .form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit; }

/* =========================================
   СТРАНИЦА УСЛУГ И FAQ
   ========================================= */
.service-layout { 
    display: grid; 
    grid-template-columns: 1fr 380px; 
    gap: 50px; 
    align-items: start; 
}
.service-sidebar { 
    position: sticky; 
    top: 120px; 
}
.info-list-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-bottom: 16px; 
    margin-bottom: 16px; 
    border-bottom: 1px solid var(--color-cream); 
}
.info-list-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-label { display: flex; align-items: center; gap: 12px; color: var(--color-text-light); }
.info-value { font-weight: 700; color: var(--color-text); font-size: 18px; }

.specialist-card { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    background: var(--color-cream); 
    padding: 16px; 
    border-radius: 16px; 
    margin-bottom: 24px; 
}

/* =========================================
   СТРАНИЦА КОНТАКТОВ
   ========================================= */
/* Отступ от шапки (так как нет блока Hero) */
.page-header-spacing {
    padding-top: 160px; 
    padding-bottom: 60px;
}

/* Растягиваем карточки по высоте */
.grid-stretch { align-items: stretch; }

/* Карточка контакта */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 40px 24px;
}

/* Обертка для иконки сверху */
.contact-icon-wrapper {
    background: var(--color-cream);
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Цвета для разных иконок */
.contact-icon-primary { color: var(--color-primary); }
.contact-icon-green { color: var(--color-green); }
.contact-icon-blue { color: #2AABEE; }
.contact-icon-orange { color: #E6A356; }

/* Тексты внутри карточек */
.contact-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text);
}
.contact-card-text {
    font-size: 15px;
    color: var(--color-text-light);
    margin: 0;
    text-align: center;
}

/* Ссылки (телефон, почта) */
.contact-card-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all;
    text-align: center;
}
.contact-card-link:hover { color: var(--color-primary); }
.contact-card-link.small-link {
    font-size: 15px;
    color: var(--color-text-light);
    font-weight: 400;
}

/* Блок соцсетей в контактах */
.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
/* Переопределяем цвета кружков соцсетей специально для белых карточек */
.contact-social-circle {
    color: var(--color-text);
    background: var(--color-cream);
}
.contact-social-circle:hover {
    color: var(--color-white);
    background: var(--color-primary);
}

/* =========================================
   FAQ (Адаптировано под HTML из редактора)
   ========================================= */
.faq-item { 
    background: var(--color-white); 
    border-radius: var(--radius); 
    margin-bottom: 16px; 
    box-shadow: var(--shadow-soft); 
    overflow: hidden;
}

/* Стили для твоего тега <h3 class="faq-question"> */
.faq-question { 
    padding: 24px; 
    margin: 0; /* Убираем стандартный отступ H3 */
    font-weight: 700; 
    font-size: 18px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    color: var(--color-text);
    user-select: none;
}

/* Рисуем ПЛЮСИК через CSS (никаких картинок в HTML не нужно!) */
.faq-question::after {
    content: '+';
    font-size: 32px;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

/* Превращаем в КРЕСТИК при открытии */
.faq-item.active .faq-question::after {
    transform: rotate(45deg); 
}

/* Возвращаем надежный max-height */
.faq-answer { 
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Стили для текста внутри ответа */
.faq-answer p {
    margin: 0;
    padding: 0 24px 24px 24px; /* Отступ только снизу и по бокам */
    color: var(--color-text-light); 
    line-height: 1.6; 
    font-size: 16px;
    font-weight: 400;
}

/* Состояние открыто */
.faq-item.active .faq-answer {
    grid-template-rows: 1fr; 
}

/* --- Адаптив --- */
        @media (max-width: 1024px) {
            .header-top { display: none; }
            .nav-desktop, .header-contacts { display: none; }
            .mobile-menu-btn { display: flex; }
            .nav-mobile { display: block; }
            .header-container { height: 70px; }
			
			/* ---> ДОБАВЛЯЕМ ВОТ ЭТОТ КУСОК <--- */
            .service-layout { 
                grid-template-columns: 1fr; /* Перестраиваем в 1 колонку */
                gap: 40px; /* Немного уменьшаем расстояние между текстом и сайдбаром */
            }
            .service-sidebar { 
                position: static; /* Отключаем "прилипание", чтобы сайдбар спокойно жил внизу */
				order: -1; /* МАГИЯ: заставляет этот блок встать самым первым! */
            }
			
			/* ---> ДОБАВЛЯЕМ ТОЧЕЧНОЕ ИСПРАВЛЕНИЕ ДЛЯ КНОПКИ <--- */
            .service-sidebar .btn-primary {
                padding: 14px 15px; /* Уменьшаем отступы кнопки на мобильных */
                font-size: 15px;     /* Делаем шрифт чуть меньше */
                width: 100%;        /* Гарантируем, что она займет всю ширину карточки */
                display: flex; 
                justify-content: center;
                align-items: center;
            }
            .service-sidebar .btn-primary svg {
                margin-right: 6px;   /* Уменьшаем отступ у иконки */
                flex-shrink: 0;       /* Запрещаем иконке сжиматься, пусть лучше сжимается текст */
            }
            
            /* Магия "Сэндвича" для мобильных */
            .hero { margin-top: 70px; padding: 40px 24px 60px; }
            .hero-container { grid-template-columns: 1fr; gap: 0; }
            .hero-title { font-size: 40px; margin-bottom: 16px; }
            .hero-subtitle { font-size: 18px; margin-bottom: 24px; }
            
            /* Прячем правую колонку (десктопное фото и плавающие карточки) */
            .hero-right { display: none; } 
            
            /* Показываем горизонтальное фото внутри сэндвича */
            .hero-image-mobile { 
                display: block; 
                width: 100%; 
                height: 250px; 
                object-fit: cover; 
                border-radius: var(--radius); 
                margin-bottom: 32px; 
                box-shadow: var(--shadow-soft);
            }
            
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .grid-3 { grid-template-columns: 1fr; }
        }

        @media (max-width: 1024px) {
            .gallery-slide { height: 440px; }
        }

        @media (max-width: 768px) {
            .gallery-slider { max-width: 100%; border-radius: 16px; }   /* было 30px */
            .gallery-section { padding-left: 10px; padding-right: 10px; } /* было 24px */
            .gallery-slide { height: 380px; }
            .gallery-nav { display: none; }   /* листание: свайп + точки + автоплей */
        }

        @media (max-width: 640px) {
            .hero-title { font-size: 32px; }
            .hero-subtitle { font-size: 16px; }
            
            /* --- ИСПРАВЛЕНИЯ ДЛЯ МОБИЛОК --- */
            .section-title { font-size: 28px; } /* Уменьшаем длинные заголовки */
            .hero-cta a.btn-primary { 
                padding: 16px 15px !important; /* Уменьшаем отступы по бокам */
                font-size: 14px !important;    /* Чуть уменьшаем шрифт */
                width: 100%; 
                justify-content: center;
                white-space: normal;           /* Разрешаем тексту переноситься, если совсем узко */
                text-align: center;
            }
            /* -------------------------------- */

            .hero-cta { flex-direction: column; }
            .hero-cta .btn-primary { width: 100%; justify-content: center; }

            .grid-4, .grid-2 { grid-template-columns: 1fr; }
            .subscribe-form { flex-direction: column; width: 100%; }
            .subscribe-form input { width: 100%; }
            .gallery-slide { height: 340px; }
            .flex-card { flex-direction: column; text-align: center; align-items: center; }
            
            .cta-box { flex-direction: column; text-align: center; justify-content: center; }
            .cta-box-title { font-size: 28px; }
        }

        /* =========================================
           СТРАНИЦА ЦЕН
           ========================================= */
        .page-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--color-text);
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .page-subtitle {
            font-size: 18px;
            color: var(--color-text-light);
            max-width: 600px;
            line-height: 1.5;
        }

        /* Сетка из 3 карточек */
        .pricing-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        /* Дополнительные услуги внутри карточки */
        .pricing-extras {
            margin-top: 16px;
            padding: 16px;
            background: var(--color-green-light);
            border-radius: 12px;
        }
        .pricing-extras-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-green);
            margin-bottom: 8px;
        }
        .pricing-extras-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .pricing-extra-tag {
            padding: 4px 10px;
            background: var(--color-white);
            border-radius: 12px;
            font-size: 12px;
            color: var(--color-green);
            font-weight: 500;
        }

        /* Единый блок цен */
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .pricing-option {
            padding: 12px 16px;
            background: var(--color-cream);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .pricing-option-main {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: white;
            grid-column: 1 / -1;
        }
        .pricing-option-main .pricing-option-label {
            color: white;
        }
        .pricing-option-main .pricing-option-sublabel {
            color: rgba(255, 255, 255, 0.8);
        }

        .pricing-option_old {
            opacity: 0.6;
            text-decoration: line-through;
        }

        .pricing-option-label {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-primary);
        }
        .pricing-option-sublabel {
            font-size: 12px;
            color: var(--color-text-light);
            font-weight: 500;
        }

        /* Мобильная адаптация для страницы цен */
        @media (max-width: 1024px) {
            .pricing-cards-grid {
                grid-template-columns: 1fr;
            }

            .pricing-options {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .page-title {
                font-size: 28px;
            }
            .page-subtitle {
                font-size: 16px;
            }
        }

        /* === Camp: блок активностей (10 круглых 150×150) === */
        .block-camp-activities .activity-img {
            width: 150px; height: 150px; border-radius: 50%;
            object-fit: cover; margin: 0 auto 16px;
            border: 4px solid var(--color-white);
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s;
        }
        .block-camp-activities .activity-item:hover .activity-img { transform: scale(1.05); }
        .block-camp-activities .activity-title {
            font-weight: 700; font-size: 16px; line-height: 1.3; color: var(--color-text);
        }
        .block-camp-activities .grid-4 { row-gap: 40px; text-align: center; }

        /* === Camp: блок цены (зелёный чек) === */
        .feat-check { color: var(--color-green); }
        .block-camp-pricing .bcp-section-title {
            font-size: 28px; font-weight: 800; margin-bottom: 24px; color: var(--color-primary);
        }
        .block-camp-pricing .bcp-program { margin-bottom: 16px; }
        .block-camp-pricing .bcp-program p { margin-bottom: 12px; }
        .block-camp-pricing .bcp-price-title {
            font-size: 28px; font-weight: 800; margin-top: 32px; margin-bottom: 16px; color: var(--color-primary);
        }
        .block-camp-pricing .big-price {
            font-size: 36px; font-weight: 800; margin-bottom: 16px;
        }
        .block-camp-pricing .big-price .period {
            font-size: 16px; font-weight: normal; color: var(--color-text-light);
        }
        .block-camp-pricing .bcp-intro { margin-bottom: 24px; }
        .block-camp-pricing h4 {
            font-size: 16px; font-weight: 700; margin-bottom: 12px;
        }
        .block-camp-pricing .bcp-features {
            list-style: none; padding: 0; margin: 0;
        }
        .block-camp-pricing .bcp-features li {
            margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
        }
    </style>