/* ============================================
EXPRESS-TRAINING LANDING PAGE
Design System & Styles (Final Complete Version)
============================================ */
/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 24px;
    color: #2D3748;
    background: #FFFFFF;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
ul, ol {
    list-style: none;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}
button {
    cursor: pointer;
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-dark { background: #162235; color: #FFFFFF; }
.section-deep { background: #0A1628; color: #FFFFFF; }
.section-light { background: #F7FAFC; }
.section-white { background: #FFFFFF; }
.text-center { text-align: center; }
.text-secondary { color: #B0B8C0; }
.text-accent { color: #37DCF2; }

/* --- Section Spacing --- */
.section {
    padding: 100px 0;
    position: relative;
}
.section__header {
    text-align: center;
    margin-bottom: 64px;
}
.section__title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section__subtitle {
    font-size: 18px;
    line-height: 28px;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
}
.section-dark .section__subtitle,
.section-deep .section__subtitle {
    color: #B0B8C0;
}

/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
HEADER (Sticky)
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    background: transparent;
}
.header.scrolled {
    background: rgba(22, 34, 53, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}
.header__logo svg { flex-shrink: 0; }
.header__logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header__nav a {
    font-size: 15px;
    color: #B0B8C0;
    transition: color 0.25s ease;
    font-weight: 500;
}
.header__nav a:hover { color: #37DCF2; }
.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #37DCF2;
    color: #162235;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.header__cta:hover {
    background: #2cc5d9;
    transform: translateY(-1px);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 4px 0;
    position: relative;
}
.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #162235;
    z-index: 1050;
    flex-direction: column;
    padding: 80px 32px 40px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open { right: 0; }

.mobile-menu__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    pointer-events: none; /* FIX: не блокирует клики, пока не открыт */
    transition: opacity 0.3s ease;
}
.mobile-menu__backdrop.open { 
    opacity: 1;
    pointer-events: auto; /* FIX: блокирует клики только когда открыт */
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s ease;
}
.mobile-menu a:hover { color: #37DCF2; }
.mobile-menu__cta {
    display: inline-flex;
    margin-top: 24px;
    padding: 14px 32px;
    background: #37DCF2;
    color: #162235;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
    transition: background 0.25s ease;
}
.mobile-menu__cta:hover { background: #2cc5d9; }

/* ============================================
SCREEN 1: HERO
============================================ */
.hero {
    min-height: 100vh;
    background: #162235;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(55, 220, 242, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(27, 107, 122, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.hero__content { max-width: 560px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(55, 220, 242, 0.1);
    border: 1px solid rgba(55, 220, 242, 0.25);
    border-radius: 100px;
    font-size: 14px;
    color: #37DCF2;
    margin-bottom: 24px;
    font-weight: 500;
}
.hero__title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
}
.hero__title span { color: #37DCF2; }
.hero__subtitle {
    font-size: 18px;
    line-height: 28px;
    color: #B0B8C0;
    margin-bottom: 40px;
}
.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: #37DCF2;
    color: #162235;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    background: #2cc5d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(55, 220, 242, 0.3);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-outline:hover {
    border-color: #37DCF2;
    color: #37DCF2;
    transform: translateY(-2px);
}
.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__image-placeholder {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #1a2d45, #223a54);
    border-radius: 24px;
    border: 2px solid rgba(55, 220, 242, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #B0B8C0;
    font-size: 16px;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.hero__image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(55, 220, 242, 0.05) 0%, transparent 50%);
    animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}
.hero__image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.4;
}
/* NEW: Hero real photo */
.hero__image-photo {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid rgba(55, 220, 242, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.scroll-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceArrow 2s ease-in-out infinite;
    color: #37DCF2;
    opacity: 0.7;
}
@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
SCREEN 2: PROBLEM
============================================ */
.problem { background: #F7FAFC; }
.problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.problem__card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid #37DCF2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.problem__icon {
    width: 48px;
    height: 48px;
    background: rgba(55, 220, 242, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #37DCF2;
}
.problem__icon svg { width: 24px; height: 24px; }
.problem__card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 12px;
    line-height: 28px;
}
.problem__card p {
    font-size: 15px;
    color: #718096;
    line-height: 24px;
}
.problem__motivation {
    text-align: center;
    margin-top: 48px;
    font-size: 18px;
    font-style: italic;
    color: #37DCF2;
    font-weight: 500;
}

/* ============================================
SCREEN 3: HOW IT WORKS
============================================ */
.how__steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
.how__line {
    position: absolute;
    top: 36px;
    left: 25%;
    right: 25%;
    height: 0;
    border-top: 2px dashed rgba(55, 220, 242, 0.3);
}
.how__step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.how__step-number {
    width: 72px;
    height: 72px;
    border: 2px solid #37DCF2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #37DCF2;
    margin: 0 auto 24px;
    background: rgba(55, 220, 242, 0.05);
}
.how__step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 12px;
}
.how__step p {
    font-size: 15px;
    color: #718096;
    line-height: 24px;
}
.how__conclusion {
    text-align: center;
    margin-top: 56px;
    font-size: 18px;
    color: #2D3748;
    font-weight: 600;
}
.how__conclusion span { color: #37DCF2; }

/* ============================================
FUTURE PACING BLOCK
============================================ */
.future-pacing {
    background: linear-gradient(135deg, #162235 0%, #1B6B7A 100%);
    position: relative;
    overflow: hidden;
}
.future-pacing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.future-pacing__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.future-pacing__icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: #D4AF37;
}
.future-pacing__icon svg { width: 36px; height: 36px; }
.future-pacing__title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
.future-pacing__text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.future-pacing__text p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 24px;
    position: relative;
}
.future-pacing__text p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 700;
}
.future-pacing__text strong {
    color: #D4AF37;
    font-weight: 700;
}
.future-pacing__signature {
    margin-top: 40px;
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

/* ============================================
SCREEN 4: DIRECTIONS
============================================ */
.directions { background: #162235; }
.directions .section__title { color: #FFFFFF; }
.directions .section__subtitle { color: #B0B8C0; }
.directions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.directions__card {
    background: #1a2d45;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(55, 220, 242, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.directions__card:hover {
    transform: translateY(-4px);
    border-color: rgba(55, 220, 242, 0.3);
    box-shadow: 0 8px 40px rgba(55, 220, 242, 0.1);
}
.directions__card--gentle {
    border-left: 3px solid #D4AF37;
}
.directions__card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1e3350, #243d5c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0B8C0;
    font-size: 14px;
    overflow: hidden;
}
.directions__card-image svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
    color: #37DCF2;
}
/* NEW: Directions card real image */
.directions__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.directions__card:hover .directions__card-image img {
    transform: scale(1.05);
}
.directions__card-body { padding: 28px; }
.directions__card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.directions__card-desc {
    font-size: 15px;
    color: #B0B8C0;
    line-height: 24px;
    margin-bottom: 20px;
}
.directions__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2; /* FIX: гарантирует кликабельность */
}
.directions__price {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}
.directions__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(55, 220, 242, 0.12);
    color: #37DCF2;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(55, 220, 242, 0.2);
    transition: background 0.25s ease, border-color 0.25s ease;
    position: relative;
    z-index: 2; /* FIX: гарантирует кликабельность */
}
.directions__card-cta:hover {
    background: rgba(55, 220, 242, 0.2);
    border-color: rgba(55, 220, 242, 0.4);
}
.directions__card-cta--gentle {
    background: rgba(212, 175, 55, 0.12);
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.3);
}
.directions__card-cta--gentle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

/* ============================================
SCREEN 5: TARGET AUDIENCE
============================================ */
.audience { background: #F7FAFC; }
.audience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.audience__card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.audience__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
/* UPDATED: увеличено с 52 до 80 для иллюстраций */
.audience__icon {
    width: 80px;
    height: 80px;
    background: rgba(55, 220, 242, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #37DCF2;
    overflow: hidden;
}
.audience__icon svg { width: 24px; height: 24px; }
/* NEW: Audience icon real image */
.audience__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.audience__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
}
.audience__card ul { padding-left: 96px; }
.audience__card li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #718096;
    line-height: 26px;
}
.audience__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #37DCF2;
    border-radius: 50%;
}

/* ============================================
SCREEN 6: ABOUT COACH
============================================ */
.coach { background: #FFFFFF; }
.coach__inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}
.coach__photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border: 4px solid #37DCF2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.coach__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.coach__photo::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px dashed rgba(55, 220, 242, 0.2);
    border-radius: 50%;
    pointer-events: none;
}
.coach__photo svg {
    width: 64px;
    height: 64px;
    color: #a0aec0;
    margin-bottom: 8px;
}
.coach__info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}
.coach__bio {
    font-size: 16px;
    color: #718096;
    line-height: 26px;
    margin-bottom: 28px;
}
.coach__credentials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.coach__credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2D3748;
}
.coach__credential-check {
    width: 24px;
    height: 24px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.coach__credential-check svg {
    width: 14px;
    height: 14px;
    color: #28a745;
}
.coach__quote {
    padding: 24px 28px;
    background: #F7FAFC;
    border-left: 4px solid #37DCF2;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 17px;
    color: #2D3748;
    line-height: 28px;
}

/* ============================================
AUDIO PREVIEW
============================================ */
.coach__audio-preview {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(55, 220, 242, 0.04), rgba(212, 175, 55, 0.04));
    border: 1px solid rgba(55, 220, 242, 0.15);
    border-radius: 16px;
}
.audio-preview__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.audio-preview__icon {
    width: 48px;
    height: 48px;
    background: rgba(55, 220, 242, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37DCF2;
    flex-shrink: 0;
}
.audio-preview__icon svg { width: 24px; height: 24px; }
.audio-preview__header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 4px;
}
.audio-preview__header p {
    font-size: 14px;
    color: #718096;
}
.audio-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.audio-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}
.audio-btn:hover {
    border-color: #37DCF2;
    background: rgba(55, 220, 242, 0.04);
    transform: translateY(-1px);
}
.audio-btn.playing {
    border-color: #37DCF2;
    background: rgba(55, 220, 242, 0.08);
}
.audio-btn--gentle {
    border-color: rgba(212, 175, 55, 0.3);
}
.audio-btn--gentle:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.04);
}
.audio-btn__play {
    width: 32px;
    height: 32px;
    background: #37DCF2;
    color: #162235;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.audio-btn.playing .audio-btn__play { background: #D4AF37; }
.audio-btn:hover .audio-btn__play { transform: scale(1.05); }
.audio-btn__label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
}
.audio-btn__duration {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

/* ============================================
QUIZ BLOCK
============================================ */
.quiz { background: #F7FAFC; }
.quiz__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.quiz__title {
    font-size: 32px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 12px;
}
.quiz__subtitle {
    font-size: 17px;
    color: #718096;
    margin-bottom: 40px;
}
.quiz__form {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
}
.quiz__step { display: none; }
.quiz__step--active {
    display: block;
    animation: quizFadeIn 0.4s ease-out;
}
@keyframes quizFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.quiz__question-text {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 24px;
}
.quiz__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.quiz__option {
    display: block;
    padding: 16px 20px;
    background: #F7FAFC;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 15px;
    color: #2D3748;
}
.quiz__option:hover {
    border-color: #37DCF2;
    background: rgba(55, 220, 242, 0.04);
}
.quiz__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.quiz__option:has(input:checked) {
    border-color: #37DCF2;
    background: rgba(55, 220, 242, 0.08);
    font-weight: 600;
}
.quiz__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}
.quiz__nav-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    transition: all 0.25s ease;
}
.quiz__nav-btn:hover:not(:disabled) {
    border-color: #37DCF2;
    color: #37DCF2;
}
.quiz__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.quiz__nav-btn--next {
    background: #37DCF2;
    border-color: #37DCF2;
    color: #162235;
}
.quiz__nav-btn--next:hover {
    background: #2cc5d9;
    color: #162235;
}
.quiz__progress {
    display: flex;
    gap: 8px;
}
.quiz__progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: background 0.25s ease;
}
.quiz__progress-dot--active { background: #37DCF2; }
.quiz__step--result { text-align: center; }
.quiz__result-icon {
    width: 64px;
    height: 64px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}
.quiz__result-title {
    font-size: 22px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 12px;
}
.quiz__result-text {
    font-size: 15px;
    line-height: 24px;
    color: #718096;
    margin-bottom: 28px;
}

/* ============================================
SCREEN 7: PRICING
============================================ */
.pricing { background: #F7FAFC; }
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.pricing__card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.pricing__card--premium {
    border: 2px solid #37DCF2;
    box-shadow: 0 4px 30px rgba(55, 220, 242, 0.15);
}
.pricing__card--premium:hover {
    box-shadow: 0 12px 50px rgba(55, 220, 242, 0.2);
}
.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #37DCF2;
    color: #162235;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing__card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}
.pricing__price {
    font-size: 42px;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 32px;
}
.pricing__price span {
    font-size: 16px;
    font-weight: 400;
    color: #718096;
}
.pricing__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    flex-grow: 1;
}
.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #2D3748;
    line-height: 22px;
}
.pricing__feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #28a745;
}
.pricing__card .btn-primary { width: 100%; }
.pricing__card .btn-outline {
    width: 100%;
    border-color: #37DCF2;
    color: #162235;
}
.pricing__card .btn-outline:hover {
    background: rgba(55, 220, 242, 0.05);
}
.pricing__note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: #718096;
}

