/* ========================================
   ПОГНАЛИ МОТО — Premium Landing Page
   Палитра: чёрный, белый, синий (speed blue)
   ======================================== */

:root {
    /* === Брендовые цвета === */
    --brand-blue: #0055ff;
    --brand-blue-bright: #2979ff;
    --brand-blue-dark: #0033cc;
    --brand-black: #000000;
    --brand-white: #ffffff;

    /* === Тёмная палитра === */
    --dark-900: #06060b;
    --dark-800: #0a0c14;
    --dark-700: #10131e;
    --dark-600: #171b2d;
    --dark-500: #1e2340;

    /* === Серые === */
    --gray-400: #cccccc;
    --gray-300: #9ca3af;
    --gray-200: #d1d5db;

    /* === Акцент (на основе бренд-синего) === */
    --accent: var(--brand-blue);
    --accent-bright: var(--brand-blue-bright);
    --accent-dark: var(--brand-blue-dark);
    --accent-glow: rgba(0, 85, 255, 0.4);
    --accent-subtle: rgba(0, 85, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, #0044dd 0%, #0055ff 40%, #2979ff 100%);

    /* === Карточки и стекло === */
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-hover-border: rgba(0, 85, 255, 0.35);
    --glass-bg: rgba(10, 12, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* === Системные === */
    --white: var(--brand-white);
    --black: var(--brand-black);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
    --shadow-accent: 0 0 60px rgba(0, 85, 255, 0.15);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1400px;
}

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

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

#ast-scroll-top { display: none !important; }

body {
    font-family: var(--font);
    background: var(--dark-900) !important;
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

/* Базовые сбросы */
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
}

.site-main {
    flex: 1;
}

ol, ul {
    margin: 0;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Утилиты ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--dark-800);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-align: left;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: left;
    color: var(--gray-400);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 0 70px;
    line-height: 1.7;
}

.section-empty {
    text-align: center;
    color: var(--gray-400);
    font-size: 1.1rem;
    padding: 60px 0;
}


/* ---- Кнопки ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: rgba(0, 85, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(0, 85, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
}

.btn-primary:hover {
    color: var(--white);
    background: rgba(0, 85, 255, 0.35);
    border-color: rgba(0, 85, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.3);
}

/* Блик по стеклу */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(255, 255, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 80%
    );
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.btn:hover::after {
    animation: glare 0.6s ease-out forwards;
}

@keyframes glare {
    0% {
        left: -75%;
    }
    100% {
        left: 150%;
    }
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 20px 52px;
    font-size: 1.1rem;
}

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
    background: var(--brand-blue);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
    transition: transform var(--transition);
}

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

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
}

.topbar-left svg {
    color: var(--white);
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    transition: opacity var(--transition);
}

.topbar-phone:hover {
    color: var(--white);
    opacity: 0.8;
}

.topbar-phone svg {
    color: var(--white);
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-socials a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
}

.topbar-socials a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.topbar-address-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: opacity var(--transition);
}
.topbar-address-link:hover { opacity: 0.8; color: var(--white); }

/* Popup связи */
.contact-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.contact-popup {
    background: var(--dark-700);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}
.contact-popup-overlay.active .contact-popup {
    transform: translateY(0) scale(1);
}
.contact-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}
.contact-popup-close:hover { color: var(--white); }
.contact-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.contact-popup-subtitle {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 28px;
}
.contact-popup-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-popup-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all var(--transition);
}
.contact-popup-option:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}
.contact-popup-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-popup-phone .contact-popup-icon {
    background: rgba(0, 85, 255, 0.15);
    color: #4d9fff;
}
.contact-popup-wa .contact-popup-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}
.contact-popup-tg .contact-popup-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}
.contact-popup-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}
.contact-popup-value {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-top: 2px;
}

/* ========================================
   ХЕДЕР
   ======================================== */
.site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Компактная шапка при скролле */
.site-header.scrolled .header-container {
    height: 60px;
}

.site-header.scrolled .logo-img {
    height: 50px;
}

.site-header.scrolled .header-nav ul {
    gap: 24px;
}

.site-header.scrolled .header-cta {
    padding: 8px 20px;
    font-size: 0.75rem;
}

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: all var(--transition);
}

.logo-img,
.header-cta,
.header-nav ul {
    transition: all var(--transition);
}

/* Логотип — слева */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/* Меню + кнопка — справа */
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-svg svg {
    height: 40px;
    width: auto;
    display: block;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-nav {
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.mobile-menu-extra {
    display: none;
}

.header-nav a {
    color: var(--gray-200);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--transition);
    position: relative;
}

.header-nav > ul a {
    padding-bottom: 4px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
    border-radius: 1px;
}

.header-nav a:hover {
    color: var(--white);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-cta.tariff-btn {
    padding: 12px 30px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(0, 85, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 85, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
    width: auto;
    border-radius: 60px;
}

.header-cta.tariff-btn:hover {
    background: rgba(0, 85, 255, 0.35);
    border-color: rgba(0, 85, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.3);
}

/* Бургер */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    grid-column: 3;
    justify-self: end;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO — полноэкранный блок
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    background: var(--dark-900);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 65% auto;
    align-items: center;
}


.hero-content {
    text-align: left;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 85, 255, 0.5) 0%, rgba(0, 60, 220, 0.25) 35%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(0, 85, 255, 1) 0%, rgba(0, 85, 255, 0.6) 30%, rgba(0, 60, 220, 0.3) 55%, transparent 75%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 85, 255, 0.25);
    border-radius: 60px;
    padding: 10px 24px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-bright);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    max-width: 750px;
}

