/* ============================================================
   effects.css — итерация 6
   Правки:
   • вся вёрстка ~ -30% (отступы/высоты/шрифты), без 100vh и +cm
   • первый экран НЕ сдвигается вбок при наведении (мышь убрана)
   • фото = ДУГА-ВЕЕР как на референсе: наклонённые кадры,
     центральный крупный и прямой с подписью
   • заголовок hero: 1-я строка из-под маски, 2-я мягко вверх
   • бегущий блик по коралловым маркерам
   • безопасные line-height — буквы не наезжают
   Подключается ПОСЛЕ styles.css. Откат = убрать link/script + ?v.
   ============================================================ */

/* ============================================================
   0. ФОН HERO
   ============================================================ */
.hero-bg { top: 0; height: 100%; }   /* фото закреплено (fixed) — без transform/will-change, иначе fixed-фон ломается */
/* НИЖНИЙ слой hero: синий слева + размытое фото — заполняет фон без пустот */
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right, rgba(11,47,107,0.96) 0%, rgba(11,47,107,0.9) 26%, rgba(11,47,107,0) 64%),
    url('images/hero-flight.jpg') center center / cover no-repeat fixed;
  filter: blur(34px) saturate(1.05); }
.place-photo { inset: -9% 0; }                                  /* запас под параллакс фона 2-го экрана */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg img { animation: heroBreathe 34s ease-in-out infinite alternate; transform-origin: 60% 42%; }
}
@keyframes heroBreathe { from { transform: scale(1.0); } to { transform: scale(1.045); } }

/* ============================================================
   1. НЕБО: облака + лёгкие птицы (двигаются сами, не за мышью)
   ============================================================ */
.hero-sky { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.sky-cloud { position: absolute; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.22), rgba(255,255,255,0.06) 62%, transparent 74%);
  filter: blur(9px); opacity: 0; will-change: transform, opacity; }
@media (prefers-reduced-motion: no-preference) { .sky-cloud { animation: cloudDrift linear infinite; } }
@keyframes cloudDrift { 0% { transform: translateX(-12vw); opacity: 0; } 14% { opacity: var(--o,.36); } 86% { opacity: var(--o,.36); } 100% { transform: translateX(112vw); opacity: 0; } }
.sky-bird { position: absolute; color: rgba(244,239,230,0.62); }
.sky-bird svg { display: block; width: 100%; height: 100%; }
.sky-bird .wing { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .sky-bird { animation: birdGlide linear infinite; }
  .sky-bird .wing-l { animation: flapL 1.2s ease-in-out infinite; }
  .sky-bird .wing-r { animation: flapR 1.2s ease-in-out infinite; }
}
@keyframes birdGlide { 0% { transform: translate(-10vw,8px) scale(var(--s,1)); opacity: 0; } 12% { opacity: var(--o,.6); } 50% { transform: translate(50vw,-14px) scale(var(--s,1)); } 88% { opacity: var(--o,.6); } 100% { transform: translate(112vw,6px) scale(var(--s,1)); opacity: 0; } }
@keyframes flapL { 0%,100% { transform: rotate(0); } 50% { transform: rotate(-24deg); } }
@keyframes flapR { 0%,100% { transform: rotate(0); } 50% { transform: rotate(24deg); } }

/* ============================================================
   2. ЗАГОЛОВОК HERO
   ============================================================ */
/* буквы влетают с разных сторон и собираются (динамично) */
.hero-title .fly-l, .hero-title .fly-block { display: inline-block; will-change: transform, opacity; }
.hero-title .fly-l { white-space: pre; }
@media (prefers-reduced-motion: no-preference) {
  .hero-title .fly-l { animation: flyIn .64s cubic-bezier(.16,.86,.3,1.12) both; animation-delay: var(--d, 0s); }
  .hero-title .fly-block { animation: flyBlock .82s cubic-bezier(.16,.86,.3,1.12) both; animation-delay: var(--d, 0s); }
}
@keyframes flyIn {
  from { opacity: 0; transform: translate(var(--dx,0px), var(--dy,40px)) rotate(var(--rot,0deg)) scale(.55); filter: blur(5px); }
  60%  { opacity: 1; filter: blur(0); }
  to   { opacity: 1; transform: translate(0,0) rotate(0) scale(1); filter: blur(0); }
}
@keyframes flyBlock {
  from { opacity: 0; transform: translateY(66px) scale(.7) rotate(-7deg); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0); filter: blur(0); }
}
/* тёплый свет плывёт по hero */
.hero-glow { position: absolute; z-index: 2; pointer-events: none;
  width: 58vw; height: 58vw; max-width: 700px; max-height: 700px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,216,77,0.18), rgba(255,216,77,0.05) 55%, transparent 72%);
  filter: blur(22px); }