/* ============================================
WHY THREE SESSIONS
============================================ */
.pricing__why-three {
    max-width: 800px;
    margin: 32px auto 0;
    background: #f8f5f0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
}
.pricing__why-three-toggle {
    width: 100%;
    padding: 20px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #D4AF37;
    transition: background 0.25s ease;
}
.pricing__why-three-toggle:hover {
    background: rgba(212, 175, 55, 0.05);
}
.pricing__why-three-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.35s ease;
}
.pricing__why-three.open .pricing__why-three-chevron {
    transform: rotate(180deg);
}
.pricing__why-three-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 28px;
}
.pricing__why-three.open .pricing__why-three-content {
    max-height: 1200px;
    padding: 0 28px 32px;
}
.pricing__why-three-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}
.pricing__why-three-content > p {
    font-size: 15px;
    line-height: 24px;
    color: #718096;
    margin-bottom: 24px;
}
.pricing__why-three-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 12px;
}
.pricing__why-three-step-num {
    width: 36px;
    height: 36px;
    background: #D4AF37;
    color: #162235;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.pricing__why-three-step strong {
    display: block;
    font-size: 15px;
    color: #2D3748;
    margin-bottom: 6px;
}
.pricing__why-three-step div:last-child {
    font-size: 14px;
    line-height: 22px;
    color: #718096;
}
.pricing__why-three-conclusion {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    font-style: italic;
    text-align: center;
}