.hero-title .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1rem);
    color: var(--gray-300);
    max-width: 550px;
    margin: 0 0 48px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* Декоративные элементы hero */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: var(--brand-blue);
    top: 5%;
    right: -5%;
    opacity: 0.1;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--brand-blue);
    bottom: 20%;
    right: 10%;
    opacity: 0.15;
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    background: var(--brand-blue);
    bottom: 10%;
    left: 5%;
    opacity: 0.12;
}


/* ========================================
   ПРЕИМУЩЕСТВА
   ======================================== */
.advantages {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.advantages .section-subtitle,
.tariffs .section-subtitle,
.steps .section-subtitle,
.reviews .section-subtitle,
.escort .escort-subtitle {
    max-width: 100%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Bento: 1 слева, 2 справа на 2 ряда, 3 под 1, 4-5-6 в ряд */
.advantage-card:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
.advantage-card:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 3; }
.advantage-card:nth-child(3) { grid-column: 1 / 4; grid-row: 2; }
.advantage-card:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
.advantage-card:nth-child(5) { grid-column: 3 / 5; grid-row: 3; }
.advantage-card:nth-child(6) { grid-column: 5 / 7; grid-row: 3; }

.advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: left;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Фоновое фото справа */
.advantage-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 55%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 85%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 85%);
}

.advantage-card:hover .advantage-bg {
    opacity: 0.5;
    transform: scale(1.05);
}

/* PNG на прозрачном фоне — ярче, без маски */
.advantage-card.has-png .advantage-bg {
    opacity: 0.7;
    mask-image: none;
    -webkit-mask-image: none;
    object-fit: contain;
    width: auto;
    height: 75%;
    right: -40px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.advantage-card.has-png:hover .advantage-bg {
    opacity: 0.85;
    transform: translateY(-50%);
}

/* Крупные карточки — фото побольше */
.advantage-card:nth-child(1) {
    min-height: 240px;
}

.advantage-card:nth-child(1) .advantage-bg {
    width: 50%;
    opacity: 1;
}

/* Высокая карточка инструктора */
.advantage-card:nth-child(2) {
    min-height: 100%;
}

.advantage-card:nth-child(2) .advantage-bg {
    width: 50%;
    opacity: 1;
    height: 90%;
}

.advantage-card:nth-child(2) {
    justify-content: flex-start;
}

.advantage-card:nth-child(2) .advantage-content {
    max-width: 55%;
}

.advantage-card:nth-child(1) .advantage-title,
.advantage-card:nth-child(2) .advantage-title {
    font-size: 1.2rem;
}

.advantage-card:nth-child(1) .advantage-text,
.advantage-card:nth-child(2) .advantage-text {
    font-size: 0.9rem;
}

/* Glare эффект */
.advantage-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.05) 55%, transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: none;
    z-index: 2;
}

.advantage-card:hover::after {
    animation: glare 0.6s ease-out forwards;
}

.advantage-card:hover {
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.advantage-content {
    position: relative;
    z-index: 1;
    max-width: 65%;
}

.advantage-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-bright);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.advantage-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.advantage-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Индивидуальные параметры фото для каждой карточки */
/* 1 — Безопасность (шлем) */
.advantage-card.advantage-card-1 .advantage-bg {
    height: 75%;
    right: -40px;
}
/* 2 — Инструкторы */
.advantage-card.advantage-card-2 .advantage-bg {
    height: 95%;
    top: 60%;
}
/* 3 — Техника */
.advantage-card.advantage-card-3 .advantage-bg {
    height: 100%;
    right: -134px;
}
/* 4 — Цены */
.advantage-card.advantage-card-4 .advantage-bg {
    height: 140%;
    top: 34%;
    right: -5px;
}
/* 5 — Результат */
.advantage-card.advantage-card-5 .advantage-bg {
    height: 100%;
    right: -20px;
}

/* ========================================
   ИНСТРУКТОРЫ
   ======================================== */
.instructors {
    background: rgba(255, 255, 255, 0.02);
}