@media (prefers-reduced-motion: no-preference) { .hero-glow { animation: glowDrift 20s ease-in-out infinite alternate; } }
@keyframes glowDrift { from { transform: translate(-12%, -6%); } to { transform: translate(16%, 10%); } }

/* расчистка первого экрана: крупный заголовок + короткая строка + кнопка */
.hero-eyebrow { display: none; }
.hero-feats { display: none; }
.hero-sub { display: inline-block; max-width: 42ch; margin: 16px auto 0; text-align: center;
  color: #fff; font-weight: 800; line-height: 1.35;
  padding: 9px 22px; border-radius: 999px;
  background: rgba(8,20,42,0.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  font-size: clamp(20px, 2vw, 28px); }
.hero-left { gap: 20px; }
/* контент hero — по центру (по просьбе) */
.hero-inner { justify-content: center; }
.hero-left { align-items: center; text-align: center; }
.hero-title .row { display: inline; }
/* кнопка «Хочу летать» убрана (по просьбе) */
.hero-ctas { display: none; }
/* заголовок крупнее (по просьбе) */
.hero-title { font-size: clamp(44px, 7vw, 100px); }
/* «ГАГРОЙ»: рыжая плашка остаётся, но без анимации (пульс/блик выключены) (по просьбе) */
.hero-title .marker { animation: none; }
.hero-title .marker::after, .hero-title .marker::before { display: none; content: none; animation: none; }
/* логотип-заглушка слева в шапке убрана — бренд теперь в заставке (по просьбе) */
.logo { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-left .hero-feats, .hero-left .hero-ctas { animation: cloudUp 0.95s cubic-bezier(0.2,0.7,0.2,1) both; }
  /* надзаголовок и нижняя фраза появляются ПОСЛЕ заголовка (триггер .sub-in из JS, после ухода заставки) */
  .hero-left .hero-eyebrow, .hero-left .hero-sub { opacity: 0; filter: blur(10px); transform: translateY(10px);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .95s cubic-bezier(.2,.7,.2,1), filter .9s ease; }
  .hero-left .hero-eyebrow.sub-in, .hero-left .hero-sub.sub-in { opacity: 1; filter: blur(0); transform: none; }
  .hero-left .hero-feats { animation-delay: 0.74s; }
  .hero-left .hero-ctas { animation-delay: 0.9s; }
}
@keyframes cloudUp { from { opacity: 0; transform: translateY(24px); filter: blur(9px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

/* ============================================================
   3. БЕЗОПАСНЫЕ LINE-HEIGHT (буквы не наезжают) + блик по маркерам
   ============================================================ */
.hero-title { line-height: 1.04; }
.h-section, .place-title, .why-title, .pricing-title, .video-title, .ring-head h2 { line-height: 1.07; }
.marker, .marker-coral, .marker-yellow { line-height: 1.0; margin-top: 0; }
.marker, .marker-coral { position: relative; overflow: hidden; }
.marker::after, .marker-coral::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.36) 50%, transparent 62%); transform: translateX(-130%); }
@media (prefers-reduced-motion: no-preference) { .marker::after, .marker-coral::after { animation: mkShine 7s ease-in-out infinite; } }
@keyframes mkShine { 0%,55% { transform: translateX(-130%); } 78%,100% { transform: translateX(130%); } }
/* рыжий цвет «дышит» — выделяется */
@media (prefers-reduced-motion: no-preference) { .marker, .marker-coral { animation: mkPulse 3.4s ease-in-out infinite; } }
@keyframes mkPulse {
  0%,100% { background-color: var(--coral); box-shadow: 0 0 0 0 rgba(239,90,42,0); }
  50%     { background-color: #ff7d3e;     box-shadow: 0 6px 24px -6px rgba(255,125,62,0.65); }
}

/* ============================================================
   МАРКЕР-ВЫДЕЛИТЕЛЬ: рыжий «закрашивает» текст слева направо при появлении.
   Применяется ко ВСЕМ выделениям (.marker, .marker-coral) на всех экранах.
   Триггер — класс .mk-draw (вешает наблюдатель в effects.js).
   ============================================================ */
.marker, .marker-coral { background: transparent; position: relative; z-index: 0; animation: none; overflow: visible; }
.marker::after, .marker-coral::after { content: none; display: none; animation: none; }
.marker::before, .marker-coral::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--coral); border-radius: 0.14em; box-shadow: 0 14px 30px -12px rgba(239,90,42,0.6);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .75s cubic-bezier(.6,0,.2,1); }
.marker.mk-draw::before, .marker-coral.mk-draw::before { transform: scaleX(1); }
/* светлая секция «Тарифы»: маркер — сплошной коралл с кремовым текстом (читается чётко).
   Закраску тут не делаем: на белом фоне слово пропадало бы до срабатывания анимации. */