/* ============================================
COST OF INACTION BLOCK
============================================ */
.cost-of-inaction { background: #FFFFFF; }
.cost-of-inaction__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.cost-of-inaction__title {
    font-size: 36px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 48px;
}
.cost-of-inaction__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.cost-of-inaction__item {
    padding: 32px 24px;
    background: #F7FAFC;
    border-radius: 16px;
    border-top: 3px solid #D4AF37;
}
.cost-of-inaction__number {
    font-size: 32px;
    font-weight: 800;
    color: #162235;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}
.cost-of-inaction__item p {
    font-size: 15px;
    line-height: 24px;
    color: #718096;
}

/* ============================================
SCREEN 8: REVIEWS
============================================ */
.reviews { background: #FFFFFF; }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reviews__card {
    background: #F7FAFC;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.reviews__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FFC107;
}
.reviews__stars svg { width: 18px; height: 18px; }
.reviews__text {
    font-size: 15px;
    color: #2D3748;
    line-height: 26px;
    font-style: italic;
    margin-bottom: 20px;
}
.reviews__author {
    font-size: 15px;
    font-weight: 600;
    color: #2D3748;
}
.reviews__disclaimer {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: #a0aec0;
}

/* ============================================
SCREEN 9: COMPARISON TABLE
============================================ */
.comparison { background: #F7FAFC; }
.comparison__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* FIX: плавный скролл на iOS */
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}
.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    min-width: 600px;
}
.comparison__table th,
.comparison__table td {
    padding: 18px 24px;
    text-align: center;
    font-size: 15px;
}
.comparison__table thead th {
    background: #1B6B7A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison__table thead th:first-child {
    text-align: left;
    border-radius: 16px 0 0 0;
}
.comparison__table thead th:last-child {
    border-radius: 0 16px 0 0;
}
.comparison__table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #2D3748;
}
.comparison__table tbody td {
    color: #718096;
    border-bottom: 1px solid #edf2f7;
}
.comparison__table tbody tr:nth-child(even) { background: #f7fafc; }
.comparison__table tbody tr:last-child td:first-child { border-radius: 0 0 0 16px; }
.comparison__table tbody tr:last-child td:last-child { border-radius: 0 0 16px 0; }
.comparison__check {
    color: #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comparison__cross {
    color: #dc3545;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comparison__partial {
    color: #FFC107;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.comparison__highlight {
    background: rgba(55, 220, 242, 0.06) !important;
}

/* НОВОЕ: тёмный цвет заголовка в подсвеченной колонке Алины */
.comparison__table thead th.comparison__highlight {
    color: #162235;
    background: rgba(55, 220, 242, 0.15) !important;
}

.comparison__table tbody tr:last-child { background: rgba(55, 220, 242, 0.04); }
.comparison__table tbody tr:last-child td {
    border-bottom: none;
    font-weight: 600;
    color: #2D3748;
}
.comparison__conclusion {
    text-align: center;
    margin-top: 32px;
    font-size: 18px;
    color: #2D3748;
    font-weight: 600;
}
.comparison__conclusion span { color: #37DCF2; }

/* ============================================
SCREEN 10: FAQ
============================================ */
.faq { background: #FFFFFF; }
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq__item.open {
    border-color: #37DCF2;
    box-shadow: 0 4px 20px rgba(55, 220, 242, 0.08);
}
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    background: none;
    width: 100%;
    text-align: left;
    gap: 16px;
    transition: color 0.25s ease;
}
.faq__question:hover { color: #37DCF2; }
.faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #a0aec0;
    transition: transform 0.35s ease, color 0.25s ease;
}
.faq__item.open .faq__chevron {
    transform: rotate(180deg);
    color: #37DCF2;
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #718096;
    line-height: 26px;
}
.faq__item.open .faq__answer { max-height: 500px; }

/* ============================================
SCREEN 11: LEAD MAGNET
============================================ */
.lead {
    background: #0A1628;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(55, 220, 242, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.lead__inner {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}
/* UPDATED: увеличено с 64 до 80 */
.lead__icon {
    width: 80px;
    height: 80px;
    background: rgba(55, 220, 242, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #37DCF2;
    overflow: hidden;
}
.lead__icon svg { width: 32px; height: 32px; }
/* NEW: Lead magnet icon real image */
.lead__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}
.lead h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.lead__desc {
    font-size: 18px;
    color: #B0B8C0;
    margin-bottom: 32px;
    line-height: 28px;
}
.lead__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}
.lead__input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.lead__input::placeholder { color: #718096; }
.lead__input:focus {
    border-color: #37DCF2;
    background: rgba(255, 255, 255, 0.12);
}
.lead__btn {
    padding: 16px 32px;
    background: #37DCF2;
    color: #162235;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.2s ease;
}
.lead__btn:hover {
    background: #2cc5d9;
    transform: translateY(-2px);
}
.lead__consent {
    font-size: 13px;
    color: #718096;
}

/* ============================================
SCREEN 12: FINAL CTA
============================================ */
.final-cta {
    background: linear-gradient(135deg, #162235, #1B6B7A);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(55, 220, 242, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.final-cta__inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}
.final-cta h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.final-cta__subtitle {
    font-size: 18px;
    color: #B0B8C0;
    margin-bottom: 40px;
    line-height: 28px;
}
.final-cta .btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 48px;
    background: #FFFFFF;
    color: #162235;
    font-weight: 700;
    font-size: 18px;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    animation: ctaPulse 3s ease-in-out infinite;
}
.final-cta .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    animation: none;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 4px 30px rgba(255, 255, 255, 0.25); }
}
.final-cta__note {
    margin-top: 20px;
    font-size: 15px;
    color: #B0B8C0;
}

/* ============================================
SCREEN 13: FOOTER
============================================ */
.footer {
    background: #0A1628;
    padding: 60px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand { max-width: 320px; }
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.footer__logo-img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}
.footer__brand p {
    font-size: 15px;
    color: #718096;
    line-height: 24px;
    margin-bottom: 20px;
}
.footer__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #B0B8C0;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease;
}
.footer__social:hover {
    background: rgba(55, 220, 242, 0.1);
    color: #37DCF2;
}
.footer__social svg { width: 18px; height: 18px; }
.footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__links a {
    font-size: 15px;
    color: #718096;
    transition: color 0.25s ease;
}
.footer__links a:hover { color: #37DCF2; }
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #718096;
    margin-bottom: 14px;
    line-height: 22px;
}
.footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    color: #37DCF2;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 14px;
    color: #718096;
}
.footer__bottom a {
    color: #718096;
    transition: color 0.25s ease;
}
.footer__bottom a:hover { color: #37DCF2; }
/* NEW: Footer Disclaimer */
.footer__disclaimer {
    text-align: center;
    padding: 24px 24px 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}
.footer__disclaimer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: color 0.25s ease;
}
.footer__disclaimer a:hover {
    color: #37DCF2;
    text-decoration-color: #37DCF2;
}