.instructors-block {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 60px 0 60px 60px;
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.instructors-left {
    display: flex;
    flex-direction: column;
}

.instructors-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.instructors-title .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instructors-desc {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

/* Один инструктор */
.instructors-single {
    display: flex;
    flex-direction: column;
    padding: 60px;
}

.instructors-top {
    width: 100%;
    margin-bottom: 40px;
}

.instructor-solo {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.instructor-solo-photo {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.instructor-solo-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: var(--accent-gradient);
    opacity: 0.4;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.instructor-solo:hover .instructor-solo-glow {
    opacity: 0.6;
}

.instructor-solo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.instructor-solo:hover .instructor-solo-photo img {
    transform: scale(1.03);
}

.instructor-solo-card {
    background: #0b0b11;
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 50px 40px 50px 70px;
    margin-left: -30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    z-index: 1;
}

.instructor-solo-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.instructor-solo-position {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

.instructor-solo-desc {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.instructor-solo-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.instructor-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.instructor-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.instructor-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.instructors-nav {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.instr-prev,
.instr-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.instr-prev:hover,
.instr-next:hover {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.2);
}

.instructors-slider {
    overflow: hidden;
}

.instructors-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.instructor-card {
    flex: 0 0 calc((100% - 40px) / 2.25);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.instructor-card:hover {
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.1);
}

.instructor-photo {
    position: relative;
    overflow: hidden;
}

.instructor-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instructor-card:hover .instructor-photo img {
    transform: scale(1.05);
}

.instructor-info {
    padding: 20px;
}

.instructor-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.instructor-position {
    color: var(--accent-bright);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.instructor-experience {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========================================
   ТАРИФЫ
   ======================================== */
/* Слайдер тарифов */
.tariffs {
    overflow: hidden;
}

.tariffs-slider {
    overflow: visible;
    position: relative;
    cursor: grab;
    padding-top: 20px;
}

.tariffs-track {
    display: flex;
    gap: 32px;
    will-change: transform;
    transition: transform 0.4s ease;
}

.tariff-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px 36px 40px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    flex: 0 0 400px;
    min-width: 0;
}

/* Навигация тарифов */
.tariffs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.tariffs-prev,
.tariffs-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tariffs-prev:hover,
.tariffs-next:hover {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.2);
}


.tariff-popular {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.06);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.15);
}


.tariff-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0055ff, #0088ff);
    color: var(--white);
    padding: 8px 28px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.tariff-category {
    color: #0066ff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.tariff-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.tariff-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0055ff, #4d8dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tariff-price span {
    font-size: 1.5rem;
}

/* --- Акция: старая цена + бейдж скидки --- */
.tariff-price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2px;
    min-height: 24px;
}

.tariff-price-old {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 99, 99, 0.7);
    text-decoration-thickness: 2px;
}

.tariff-sale-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff3b3b, #ff7847);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

/* --- Акция: таймер обратного отсчёта --- */
.tariff-timer {
    margin: 12px 0 16px;
}

.tariff-timer-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.tariff-timer-units {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tariff-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    padding: 8px 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tariff-timer-unit b {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}

.tariff-timer-unit i {
    font-style: normal;
    font-size: 0.62rem;
    color: var(--gray-400);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tariff-duration {
    color: var(--gray-400);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.tariff-type {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--card-border);
}

.tariff-features {
    list-style: none;
    text-align: left;
    margin-bottom: 12px;
    max-height: 180px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tariff-features.expanded {
    max-height: 1000px;
}

.tariff-toggle {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 24px;
    display: none;
    align-items: center;
    gap: 4px;
    transition: opacity var(--transition);
}

.tariff-toggle:hover {
    opacity: 0.7;
}

.tariff-toggle svg {
    transition: transform 0.3s ease;
}

.tariff-features.expanded + .tariff-toggle svg {
    transform: rotate(180deg);
}

.tariff-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--gray-300);
    font-size: 0.95rem;
    padding-left: 28px;
    position: relative;
}

.tariff-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid rgba(0, 85, 255, 0.3);
    border-radius: 50%;
}

.tariff-features li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    color: #0066ff;
    font-size: 0.7rem;
    font-weight: 700;
}

.tariff-notice {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    margin-top: auto;
    padding: 10px 14px;
    background: rgba(255, 170, 0, 0.06);
    border: 1px solid rgba(255, 170, 0, 0.15);
    border-radius: 10px;
    line-height: 1.4;
}

.tariff-btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: auto;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tariff-btn:hover {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.2);
}

.tariff-popular .tariff-btn {
    background: linear-gradient(135deg, #0055ff, #0077ff);
    border-color: transparent;
}

.tariff-popular .tariff-btn:hover {
    background: linear-gradient(135deg, #0066ff, #0088ff);
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.35);
}

/* ========================================
   ВЫЕЗД С СОПРОВОЖДЕНИЕМ
   ======================================== */
.escort {
    background: var(--dark-800);
}

.escort-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: stretch;
}

.escort-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.escort-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.escort-subtitle {
    color: var(--gray-300);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

.escort-info {
    display: flex;
    flex-direction: column;
}

.escort-desc {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: auto;
    max-width: 100%;
}

.escort-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.escort-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.escort-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 85, 255, 0.15);
    border-radius: 12px;
    color: var(--accent-bright);
}

.escort-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.escort-feature-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.escort-card {
    position: sticky;
    top: 120px;
}

.escort-card-inner {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.escort-card-inner:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-accent);
}

.escort-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.escort-card-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-bright);
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 85, 255, 0.2);
    margin-bottom: 24px;
}

.escort-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.escort-card-price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.escort-card-price span {
    font-size: 1.5rem;
    font-weight: 600;
}

.escort-card-note {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.escort-card-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.escort-card-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.escort-card-includes li:last-child {
    border-bottom: none;
}

.escort-card-includes li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 85, 255, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232979ff' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.escort-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}

/* ========================================
   ЭТАПЫ ОБУЧЕНИЯ
   ======================================== */
.steps {
    background: rgba(255, 255, 255, 0.02);
}

/* Верхняя линия с номерами */
.steps-timeline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 32px;
    position: relative;
}

.step-dot-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 85, 255, 0.1);
    border: 2px solid rgba(0, 85, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(0, 85, 255, 0.4), rgba(0, 85, 255, 0.1));
    transform: translateX(-50%);
}

.step-dot span {
    font-size: 0.85rem;
    font-weight: 800;
    color: #4d8dff;
}

.step-connector {
    position: absolute;
    top: 50%;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 85, 255, 0.4), rgba(0, 85, 255, 0.15));
    z-index: 1;
}

/* Карточки */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-item {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 24px 32px;
    transition: all var(--transition);
    overflow: hidden;
}

.step-item:hover {
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.1);
}

.step-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.05) 55%, transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: none;
}

.step-item:hover::after {
    animation: glare 0.6s ease-out forwards;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 85, 255, 0.08);
    border: 1px solid rgba(0, 85, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d8dff;
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.step-item:hover .step-icon {
    border-color: rgba(0, 85, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
    background: rgba(0, 85, 255, 0.12);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Мобильный таймлайн */
.steps-mobile {
    display: none;
}

.step-mobile-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.step-mobile-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-mobile-line::after {
    content: '';
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 85, 255, 0.4), rgba(0, 85, 255, 0.1));
    margin-top: 8px;
}

.step-mobile-last .step-mobile-line::after {
    display: none;
}

.step-mobile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    flex: 1;
}