.pricing--light .marker { color: var(--cream); background: var(--coral); }
.pricing--light .marker::before { display: none; }
@media (prefers-reduced-motion: reduce) {
  .marker::before, .marker-coral::before { transform: none; transition: none; }
}

/* ============================================================
   4. СЧЁТЧИКИ
   ============================================================ */
.stats-band { background: transparent; border-top: 0; border-bottom: 0; padding: clamp(18px, 2.8vw, 34px) 0; }
/* цифры лежат поверх фото внизу hero — без отдельного синего блока */
.stats-band.stats-on-hero { position: absolute; left: 0; right: 0; bottom: clamp(20px, 4vh, 56px); z-index: 6;
  background: transparent; }
.stats-on-hero .stat-num { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.stats-on-hero .stat-unit { color: rgba(255,255,255,0.85); }
.stats-on-hero .stat-lbl { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.stats-on-hero .stat + .stat { border-left-color: rgba(255,255,255,0.22); }
.stats-inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); display: flex; justify-content: space-between; align-items: stretch; gap: clamp(14px, 3.4vw, 48px); }
.stat { flex: 1 1 0; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(244,239,230,0.12); }
.stat-num { font-family: "Anton","Bebas Neue",Impact,sans-serif; font-weight: 400; font-size: clamp(32px, 4.4vw, 60px); line-height: 1; color: var(--coral); display: inline-flex; align-items: baseline; gap: 0.08em; font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }
.stat-num .count { display: inline-block; transform-origin: 50% 80%; transform: scale(var(--cs,1)); will-change: transform; }
.stat-unit { font-size: 0.42em; color: var(--cream); font-family: "Bebas Neue",sans-serif; letter-spacing: 0.06em; }
.stat-lbl { margin-top: 6px; font-size: clamp(11px, 1.1vw, 14px); letter-spacing: 0.04em; color: var(--ink-2); text-transform: uppercase; }
@media (max-width: 640px) { .stats-inner { flex-direction: column; gap: 14px; } .stat + .stat { border-left: 0; border-top: 1px solid rgba(244,239,230,0.12); padding-top: 14px; } }

/* ============================================================
   5. ПОЯВЛЕНИЕ ПРИ СКРОЛЛЕ — стиль AOS «fade-up» (как на etnafly.com)
   Единый плавный подъём + проявление для всех блоков.
   opacity 0->1, translateY(40px)->0, ~0.85s ease-in-out, срабатывает один раз.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  [data-aos] {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity .85s cubic-bezier(.42,0,.58,1),
                transform .85s cubic-bezier(.42,0,.58,1);
    transition-delay: var(--aos-delay, 0s);
    will-change: opacity, transform;
  }
  [data-aos="zoom-in"]    { transform: scale(.92); }
  [data-aos="fade-left"]  { transform: translate3d(-40px, 0, 0); }
  [data-aos="fade-right"] { transform: translate3d(40px, 0, 0); }
  [data-aos].aos-in {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* Старые механики оставлены нейтральными (на случай ссылок в разметке) */
  .fly, .reveal { opacity: 1; transform: none; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fly, .reveal, [data-aos] { opacity: 1 !important; transform: none !important; filter: none !important; }
}
@media (hover: hover) {
  .place-card-img { transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease; }
  .place-card-img:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 26px 44px -22px rgba(4,16,42,0.6); }
}

/* ============================================================
   6. ФОТО ПО КРУГУ — кольцо кадров вращается вокруг главного фото
   ============================================================ */
.ring-section { background: var(--bg); padding: var(--section-pad) 0; overflow: hidden; }
.ring-head { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.ring-head .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: "Bebas Neue",sans-serif; letter-spacing: 0.12em; font-size: 18px; color: var(--white); background: var(--coral); padding: 6px 15px; border-radius: 999px; }
.ring-head .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.ring-head h2 { margin: 11px 0 0; font-family: "Anton","Bebas Neue",sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(26px,4vw,46px); color: var(--white); }
.ring-head h2 .marker { background: var(--coral); color: var(--white); }