/* ============================================
FOOTER: REQUISITES & LEGAL LINKS
============================================ */
.footer__requisites {
font-size: 14px;
color: #718096;
line-height: 22px;
}
.footer__requisites p {
margin-bottom: 6px;
}
.footer__requisites-value {
color: #B0B8C0;
font-family: 'Courier New', monospace;
font-size: 13px;
}
.footer__legal-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.footer__legal-links a {
color: #718096;
transition: color 0.25s ease;
}
.footer__legal-links a:hover {
color: #37DCF2;
}

/* ============================================
MODAL: LEGAL DOCUMENTS (Offer, Refund)
============================================ */
.modal--legal {
max-width: 800px;
}
.legal-content {
font-size: 15px;
line-height: 24px;
color: #2D3748;
}
.legal-content__date {
font-size: 13px;
color: #a0aec0;
font-style: italic;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 1px solid #e2e8f0;
}
.legal-content h4 {
font-size: 18px;
font-weight: 700;
color: #162235;
margin-top: 28px;
margin-bottom: 12px;
}
.legal-content h4:first-of-type {
margin-top: 0;
}
.legal-content p {
margin-bottom: 12px;
}
.legal-content ul {
padding-left: 20px;
margin-bottom: 12px;
}
.legal-content li {
position: relative;
padding-left: 16px;
margin-bottom: 8px;
}
.legal-content li::before {
content: '•';
position: absolute;
left: 0;
color: #37DCF2;
font-weight: 700;
}
.legal-content strong {
color: #162235;
font-weight: 600;
}
.legal-content__note {
margin-top: 32px;
padding: 16px 20px;
background: rgba(55, 220, 242, 0.06);
border-left: 3px solid #37DCF2;
border-radius: 8px;
font-style: italic;
color: #718096;
}