.step-mobile-card .step-icon {
    margin: 0 0 16px;
}

.step-mobile-card .step-title {
    text-align: left;
}

.step-mobile-card .step-text {
    text-align: left;
}

/* ========================================
   ОТЗЫВЫ
   ======================================== */
.reviews {
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    overflow: visible;
}

.reviews-track {
    display: flex;
    gap: 32px;
    transition: transform 0.4s ease;
}

/* Мокап телефона */
.review-phone {
    flex-shrink: 0;
    width: 340px;
}

.phone-frame {
    background: #1a1a2e;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-radius: 44px;
    padding: 14px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.phone-frame:hover {
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 85, 255, 0.1);
}

.phone-notch {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 4px auto 12px;
}

.phone-screen {
    background: #0d0d14;
    border-radius: 30px;
    overflow: hidden;
    min-height: 520px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Скриншот внутри экрана */
.phone-screen--screenshot {
    background: #fff;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.phone-play-local .phone-play-icon,
.phone-play-local .phone-pause-icon {
    pointer-events: none;
}

/* Скрыть паузу по умолчанию */
.phone-play-local .phone-pause-icon {
    display: none;
}

/* Когда играет: скрыть кнопку, но при ховере показать паузу */
.phone-play-local.playing .phone-play {
    opacity: 0;
    transition: opacity 0.3s;
}

.phone-play-local.playing:hover .phone-play {
    opacity: 1;
}

.phone-play-local.playing .phone-play-icon {
    display: none;
}

.phone-play-local.playing .phone-pause-icon {
    display: block;
}

.phone-play-local .phone-play {
    transition: opacity 0.3s;
}

/* Панель управления видео */
.phone-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 0 0 30px 30px;
}

.phone-screen:hover .phone-controls,
.phone-controls.visible {
    opacity: 1;
    pointer-events: auto;
}

.phone-mute-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.phone-mute-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.phone-mute-btn .icon-unmuted {
    display: none;
}

.phone-mute-btn.unmuted .icon-muted {
    display: none;
}

.phone-mute-btn.unmuted .icon-unmuted {
    display: block;
}

.phone-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.phone-progress:hover {
    height: 6px;
}

.phone-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--brand-blue);
    border-radius: 2px;
    transition: width 0.1s linear;
    pointer-events: none;
}

.phone-fullscreen-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.phone-fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.phone-fullscreen-btn .icon-shrink {
    display: none;
}

.phone-screen.is-fullscreen .phone-fullscreen-btn .icon-expand {
    display: none;
}

.phone-screen.is-fullscreen .phone-fullscreen-btn .icon-shrink {
    display: block;
}

/* В полноэкранном режиме — контролы всегда видны, видео по центру */
.phone-screen:fullscreen,
.phone-screen:-webkit-full-screen {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen:fullscreen .phone-video,
.phone-screen:-webkit-full-screen .phone-video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phone-screen:fullscreen .phone-controls,
.phone-screen:-webkit-full-screen .phone-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 14px 24px;
}

.phone-screen:fullscreen .phone-play-wrap,
.phone-screen:-webkit-full-screen .phone-play-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Кнопка Play для видео */
.phone-play-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-decoration: none;
}

.phone-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 85, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.3);
}

.phone-play-wrap:hover .phone-play {
    background: rgba(0, 85, 255, 1);
    box-shadow: 0 0 40px rgba(0, 85, 255, 0.5);
    transform: scale(1.1);
}

/* Кнопка увеличения для скриншотов */
.phone-zoom-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.phone-zoom-wrap .phone-play {
    width: 48px;
    height: 48px;
}

/* Полноэкранный просмотр скриншота (legacy) */
.screenshot-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 20px;
}

.screenshot-fullscreen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* ---- Лайтбокс-слайдер отзывов ---- */
.review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
}

.review-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.review-lb-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.review-lb-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    box-sizing: border-box;
}

.review-lb-slide img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    user-select: none;
    -webkit-user-drag: none;
}

.review-lb-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 10;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 8px;
}

.review-lb-close:hover {
    color: #fff;
}

.review-lb-prev,
.review-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.review-lb-prev { left: 16px; }
.review-lb-next { right: 16px; }

.review-lb-prev:hover,
.review-lb-next:hover {
    background: rgba(0, 85, 255, 0.2);
    border-color: rgba(0, 85, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.25);
}

.review-lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .review-lb-prev,
    .review-lb-next {
        width: 36px;
        height: 36px;
    }
    .review-lb-prev { left: 8px; }
    .review-lb-next { right: 8px; }
    .review-lb-slide { padding: 60px 12px 50px; }
    .review-lb-slide .phone-frame { width: 300px; }
}

/* Iframe видео внутри экрана телефона */
.phone-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    border: none;
    border-radius: 30px;
    background: #000;
}

/* Модалка для видео (резерв) */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-overlay iframe {
    width: 100%;
    max-width: 400px;
    height: 70vh;
    border-radius: 16px;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: #fff;
}

/* Текстовый отзыв внутри экрана */
.phone-text-review {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.phone-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.phone-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055ff, #0077ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.phone-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.phone-stars {
    display: flex;
    gap: 2px;
    font-size: 0.75rem;
}

.phone-stars .star-on {
    color: #f59e0b;
}

.phone-stars .star-off {
    color: rgba(255, 255, 255, 0.15);
}