.ring-stage { position: relative; width: min(600px, 92vw); aspect-ratio: 1 / 1; margin: clamp(12px,2.4vw,30px) auto 0; }
.ring-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42%; aspect-ratio: 1 / 1;
  border-radius: 20px; overflow: hidden; z-index: 3;
  box-shadow: 0 34px 64px -26px rgba(4,16,42,0.8), inset 0 0 0 3px rgba(239,90,42,0.95); }
.ring-center img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ring-orbit { position: absolute; inset: 0; }
@media (prefers-reduced-motion: no-preference) {
  .ring-orbit { animation: ringSpin 54s linear infinite; }
  .ring-stage:hover .ring-orbit, .ring-stage:hover .ring-photo { animation-play-state: paused; }
}
@keyframes ringSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ring-item { position: absolute; width: 22%; aspect-ratio: 1 / 1; transform: translate(-50%,-50%); }
.ring-photo { width: 100%; height: 100%; border-radius: 14px; overflow: hidden; background: var(--blue-deep);
  box-shadow: 0 18px 36px -18px rgba(4,16,42,0.72), inset 0 0 0 1.5px rgba(255,255,255,0.16); }
@media (prefers-reduced-motion: no-preference) { .ring-photo { animation: ringSpin 54s linear infinite reverse; } }
.ring-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 560px) { .ring-center { width: 46%; } .ring-item { width: 26%; } }

/* ============================================================
   7. ГЛОБАЛЬНОЕ УМЕНЬШЕНИЕ ВЁРСТКИ (~ -30%) + АДАПТИВ
   ============================================================ */
:root { --section-pad: clamp(26px, 3.4vw, 50px); --gutter: clamp(16px, 3.6vw, 52px); --container: 1180px; }

/* единый «регулятор размера» всего сайта (вёрстка + картинки + текст) */
body { zoom: 0.85; }