/* Mobile adaptation for legal modals */
@media (max-width: 768px) {
.modal--legal {
max-width: 100%;
margin: 16px;
}
.legal-content h4 {
font-size: 16px;
}
.legal-content {
font-size: 14px;
}
.footer__legal-links {
flex-direction: column;
gap: 12px;
}
}

/* ============================================
MODAL: APPLICATION FORM & PRIVACY
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.open {
    display: flex;
    opacity: 1;
}
.modal {
    background: #FFFFFF;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
/* NEW: Wider modal for Privacy Policy */
.modal--privacy {
    max-width: 700px;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 0;
}
.modal__title {
    font-size: 22px;
    font-weight: 700;
    color: #2D3748;
}
.modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f7fafc;
    color: #718096;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    border: none;
}
.modal__close:hover {
    background: #edf2f7;
    color: #2D3748;
}
.modal__close svg { width: 18px; height: 18px; }
.modal__body { padding: 24px 28px 28px; }
/* NEW: Privacy Content Styling */
.privacy-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-top: 24px;
    margin-bottom: 12px;
}
.privacy-content h4:first-child { margin-top: 0; }
.privacy-content p {
    font-size: 15px;
    line-height: 24px;
    color: #718096;
    margin-bottom: 12px;
}
.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 12px;
}
.privacy-content li {
    position: relative;
    padding-left: 16px;
    font-size: 15px;
    color: #718096;
    line-height: 24px;
    margin-bottom: 8px;
}
.privacy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #37DCF2;
    font-weight: 700;
}
.privacy-date {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: #a0aec0;
    font-style: italic;
}