.phone-review-text,
.phone-review-text p {
    color: var(--gray-300);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Навигация */
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.reviews-prev,
.reviews-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-prev:hover,
.reviews-next:hover {
    border-color: rgba(0, 85, 255, 0.4);
    background: rgba(0, 85, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.2);
}

/* ========================================
   ФОРМА + FAQ
   ======================================== */
.form-faq-section {
    background: none;
    overflow: visible !important;
}

.form-faq-section .container {
    overflow: visible !important;
}

.form-faq-left {
    overflow: visible !important;
}

.faq-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.faq-heading span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    border-radius: var(--radius-xl);
}

.faq-subtitle {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-faq-sticky {
    will-change: transform;
}

.form-faq-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.form-faq-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-faq-subtitle {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-faq-right .faq-list {
    max-width: 100%;
}

.booking-form {
    max-width: 720px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    resize: vertical;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
    background: rgba(0, 180, 216, 0.03);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--gray-400);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group select option {
    background: var(--dark-700);
    color: var(--white);
}

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

.form-submit .btn {
    min-width: 300px;
}

.form-privacy {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.form-privacy a {
    color: var(--gray-300);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    display: none;
    padding: 16px;
    border-radius: var(--radius-sm);
}

.form-message.success {
    display: block;
    color: #34d399;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.form-message.error {
    display: block;
    color: #fb7185;
    background: rgba(251, 113, 133, 0.08);
    border: 1px solid rgba(251, 113, 133, 0.2);
}

.booking-form .field-error {
    border-color: #fb7185 !important;
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.15) !important;
}

/* Модалка успешной отправки */
.form-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.form-success-content {
    background: var(--dark-800, #1a1a2e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px 40px 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.form-success-modal.active .form-success-content {
    transform: scale(1) translateY(0);
}

.form-success-icon {
    margin-bottom: 20px;
}

.form-success-icon svg {
    animation: successPop 0.5s ease 0.2s both;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.form-success-icon circle {
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    animation: successCircle 0.6s ease 0.3s forwards;
}

@keyframes successCircle {
    to { stroke-dashoffset: 0; }
}

.form-success-icon path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: successCheck 0.4s ease 0.7s forwards;
}

@keyframes successCheck {
    to { stroke-dashoffset: 0; }
}

.form-success-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.form-success-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.form-success-btn {
    min-width: 160px;
}

@media (max-width: 768px) {
    .form-success-content {
        padding: 36px 24px 32px;
    }
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
    background: var(--card-bg);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: var(--card-hover-border);
    background: rgba(0, 180, 216, 0.03);
    border-radius: var(--radius-xl);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: color var(--transition);
}

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

.faq-arrow {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--accent);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray-300);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ========================================
   КОНТАКТЫ
   ======================================== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.contact-item:hover {
    background: var(--accent-subtle);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--accent-subtle);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-item h4 {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.contacts-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 100%;
    min-height: 420px;
}

.contacts-map [class*="ymaps"] {
    border-radius: var(--radius);
}

/* ========================================
   СТРАНИЦЫ (page.php, privacy)
   ======================================== */
.page-content {
    padding-top: 200px;
    padding-bottom: 100px;
}

.page-content .container {
    max-width: 820px;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.page-updated {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--white);
    padding-top: 12px;
}

.page-body h2:first-child {
    margin-top: 0;
}

.page-body p {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.page-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.page-body ul li {
    position: relative;
    padding-left: 28px;
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.page-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.page-body a {
    color: var(--accent-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-body a:hover {
    color: var(--white);
}

.page-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .page-body h2 {
        margin: 36px 0 16px;
    }
}

/* ========================================
   ФУТЕР
   ======================================== */
/* CTA секция перед футером */
.contacts.section { padding-bottom: 80px; }

.footer-cta-section {
    padding: 80px 0;
    background: var(--dark-800);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    border-radius: var(--radius-xl);
    background: rgba(0, 85, 255, 0.06);
    border: 1px solid rgba(0, 85, 255, 0.15);
}

.footer-cta h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.footer-cta h3 span {
    color: var(--accent-bright);
}

.footer-cta p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-cta .tariff-btn {
    width: auto;
    display: inline-block;
    padding: 20px 52px;
    border-radius: 60px;
    flex-shrink: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner p {
    color: var(--gray-400);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner a {
    color: var(--accent-bright);
    text-decoration: underline;
}

.cookie-accept {
    padding: 10px 28px;
    font-size: 0.82rem;
    border-radius: 60px;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-footer {
    background: #030305;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 48px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-row li {
    list-style: none;
}

.footer-nav-row ul {
    display: contents;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-row a {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-nav-row a:hover {
    color: var(--white);
}

.footer-contacts-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--gray-400);
    opacity: 0.5;
}

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

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--gray-400);
    font-size: 0.82rem;
}

.footer-bottom a {
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--gray-400);
}

/* ========================================
   АНИМАЦИИ
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Задержки для каскадной анимации */
.advantage-card:nth-child(2), .tariff-card:nth-child(2) { transition-delay: 0.1s; }
.advantage-card:nth-child(3), .tariff-card:nth-child(3) { transition-delay: 0.2s; }
.tariff-card:nth-child(4) { transition-delay: 0.3s; }
.tariff-card:nth-child(5) { transition-delay: 0.4s; }
.advantage-card:nth-child(4) { transition-delay: 0.3s; }
.advantage-card:nth-child(5) { transition-delay: 0.4s; }
.advantage-card:nth-child(6) { transition-delay: 0.5s; }

.step-item:nth-child(2) { transition-delay: 0.15s; }
.step-item:nth-child(3) { transition-delay: 0.3s; }
.step-item:nth-child(4) { transition-delay: 0.45s; }
.step-item:nth-child(5) { transition-delay: 0.6s; }

/* ========================================
   АДАПТИВ
   ======================================== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .advantage-card:nth-child(1),
    .advantage-card:nth-child(2),
    .advantage-card:nth-child(3),
    .advantage-card:nth-child(4),
    .advantage-card:nth-child(5),
    .advantage-card:nth-child(6) { grid-column: auto; grid-row: auto; }
    .advantage-card:nth-child(1) { min-height: 200px; }
    .advantage-card:nth-child(2) { min-height: 200px; }
    .advantage-card:nth-child(1) .advantage-title,
    .advantage-card:nth-child(2) .advantage-title { font-size: 1.05rem; }
    .advantage-card:nth-child(1) .advantage-text,
    .advantage-card:nth-child(2) .advantage-text { font-size: 0.85rem; width: 80%; }

    .advantage-content { max-width: 60%; }

    .topbar-left span { display: none; }

    .header-right { display: none; }
    .burger { display: flex; }

    .header-container {
        display: flex;
        justify-content: space-between;
        height: 70px;
    }

    .mobile-menu-extra { display: none; }

    .site-header.menu-open,
    .site-header.menu-open.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #06060b !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 1000;
    }

    .site-header.menu-open .header-container {
        height: 100% !important;
        flex-direction: column;
        padding: 0;
    }

    .site-header.menu-open .header-right {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex: 1;
        overflow-y: auto;
    }

    .site-header.menu-open .header-actions {
        display: none;
    }

    .header-nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex: 1;
        overflow-y: auto;
    }

    .header-nav.active > ul { display: none; }

    .site-header.menu-open .header-logo { display: none; }

    .site-header.menu-open .burger {
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .header-nav.active .mobile-menu-extra {
        display: flex;
        flex-direction: column;
        flex: 1;
        width: 100%;
        padding: 0 24px;
    }

    /* Шапка меню: логотип + крестик */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 32px;
    }

    .mobile-menu-logo .logo-img {
        height: 44px;
    }

    /* Пункты меню */
    .mobile-nav-full {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-full a {
        font-size: 1.1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }

    .mobile-nav-full a:hover {
        color: var(--white);
    }

    /* Нижний блок — прижат к низу */
    .mobile-menu-bottom {
        margin-top: auto;
        padding: 24px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-cta {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-contacts {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-menu-address {
        color: var(--gray-400);
        font-size: 0.85rem;
    }

    .mobile-menu-links {
        display: flex;
        gap: 20px;
    }

    .mobile-menu-links a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    .mobile-menu-links a:hover {
        color: var(--white);
    }

    .footer-cta { padding: 36px 40px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-contacts-row { align-items: flex-start; }
    .contacts-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 40px; }
    .escort-grid { grid-template-columns: 1fr 360px; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 40px 0; }

    .escort-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .escort-desc {
        display: none;
    }
    .escort-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }
    .escort-card {
        position: static;
    }
    .escort-card-inner {
        padding: 32px 24px;
    }
    .escort-card-badge { margin-bottom: 30px; }
    .escort-card-name { margin-bottom: 10px; }

    .section-subtitle { margin-bottom: 50px; }

    .logo-img { height: 50px; }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 180px;
        padding-bottom: 0;
        position: relative;
    }
    .hero-content { text-align: left; position: relative; z-index: 2; }
    .hero-image {
        position: relative;
        width: auto;
        margin: 0 auto;
        z-index: 3;
        pointer-events: none;
    }
    .hero { overflow-x: clip; overflow-y: visible; padding-top: 0; }
    .hero-image::before,
    .hero-image::after { display: none; }
    .hero-buttons { justify-content: flex-start; }
    .hero-buttons .btn-outline { display: none; }
    .hero-badge { margin: 0 0 24px; }
    .advantages { border-top: none; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .advantage-card:nth-child(1),
    .advantage-card:nth-child(2),
    .advantage-card:nth-child(3),
    .advantage-card:nth-child(4),
    .advantage-card:nth-child(5),
    .advantage-card:nth-child(6) {
        grid-column: span 1;
    }
    .advantage-card { min-height: 180px; }
    .advantage-card:nth-child(1),
    .advantage-card:nth-child(2) { min-height: 180px; }
    .advantage-card:nth-child(2) .advantage-content { max-width: 100%; }
    .advantage-content { max-width: 75%; }
    .tariffs-track {
        flex-direction: column;
        gap: 20px;
    }
    .tariff-card { flex: none; width: 100%; }
    .tariffs-nav { display: none; }
    .tariffs-slider { cursor: default; padding-top: 0; }
    .tariff-features { max-height: 1000px; }
    .tariff-features.collapsed { max-height: 180px; }

    .steps-desktop { display: none; }
    .steps-mobile { display: block; }

    .instructors-block {
        grid-template-columns: 1fr;
        padding: 30px 0;
        gap: 24px;
    }

    .instructors-single {
        padding: 40px 0;
    }

    .instructors-single .instructors-top {
        padding: 0;
    }

    .instructor-solo {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .instructor-solo-photo {
        border-radius: 20px;
    }

    .instructor-solo-photo img {
        border-radius: 20px;
    }

    .instructor-solo-card {
        background: transparent;
        border: none;
        margin-left: 0;
        padding: 24px 0 0;
    }

    .instructor-solo-name {
        font-size: 1.6rem;
    }

    .instructor-solo-stats {
        gap: 20px;
    }

    .instructor-stat-num {
        font-size: 1.3rem;
    }

    .instructors-left {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 30px;
    }

    .instructors-slider {
        padding-left: 30px;
        clip-path: inset(0 0 0 30px);
    }

    .instructors-slider.at-end {
        clip-path: inset(0 0 0 0);
    }

    .instructors-nav {
        margin-top: 0;
    }

    .instructors-desc {
        max-width: 400px;
    }

    .instructor-card {
        flex: 0 0 calc((100% - 20px) / 1.75);
    }

    .instructor-photo img {
        height: 240px;
    }

    .form-faq-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 30px;
    }

    .form-faq-sticky {
        position: static;
    }

    .form-grid { grid-template-columns: 1fr; }
    .booking-form { padding: 32px 20px; }

    .review-phone { width: 280px; }
    .phone-screen { min-height: 480px; }

    .footer-cta-section { padding: 48px 0; }
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    .footer-left {
        align-items: center;
    }
    .footer-nav-row {
        justify-content: center;
        gap: 8px 20px;
    }
    .footer-nav-row a { font-size: 0.9rem; }
    .footer-socials {
        justify-content: center;
    }
    .footer-contacts-row {
        align-items: center;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
        padding-top: 24px;
    }
    .footer-contact-item {
        font-size: 0.9rem;
        justify-content: center;
    }
    .footer-contacts-row span.footer-contact-item svg {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-lg { padding: 18px 36px; font-size: 1rem; }
    .header-cta { padding: 10px 20px; font-size: 0.8rem; }
    .contacts-map { min-height: 300px; }
    .contacts-map iframe { min-height: 300px; }

    .instructors-block {
        padding: 24px 0;
        gap: 20px;
    }

    .instructors-single {
        padding: 32px;
    }

    .instructor-solo-photo {
        border-radius: 16px;
    }

    .instructor-solo-card {
        padding: 20px 0 0;
    }

    .instructor-solo-name {
        font-size: 1.4rem;
    }

    .instructor-solo-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .instructor-stat-num {
        font-size: 1.2rem;
    }

    .instructor-stat-label {
        font-size: 0.7rem;
    }

    .instructors-left {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
    }

    .instructors-slider {
        padding-left: 24px;
        clip-path: inset(0 0 0 24px);
    }

    .instructors-nav {
        margin-top: 16px;
    }

    .instructors-title {
        margin-bottom: 12px;
    }

    .instructor-card {
        flex: 0 0 calc(100% - 60px);
    }

    .instructor-photo img {
        height: 200px;
    }

    .form-faq-grid {
        padding: 0;
        gap: 80px;
    }

    .booking-form {
        padding: 24px 16px;
    }

    .form-submit .btn {
        min-width: auto;
        width: 100%;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }

    .contact-item {
        display: flex;
        gap: 18px;
        padding: 18px 18px 18px 0;
    }

}

/* ========================================
   ОТКЛЮЧЕНИЕ HOVER НА ТАЧ-УСТРОЙСТВАХ
   ======================================== */
@media (hover: none) {
    a:hover { color: inherit; }

    .btn-primary:hover {
        background: rgba(0, 85, 255, 0.2);
        border-color: rgba(0, 85, 255, 0.4);
        box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
    }

    .btn:hover::after { animation: none; }

    .btn-outline:hover {
        border-color: var(--glass-border);
        background: rgba(255, 255, 255, 0.05);
    }

    .topbar-phone:hover { opacity: 1; }
    .topbar-socials a:hover { color: rgba(255, 255, 255, 0.75); background: none; }

    .header-nav a:hover { color: var(--gray-300); }
    .header-nav a:hover::after { width: 0; }

    .header-cta:hover {
        background: rgba(0, 85, 255, 0.2);
        border-color: rgba(0, 85, 255, 0.4);
        box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
    }

    .advantage-card:hover {
        border-color: var(--card-border);
        box-shadow: none;
        background: var(--card-bg);
    }
    .advantage-card:hover .advantage-bg { opacity: 0.4; transform: none; }
    .advantage-card.has-png:hover .advantage-bg { opacity: 0.7; transform: translateY(-50%); }
    .advantage-card:hover::after { animation: none; }

    .instructor-solo:hover .instructor-solo-glow { opacity: 0.4; }
    .instructor-solo:hover .instructor-solo-photo img { transform: none; }

    .instr-prev:hover,
    .instr-next:hover {
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }

    .instructor-card:hover {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }
    .instructor-card:hover .instructor-photo img { transform: none; }

    .tariff-btn:hover {
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }
    .tariff-popular .tariff-btn:hover {
        background: linear-gradient(135deg, #0055ff, #0077ff);
        box-shadow: none;
    }

    .step-item:hover {
        border-color: rgba(255, 255, 255, 0.06);
        box-shadow: none;
    }
    .step-item:hover::after { animation: none; }
    .step-item:hover .step-icon {
        border-color: rgba(0, 85, 255, 0.2);
        box-shadow: none;
        background: rgba(0, 85, 255, 0.08);
    }

    .phone-frame:hover {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    .phone-play-wrap:hover .phone-play {
        background: rgba(0, 85, 255, 0.85);
        box-shadow: 0 0 30px rgba(0, 85, 255, 0.3);
        transform: none;
    }

    .reviews-prev:hover,
    .reviews-next:hover {
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }

    .faq-item:hover { border-color: var(--card-border); }
    .faq-question:hover { color: var(--white); }

    .contact-item:hover { background: none; }

    .footer-nav-row a:hover { color: var(--gray-300); }
    a.footer-contact-item:hover { color: var(--gray-400); }
    .footer-socials a:hover {
        color: var(--gray-400);
        background: rgba(255, 255, 255, 0.06);
    }
    .footer-bottom a:hover { opacity: 0.7; }
}

/* ===== Промокод: плашка в hero ===== */
.hero-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 99, 71, 0.4);
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.18), rgba(255, 120, 71, 0.14));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    animation: heroPromoPulse 2.2s ease-in-out infinite;
}
.hero-promo-pill b { font-weight: 800; }
.hero-promo-pill:hover {
    border-color: rgba(255, 99, 71, 0.7);
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.28), rgba(255, 120, 71, 0.22));
    transform: translateY(-1px);
}
.hero-promo-pill svg { transition: transform var(--transition); flex: none; }
.hero-promo-pill:hover svg { transform: translateX(3px); }
.hero-promo-fire { font-size: 1.05rem; line-height: 1; }
@keyframes heroPromoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 79, 59, 0.35); }
    50% { box-shadow: 0 0 0 8px rgba(255, 79, 59, 0); }
}