/* высоты: гасим все 100vh / +cm, единая компактная вертикаль */
.hero { min-height: clamp(760px, 118vh, 1500px); padding-top: clamp(90px, 9vw, 122px); padding-bottom: clamp(30px, 4vw, 56px); }
.place, .video-section, .why, .how, .tips, .pricing, .contacts, .trust { min-height: auto; padding: var(--section-pad) 0; }
.emo { min-height: clamp(280px, 40vh, 420px); padding: clamp(36px,6vh,64px) 0; }
/* белые разделители между экранами (по просьбе) */
.screen-gap { height: clamp(16px, 2.2vw, 30px); background: #FFFFFF; position: relative; }
.screen-gap::before { content: none; }

/* ширины: убираем выносы 8cm/16cm */
.place-grid { width: 100%; max-width: var(--container); margin-inline: auto; transform: none; gap: clamp(12px, 1.8vw, 22px); }
.video-wrap { width: 100%; max-width: calc(var(--container) * 0.72); margin-inline: auto; }
.video-section { padding: calc(var(--section-pad) * 0.85) 0; }   /* экран компактнее на ~15% */
.video-cta { margin-top: clamp(28px, 4vh, 48px); }
/* (разделитель видео сверху больше не нужен — даёт нижняя линия слайдера/белый screen-gap) */

/* без рыжей анимации на «полёт» в видео-секции */
.video-section .marker { animation: none; }
.video-section .marker::after { display: none; animation: none; content: none; }

/* кругляшка в контактах: кружок компактнее и уведён вправо/вверх (не наезжает на «ЗАПИСЫВАЕМ»),
   логотип растянут почти на всю ширину кружка */
.contacts-stamp--logo { width: 122px; height: auto; padding: 0; background: none; box-shadow: none; border-radius: 0; transform: none; top: -34px; right: -54px; }
.contacts-stamp--logo img { width: 100%; height: auto; display: block; }
/* логотип в контактах (левая колонка, над заголовком) и в подвале (по центру) */
.contacts-logo { margin: 0 0 22px; }
.contacts-logo img { width: clamp(150px, 16vw, 190px); height: auto; display: block; }
.footer-logo { display: flex; justify-content: center; margin: 0 auto 20px; }
.footer-logo img { width: clamp(150px, 15vw, 180px); height: auto; display: block; opacity: 0.9; }
.why > .container { max-width: var(--container); }
.steps { width: 100%; max-width: var(--container); margin-left: auto; margin-right: auto; transform: none; column-gap: clamp(12px,1.6vw,26px); justify-content: center; }

/* крупная типографика −~30% */
.hero-title { font-size: clamp(34px, 4.4vw, 64px); }
.h-section  { font-size: clamp(24px, 3.3vw, 40px); }
.place-title, .why-title, .pricing-title { font-size: clamp(26px, 3.6vw, 46px); }
.video-title { font-size: clamp(24px, 3.2vw, 40px); }
.emo-title, .emo-slogan { font-size: clamp(38px, 5.4vw, 84px); }
.hero-sub { font-size: clamp(20px, 2vw, 28px); }

/* внутренние отступы / гэпы −~30% */
.hero-left { gap: 15px; }
.hero-ctas { margin-top: clamp(12px, 2.4vh, 26px); }
.hero-feats { margin-top: clamp(16px, 2.6vw, 26px); gap: 12px; }
.section-head { margin-bottom: clamp(16px, 2.2vw, 30px); gap: 16px; }
.place-title { margin-bottom: 14px; }
.tips-grid { gap: 12px; }
.tip-card { padding: 20px 22px 22px; }
.tip-num { font-size: 38px; margin-bottom: 8px; }
/* ===== TIPS: карточки + фото-карточка, с tilt (как на тарифах) ===== */
.tip-photo { position: relative; grid-column: span 2; border-radius: 24px; overflow: hidden; min-height: 240px; }
.tip-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* размеры текста под более длинные описания */
.tips-grid .tip-t { font-size: clamp(20px, 1.9vw, 27px); margin-bottom: 10px; }
.tips-grid .tip-d { font-size: clamp(14px, 1.02vw, 16px); line-height: 1.45; }
/* короткий transition для tilt */
.tips-grid .tip-card, .tip-photo { transition: transform .12s ease, box-shadow .25s ease;
  will-change: transform; transform-style: preserve-3d; }
@media (max-width: 900px) { .tip-photo { grid-column: span 1; } }
@media (max-width: 720px) { .tip-photo { grid-column: span 1; min-height: 240px; } }

/* ===== TIPS «Правила идеального полёта»: крупное вертикальное фото СЛЕВА + 6 карточек (3 в ряд) ===== */
.tips-grid { grid-template-columns: 1.4fr repeat(3, 1fr); align-items: stretch; }
.tips-grid .tip-card { grid-column: auto; }
.tips-grid .tip-photo { grid-column: 1; grid-row: 1 / span 2; min-height: 0; height: 100%; }
/* рыжее выделение в заголовке — статичное, без анимации */
.tips .marker { animation: none; }
.tips .marker::after { display: none; animation: none; content: none; }
.tips-grid .tip-card { padding: 18px 18px 20px; }
.tips-grid .tip-num { font-size: 30px; margin-bottom: 6px; }
.tips-grid .tip-t { font-size: clamp(17px, 1.5vw, 22px); margin-bottom: 8px; }
.tips-grid .tip-d { font-size: clamp(12.5px, 0.95vw, 15px); line-height: 1.42; }
@media (max-width: 900px) {
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid .tip-photo { grid-column: 1 / -1; grid-row: auto; min-height: 300px; height: auto; }
}
@media (max-width: 600px) {
  .tips-grid { grid-template-columns: 1fr; }
  .tips-grid .tip-photo { grid-column: auto; }
}

/* ===== TILT-эффект карточек тарифов (демо) ===== */
.pricing-grid .plan { transition: transform .12s ease, box-shadow .25s ease;
  will-change: transform; transform-style: preserve-3d; }
.pricing-grid { gap: 14px; }
.plan { padding: 20px 20px; }
.plan-name { font-size: clamp(22px, 2vw, 26px); }
.plan-price { font-size: clamp(38px, 4.2vw, 54px); }
.addons { gap: 14px; }
.addon { padding: 16px 18px; }
.contacts-grid { gap: clamp(22px, 3.6vw, 44px); }

/* широкий экран — без сдвига влево */
@media (min-width: 1500px) { .hero-left { transform: none; } }

/* планшет */
@media (max-width: 900px) { :root { --section-pad: clamp(24px, 4vw, 42px); } }

/* телефон */
@media (max-width: 720px) {
  :root { --section-pad: 30px; --gutter: 16px; }
  .container, .stats-inner, .arc-head { padding-inline: 16px; }
  .hero { min-height: auto; padding-top: 74px; padding-bottom: 28px; }
  .hero-title { font-size: clamp(32px, 10vw, 50px); }
  .stat-num { font-size: clamp(30px, 10.5vw, 46px); }
  .emo-title, .emo-slogan { font-size: clamp(34px, 12.5vw, 58px); }
  .arc-head h2 { font-size: clamp(22px, 7vw, 38px); }
}

/* ============================================================
   8. УВАЖАЕМ «МЕНЬШЕ ДВИЖЕНИЯ»
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { top: 0; height: 100%; }
  .hero-sky { display: none; }
  .hero-title .row .row-in { transform: none; opacity: 1; }
  .marker::after, .marker-coral::after { display: none; }
  .marker, .marker-coral { animation: none; }
  .ring-orbit, .ring-photo, .why-feature .wf-img.on img { animation: none; }
}

/* ============================================================
   9. ШАГИ «КАК ВСЁ ПРОИСХОДИТ» — компактно, заголовки не наезжают
   ============================================================ */
.steps { grid-template-columns: repeat(6, minmax(0, 1fr)); column-gap: clamp(8px, 1.3vw, 18px); }
/* «Как всё происходит» — шире (по просьбе) */
.how > .container { max-width: calc(var(--container) + 150px); }
.how .steps { max-width: calc(var(--container) + 150px); }
/* «Как всё происходит» — выше на ~20% (доп. вертикальные отступы) */
.how { padding-top: calc(var(--section-pad) + 8vh); padding-bottom: calc(var(--section-pad) + 8vh); }
.step { padding: 0 6px 14px; min-width: 0; }
.step-bubble { width: clamp(56px, 6.6vw, 84px); height: clamp(56px, 6.6vw, 84px); margin: 0 auto 16px; }
.step-bubble svg { width: 46%; height: 46%; }
.steps::before { top: clamp(28px, 3.3vw, 42px); }
.step-title { font-size: clamp(14px, 1.35vw, 18px); line-height: 1.08; overflow-wrap: anywhere; }
.step-meta { font-size: 11px; margin-bottom: 8px; }
.step-desc { font-size: clamp(12px, 1vw, 14px); line-height: 1.45; }
.how-total { margin-top: clamp(26px, 3.6vw, 52px); }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: clamp(22px, 4vw, 36px); }
  .steps::before { display: none; }
}
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   10. WHY — одно большое фото, плавно сменяется (без налезания текста)
   ============================================================ */