/* Form Styles */
.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}
.form__label span { color: #dc3545; }
.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: #F7FAFC;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #2D3748;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.form__input::placeholder,
.form__textarea::placeholder { color: #a0aec0; }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: #37DCF2;
    background: #FFFFFF;
}
.form__input.error,
.form__select.error,
.form__textarea.error { border-color: #dc3545; }
.form__error {
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
    display: none;
}
.form__error.visible { display: block; }
.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23718096'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form__textarea {
    resize: vertical;
    min-height: 80px;
}
.form__radio-group {
    display: flex;
    gap: 12px;
}
.form__radio-card {
    flex: 1;
    padding: 16px;
    background: #F7FAFC;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.25s ease, background 0.25s ease;
    position: relative;
}
.form__radio-card:hover { border-color: #37DCF2; }
.form__radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form__radio-card.active {
    border-color: #37DCF2;
    background: rgba(55, 220, 242, 0.05);
}
.form__radio-title {
    font-size: 15px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 4px;
}
.form__radio-price {
    font-size: 18px;
    font-weight: 700;
    color: #37DCF2;
}
.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #718096;
    line-height: 20px;
}
.form__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form__checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.form__checkbox input:checked + .form__checkbox-box {
    background: #37DCF2;
    border-color: #37DCF2;
}
.form__checkbox input:checked + .form__checkbox-box svg { opacity: 1; }
.form__checkbox-box svg {
    width: 12px;
    height: 12px;
    color: #162235;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.form__checkbox a {
    color: #37DCF2;
    text-decoration: underline;
}
.form__submit {
    width: 100%;
    padding: 16px;
    background: #37DCF2;
    color: #162235;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: background 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.form__submit:hover { background: #2cc5d9; }
.form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.form__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #162235;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form__submit.loading .form__spinner { display: block; }
.form__submit.loading .form__submit-text { display: none; }
.form__submit.loading .form__submit-loading-text { display: inline; }
.form__submit-loading-text { display: none; }
.form__success,
.form__error-state {
    text-align: center;
    padding: 40px 20px;
    display: none;
}
.form__success.active,
.form__error-state.active { display: block; }
.form__success-icon,
.form__error-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form__success-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}
.form__error-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
.form__success-icon svg,
.form__error-icon svg { width: 32px; height: 32px; }
.form__success h3,
.form__error-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}
.form__success p,
.form__error-state p {
    font-size: 15px;
    color: #718096;
    margin-bottom: 24px;
}
.form__success .btn-primary { margin: 0 auto; }