/* ===== Промокод: попап ===== */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.promo-popup-overlay.active { opacity: 1; visibility: visible; }
.promo-popup {
    background: var(--dark-700);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.promo-popup-overlay.active .promo-popup { transform: translateY(0) scale(1); }
.promo-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}
.promo-popup-close:hover { color: var(--white); }
.promo-popup-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-right: 30px;
}
.promo-popup-fire { font-size: 1.6rem; line-height: 1; }
.promo-popup-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}
.promo-popup-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1.5px dashed rgba(255, 99, 71, 0.55);
    background: rgba(255, 79, 59, 0.08);
    margin-bottom: 14px;
}
.promo-popup-code-value {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--white);
}
.promo-popup-copy {
    flex: none;
    padding: 8px 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff3b3b, #ff7847);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity var(--transition);
}
.promo-popup-copy:hover { opacity: 0.9; }
.promo-popup-copy.copied { background: #1faa59; }
.promo-popup-note {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 22px;
}
.promo-popup-tariffs-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 10px;
}
.promo-popup-tariffs ul { list-style: none; margin: 0 0 24px; padding: 0; }
.promo-popup-tariff {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.promo-popup-tariff:last-child { border-bottom: none; }
.promo-popup-tariff-name {
    flex: 1 1 100%;
    font-weight: 700;
    color: var(--white);
}
.promo-popup-tariff-prices {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.promo-popup-tariff-prices s { color: var(--gray-400); }
.promo-popup-tariff-prices b {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}
.promo-popup-tariff-badge {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff3b3b, #ff7847);
    padding: 2px 7px;
    border-radius: 6px;
}
.promo-popup-tariff-until {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--gray-400);
}
.promo-popup-actions {
    display: flex;
    gap: 12px;
}
.promo-popup-actions .btn { flex: 1; text-align: center; justify-content: center; }

@media (max-width: 480px) {
    .promo-popup { padding: 28px 20px; }
    .promo-popup-actions { flex-direction: column; }
    .promo-popup-tariff-until { margin-left: 0; flex-basis: 100%; }
}

/* Промо-плашка на мобилке: ровные отступы сверху (от бейджа) и снизу (до заголовка).
   Стоит в конце файла, чтобы перебить базовое .hero-promo-pill { margin-top:16px }. */
@media (max-width: 768px) {
    .hero-badge:has(+ .hero-promo-pill) { margin-bottom: 16px; }
    .hero-promo-pill { margin: 0 0 16px; }
}

/* ===== Форма: авто-поле промокода ===== */
.form-group-promo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group-promo[hidden] { display: none; }
.form-promo-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.form-group-promo .form-promo-input {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    border: 1.5px dashed rgba(255, 99, 71, 0.6);
    background: rgba(255, 79, 59, 0.08);
    cursor: default;
}
.form-group-promo .form-promo-input:focus {
    border-color: rgba(255, 99, 71, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 79, 59, 0.12);
    background: rgba(255, 79, 59, 0.1);
}
.form-promo-hint {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== Скидка в попапе звонка ===== */
.contact-popup-promo {
    border: 1.5px dashed rgba(255, 99, 71, 0.5);
    background: rgba(255, 79, 59, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 22px;
}
.contact-popup-promo-head {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.contact-popup-promo-head b { font-weight: 900; letter-spacing: 0.04em; }
.promo-countdown { margin-bottom: 14px; }
.promo-countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.promo-countdown-units { display: flex; gap: 6px; }
.promo-countdown-units > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 46px;
    padding: 6px 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}
.promo-countdown-units b {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.promo-countdown-units i {
    font-style: normal;
    font-size: 0.6rem;
    color: var(--gray-400);
    margin-top: 3px;
    text-transform: uppercase;
}
.contact-popup-promo-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-popup-promo-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 0.85rem;
}
.contact-popup-promo-list .cpp-name { color: var(--gray-300); }
.contact-popup-promo-list .cpp-prices { white-space: nowrap; }
.contact-popup-promo-list .cpp-prices s { color: var(--gray-400); margin-right: 4px; }
.contact-popup-promo-list .cpp-prices b { color: var(--white); font-weight: 800; }
.contact-popup-promo-list .cpp-prices i {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff3b3b, #ff7847);
    padding: 1px 6px;
    border-radius: 5px;
    margin-left: 2px;
}
.contact-popup-promo-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin: 0;
}
/* Таймер внутри попапа промокода */
.promo-popup-countdown { margin: 2px 0 22px; }

/* ===== Предупреждение «Сопровождение только с женским полом» ===== */
.escort-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 28px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 0, 0.38);
    background: rgba(255, 184, 0, 0.08);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}
.escort-notice svg { flex: none; color: #ffb800; }

.form-escort-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 0, 0.38);
    background: rgba(255, 184, 0, 0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}
.form-escort-notice[hidden] { display: none; }
.form-escort-notice svg { flex: none; color: #ffb800; }