.has-wfeat .why-row { display: none; }
.why-feature { position: relative; width: min(560px, 88%); margin: clamp(20px, 3vw, 40px) auto 0;
  aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; background: var(--blue-deep);
  box-shadow: 0 34px 64px -26px rgba(4,16,42,0.7), inset 0 0 0 1.5px rgba(255,255,255,0.16); }
.why-feature .wf-img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.why-feature .wf-img.on { opacity: 1; }
.why-feature .wf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: no-preference) { .why-feature .wf-img.on img { animation: wfZoom 9s ease-in-out infinite alternate; } }
@keyframes wfZoom { from { transform: scale(1.0); } to { transform: scale(1.08); } }

/* ============================================================
   6. ФОТО-ПАРАЛЛАКС «фон закреплён, контент проезжает поверх»
   Приём с etnafly.com (секция stats-counter): background-attachment: fixed.
   Фото «приклеено» к экрану, секция проезжает поверх него как окно.
   Включено на: hero, фон «Гагра» (.place), секция «Это будет офигенно» (.emo).
   ВАЖНО: на этих слоях снят JS-параллакс (transform ломает fixed-фон).
   ============================================================ */
.place-photo::before,
.emo-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;   /* фото закреплено относительно экрана */
}
.place-photo::before {
  background-image: url("images/place-bg.png");
  background-position: 50% 0%;
}
.emo-photo::before {
  background-image: url("images/hero-hands-heart.jpg");
  background-position: 50% 42%;
}
/* прежние <img> больше не нужны — фон рисует ::before */
.place-photo > img,
.emo-photo > img { display: none; }

/* Мобайл/тач: fixed тормозит и игнорится в iOS Safari — откатываемся на обычный фон */
@media (max-width: 900px), (hover: none) {
  .place-photo::before, .emo-photo::before,
  .hero-bg::before, .hero-bg::after { background-attachment: scroll; }
}
@media (prefers-reduced-motion: reduce) {
  .place-photo::before, .emo-photo::before,
  .hero-bg::before, .hero-bg::after { background-attachment: scroll; }
}