/* ============================================
MODAL: LEAD MAGNET
============================================ */
.modal--lead {
    max-width: 560px;
}
.lead-modal__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lead-modal__intro {
    font-size: 15px;
    color: #718096;
    line-height: 24px;
    margin-bottom: 8px;
    padding: 12px 16px;
    background: rgba(55, 220, 242, 0.06);
    border-radius: 10px;
    border-left: 3px solid #37DCF2;
}
.lead-modal__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #F7FAFC;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.lead-modal__link:hover {
    border-color: #37DCF2;
    background: rgba(55, 220, 242, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 220, 242, 0.12);
}
.lead-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lead-modal__icon svg {
    width: 24px;
    height: 24px;
}
.lead-modal__icon--pdf {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
.lead-modal__icon--video {
    background: rgba(55, 220, 242, 0.12);
    color: #37DCF2;
}
.lead-modal__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lead-modal__text strong {
    font-size: 15px;
    font-weight: 700;
    color: #2D3748;
}
.lead-modal__text span {
    font-size: 13px;
    color: #718096;
}
.lead-modal__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #37DCF2;
    transition: transform 0.25s ease, background 0.25s ease;
}
.lead-modal__link:hover .lead-modal__arrow {
    transform: translateX(3px);
    background: #37DCF2;
    color: #162235;
}
.lead-modal__arrow svg {
    width: 18px;
    height: 18px;
}

/* Rutube iframe — адаптивный контейнер 16:9 */
.lead-modal__video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.lead-modal__video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.lead-modal__note {
    font-size: 14px;
    color: #718096;
    line-height: 22px;
    padding: 12px 16px;
    background: #FFF9E6;
    border-radius: 10px;
    border-left: 3px solid #D4AF37;
    margin: 8px 0;
}
.lead-modal__cta {
    margin-top: 8px;
    width: 100%;
}

/* Мобильная адаптация модалки лид-магнита */
@media (max-width: 768px) {
    .modal--lead {
        max-width: 100%;
        margin: 16px;
    }
    .lead-modal__link {
        padding: 14px 16px;
    }
}

/* ============================================
FLOATING ILLUSTRATIONS
============================================ */
.illustration-float {
    position: absolute;
    z-index: 0 !important; /* FIX: не перекрывает кнопки */
    pointer-events: none !important; /* FIX: пропускает клики сквозь себя */
    opacity: 0.15;
}
.illustration-float img {
    width: 100%;
    height: auto;
    max-width: 400px;
}
.illustration-float--crossroads {
    bottom: -50px;
    right: -100px;
    width: 300px;
}
.illustration-float--rehearsal {
    top: 50px;
    left: -80px;
    width: 250px;
}
/* FIX: Удалён блок .illustration-float--breakup, так как его нет в HTML */