/* ============================================================
   7. ФОТО-КАРУСЕЛЬ (coverflow) — центральная крупная + боковые меньше.
      Листает пользователь: стрелки, перетаскивание, клик по боковой, точки.
   ============================================================ */
.shots-section { padding: clamp(60px, 9vh, 120px) 0; background: var(--bg); text-align: center; overflow: hidden; position: relative; }
/* верхняя тонкая линия */
.shots-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, 88%); height: 1px; background: rgba(255,255,255,0.18); }
/* НИЖНЯЯ белая полоса — разделитель к видео-секции (сплошной фон, не border) */
.shots-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: clamp(16px, 2.2vw, 30px); background: #FFFFFF; }
/* заголовок — тот же шрифт, что у остальных секций (Bebas), белый */
.shots-section h2 { font-family: "Bebas Neue", Impact, sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink);
  font-size: clamp(24px, 3.3vw, 40px); line-height: 1.07; }
/* без рыжей анимации на «НЕБО» */
.shots-section .marker { animation: none; }
.shots-section .marker::after { display: none; animation: none; content: none; }
.shots-head { margin-bottom: clamp(28px, 5vh, 56px); }
.cf { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 clamp(44px, 7vw, 96px); }
.cf-stage { position: relative; height: clamp(410px, 54vw, 691px); perspective: 1500px; touch-action: pan-y; }
.cf-slide {
  position: absolute; top: 50%; left: 50%;
  width: clamp(216px, 32.4vw, 423px); aspect-ratio: 2 / 3;
  margin: 0; padding: 0; border: 0; background: none; cursor: pointer;
  transform: translate(-50%, -50%); transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.22,.7,.2,1), opacity .5s ease;
  -webkit-tap-highlight-color: transparent;
}
.cf-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 22px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.6);
  user-select: none; -webkit-user-drag: none;
}
.cf-slide.is-active { cursor: default; }
.cf-slide.is-active img { box-shadow: 0 36px 74px -22px rgba(0,0,0,.72); }
.cf-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.10); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.cf-nav:hover { background: var(--coral); border-color: transparent; }
.cf-nav:active { transform: translateY(-50%) scale(.94); }
.cf-prev { left: 0; } .cf-next { right: 0; }
.cf-nav svg { width: 22px; height: 22px; }
.cf-dots { display: flex; gap: 10px; justify-content: center; margin-top: clamp(22px, 4vh, 40px); }
.cf-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.3); transition: background .2s ease, transform .2s ease; }
.cf-dot.on { background: var(--coral); transform: scale(1.3); }
@media (max-width: 640px) {
  .cf { padding: 0 14px; }
  .cf-slide { width: 54vw; }
  .cf-nav { width: 44px; height: 44px; }
}

/* ============================================================
   8. Секция WHY «ПОЛЁТ, КОТОРЫЙ ХОЧЕТСЯ ПРОЖИТЬ СНОВА»
   Фото на весь экран + закреплённый фон (текст проезжает поверх),
   как в секции «Это будет офигенно». Кнопка и старые фото убраны.
   ============================================================ */
.why {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url("images/why-bg.jpg");
  background-size: cover;
  background-position: 50% 38%;
  background-repeat: no-repeat;
  background-attachment: fixed;     /* фото закреплено, контент проезжает поверх */
}
.why::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,16,38,0.55) 0%, rgba(6,16,38,0.28) 42%, rgba(6,16,38,0.62) 100%);
}
.why > .container { position: relative; z-index: 2; }
.why-stage { display: flex; flex-direction: column; align-items: center; }
.why .why-row, .why .why-feature, .why .why-cta { display: none !important; }
.why-head { max-width: 1000px; }
.why-title { text-shadow: 0 3px 28px rgba(0,0,0,0.6); }
.why-lead  { text-shadow: 0 2px 16px rgba(0,0,0,0.55); max-width: 72cqw; }   /* шире, чтобы «…посадки на пляж.» шло в одну строку */
/* без рыжей анимации на «ПРОЖИТЬ СНОВА» */
.why .marker, .why .marker-coral { animation: none; }
.why .marker::after, .why .marker-coral::after { display: none; animation: none; content: none; }

@media (max-width: 900px), (hover: none) {
  .why::before { background-attachment: scroll; }
}
@media (prefers-reduced-motion: reduce) {
  .why::before { background-attachment: scroll; }
}


/* ============================================================
   9. HERO — чёткий параплан целиком СПРАВА, слева размытие (единое правило)
   ============================================================ */
/* фото рисуют слои ::before (размытие+синий) и ::after (чёткий параплан) — сам <img> не нужен */
.hero-bg img { display: none; }
/* ВЕРХНИЙ слой hero: чёткое фото РАСТЯНУТО на всю область (cover), закреплено при скролле;
   левая часть растворяется в размытие+синий (текст наезжает на фото) */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: url('images/hero-flight.jpg') center center / cover no-repeat fixed;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.6) 34%, #000 50%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.6) 34%, #000 50%);
}

/* ============================================================
   БЛОЧНЫЙ РИТМ — светлые секции (этап 1: проба на «Тарифах»)
   Переворачивает секцию на белый фон с тёмным текстом.
   ============================================================ */
.pricing--light { background: #FFFFFF; }
.pricing--light .pricing-title { color: var(--card-ink); }
.pricing--light .pricing-desc  { color: rgba(16,24,40,0.62); }
/* описание тарифов — немного левее (по просьбе) */
.pricing-desc { transform: translateX(-32px); }
/* кремовые карточки на белом — тонкая обводка + мягкая тень, чтобы отделялись */
.pricing--light .plan,
.pricing--light .addon { border: 1px solid rgba(16,24,40,0.08);
  box-shadow: 0 18px 40px -30px rgba(4,16,42,0.4); }
.pricing--light .plan.featured { border-color: transparent; }

/* ============================================================
   HERO / ШАПКА — прозрачная шапка над фото + виньетка + новый заголовок
   ============================================================ */
/* шапка прозрачная над hero, синей становится при скролле */
.header { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 0; transition: background .3s ease, border-color .3s ease; }
.header.scrolled { background: rgba(11,47,107,0.9); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(244,239,230,0.12); }
.header .nav-link { color: rgba(255,255,255,0.92); text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
/* иконки Telegram/WhatsApp — вторичны: меньше «пузырь», тонкая обводка, без заметной заливки */
.header .icon-btn { width: 38px; height: 38px; border-radius: 10px;
  color: rgba(255,255,255,0.92); background: transparent; border-color: rgba(255,255,255,0.3); }
.header .icon-btn svg { width: 18px; height: 18px; }
.header .icon-btn:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.5); }

/* CTA «Записаться на полёт» — контекстная к состоянию навбара */
.header .btn-outline-sm {
  background: #fff; color: var(--card-ink); border-color: #fff;
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .18s;
}
.header .btn-outline-sm:hover { background: rgba(255,255,255,0.88); color: var(--card-ink); border-color: rgba(255,255,255,0.88); transform: translateY(-1px); }
/* скролл-состояние (синий навбар): solid рыжий, белый текст */
.header.scrolled .btn-outline-sm {
  background: var(--coral); color: #fff; border-color: var(--coral);
  box-shadow: 0 6px 18px -6px rgba(239,90,42,0.55);
}
.header.scrolled .btn-outline-sm:hover { background: #e04f20; border-color: #e04f20; color: #fff; }

/* затемнение с главного фото убрано полностью (по просьбе) — текст держится на text-shadow */
.hero::after { content: none; }

/* ============================================================
   «СЪЕЗЖАЮЩИЙСЯ» ЗАГОЛОВОК HERO (вдохновлён tresmarescapital.com)
   Слова стартуют разнесёнными и сходятся на месте при уходе заставки.
   ============================================================ */
.hero-title .cv-word { display: inline-block; will-change: transform, opacity, filter;
  opacity: 0; filter: blur(10px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .95s cubic-bezier(.2,.7,.2,1),
              filter .9s ease; }
.hero-title.cv-in .cv-word { opacity: 1; filter: blur(0); transform: none !important; }
@media (prefers-reduced-motion: reduce) { .hero-title .cv-word { opacity: 1; filter: none; transform: none; } }

/* заголовок: обычный регистр, «Гагрой» — рыжим текстом (без плашки) */
.hero-title { text-transform: none; }
.hero-title .hl-coral { color: var(--coral); }

/* eyebrow над заголовком — тонкая строка по центру */
.hero-left .hero-eyebrow { display: inline-flex; align-self: center; background: transparent;
  padding: 0; color: rgba(255,255,255,0.9); font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.14em; font-size: clamp(14px, 1.3vw, 18px);
  text-shadow: 0 1px 10px rgba(0,0,0,0.35); margin-bottom: 8px;
  text-decoration: none; border: 0; box-shadow: none; }
.hero-left .hero-eyebrow::before, .hero-left .hero-eyebrow::after { content: none; }
.hero-left .hero-eyebrow .dot { display: none; }