/* ============================================
STICKY CTA (мобильная версия)
============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 34, 53, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    z-index: 900;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.sticky-cta__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sticky-cta__price {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
}
.sticky-cta__label {
    font-size: 12px;
    color: #B0B8C0;
}
.sticky-cta__btn {
    padding: 12px 24px;
    background: #37DCF2;
    color: #162235;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: background 0.25s ease;
    white-space: nowrap;
}
.sticky-cta__btn:hover { background: #2cc5d9; }

/* ============================================
RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero__content { max-width: 100%; }
    .hero__buttons { justify-content: center; }
    .hero__image-placeholder,
    .hero__image-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    .coach__inner {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    .coach__photo {
        width: 280px;
        height: 280px;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section__header { margin-bottom: 40px; }
    .section__title {
        font-size: 28px;
        line-height: 36px;
    }
    .section__subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* ============================================
    BURGER MENU — принудительное отображение
    ============================================ */
    .header__nav,
    .header__cta { display: none !important; }
    .burger {
        display: flex !important;
        position: relative;
        z-index: 1100;
    }
    .mobile-menu {
        display: block; /* Позволяет работать анимации right: -100% */
    }
    /* FIX: УБРАНО display: block !important для .mobile-menu__backdrop! 
       Теперь он управляется через класс .open и pointer-events, что решает проблему "невидимого щита" */

    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero__title {
        font-size: 32px;
        line-height: 40px;
    }
    .hero__subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .scroll-arrow { display: none; }
    
    /* Problem */
    .problem__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* How */
    .how__steps-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .how__line { display: none; }
    .how__step {
        max-width: 100%;
        padding: 0 0 32px;
        border-bottom: 2px dashed rgba(55, 220, 242, 0.15);
    }
    .how__step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    /* Future pacing */
    .future-pacing__title { font-size: 32px; }
    .future-pacing__text p {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Directions */
    .directions__grid { grid-template-columns: 1fr; }
    .directions__card-image { height: 200px; }
    
    /* Audience */
    .audience__grid { grid-template-columns: 1fr; }
    .audience__card ul { padding-left: 0; }
    .audience__card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .audience__icon {
        width: 64px;
        height: 64px;
    }
    
    /* Coach */
    .coach__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .coach__photo {
        width: 240px;
        height: 240px;
    }
    .coach__credentials { align-items: center; }
    .coach__quote { text-align: left; }
    .audio-preview__grid { grid-template-columns: 1fr; }
    
    /* Quiz */
    .quiz__form { padding: 28px 20px; }
    .quiz__title { font-size: 26px; }
    .quiz__question-text { font-size: 18px; }
    
    /* Pricing */
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing__why-three-step {
        flex-direction: column;
        gap: 12px;
    }
    /* FIX: Убедимся, что toggle работает на мобильной версии */
    .pricing__why-three-toggle {
        padding: 16px 20px;
        font-size: 15px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .pricing__why-three-content {
        padding: 0 20px;
    }
    .pricing__why-three.open .pricing__why-three-content {
        padding: 0 20px 24px;
    }
    
    /* Cost of inaction */
    .cost-of-inaction__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Reviews */
    .reviews__grid { grid-template-columns: 1fr; }
    
    /* Comparison */
    .comparison__table { font-size: 14px; }
    .comparison__table th,
    .comparison__table td { padding: 14px 12px; }
    
    /* Индикатор скролла для таблицы на мобильных */
    .comparison__table-wrap::after {
        content: '← Прокрутите →';
        position: absolute;
        bottom: 8px;
        right: 12px;
        font-size: 11px;
        color: #718096;
        opacity: 0.7;
        pointer-events: none;
        background: rgba(255,255,255,0.8);
        padding: 2px 8px;
        border-radius: 4px;
    }
    
    /* Lead & Final CTA — убираем min-height на мобильных */
    .lead,
    .final-cta {
        min-height: auto;
        display: block;
        padding: 80px 0;
    }
    .lead h2,
    .final-cta h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .lead__form { flex-direction: column; }
    .final-cta .btn-white {
        font-size: 16px;
        padding: 16px 32px;
        width: 100%;
    }
    
    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__brand { grid-column: span 1; }
    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    /* FIX: Отступ снизу, чтобы sticky CTA не перекрывал дисклеймер */
    .footer {
        padding-bottom: 80px;
    }
    
    /* Modal */
    .modal {
        max-height: 95vh;
        border-radius: 16px;
    }
    .modal__header { padding: 20px 20px 0; }
    .modal__body { padding: 16px 20px 20px; }
    .form__radio-group { flex-direction: column; }
    
    /* Sticky CTA показываем только на мобилках */
    .sticky-cta { display: block; }
    
    /* Floating illustrations */
    .illustration-float--crossroads {
        bottom: -30px;
        right: -50px;
        width: 200px;
    }
    .illustration-float--rehearsal {
        top: 30px;
        left: -40px;
        width: 180px;
    }
    /* FIX: Удалён .illustration-float--breakup из мобильной версии */

    /* ============================================
    MOBILE BACKGROUNDS (повернутые версии)
    ============================================ */
    .hero.bg-mobile-rotate {
        background-image: url('assets/images/backgrounds/bg-hero-mobile.webp') !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .directions.bg-mobile-rotate {
        background-image: url('assets/images/backgrounds/bg-directions-mobile.webp') !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .final-cta.bg-mobile-rotate {
        background-image: url('assets/images/backgrounds/bg-final-cta-mobile.webp') !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .lead.bg-mobile-rotate {
        background-image: url('assets/images/backgrounds/bg-lead-mobile.webp') !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    /* FIX: Улучшение кликабельности на touch-устройствах */
    button,
    .btn-primary,
    .btn-outline,
    .btn-white,
    .directions__card-cta,
    .audio-btn,
    .quiz__nav-btn,
    .form__radio-card,
    .form__checkbox,
    .faq__question {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
}

/* ============================================
SCROLLBAR CUSTOM
============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0A1628; }
::-webkit-scrollbar-thumb {
    background: #37DCF2;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #2cc5d9; }
::selection {
    background: rgba(55, 220, 242, 0.3);
    color: #FFFFFF;
}