/* ============================================================
   BAZA ХАДЖИБЕЙ — Landing styles
   ============================================================ */

:root {
  --blue: #0066FF;
  --blue-bright: #0A77FF;
  --blue-deep: #0046B8;
  --blue-darker: #003D99;
  --blue-night: #0A1A3A;
  --sky-top: #6FB6FF;
  --sky-bot: #2B8CFF;
  --yellow: #FFD600;
  --yellow-hot: #FFC107;
  --cream: #F2E8D0;
  --cream-soft: #F8F2E2;
  --ink: #0A1A3A;
  --ink-2: #1F2D52;
  --line: rgba(255,255,255,.18);
  --line-dark: rgba(10,26,58,.12);

  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.16);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.22);

  --maxw: 1200px;
  --maxw-narrow: 760px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.container--narrow { max-width: var(--maxw-narrow); }

.section {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .section { padding: 128px 0; } }

.section--blue {
  background:
    linear-gradient(180deg, rgba(6,16,40,.85) 0%, rgba(10,39,104,.82) 18%, rgba(14,58,156,.78) 45%, rgba(0,70,184,.82) 80%, rgba(0,102,255,.85) 100%),
    url('uploads/hero.jpg') center/cover no-repeat fixed;
  color: #fff;
}
.section--blue::before,
.section--sky::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background:
    radial-gradient(60% 100% at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(40% 100% at 80% 30%, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.section--sky {
  background:
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bot) 60%, var(--blue) 100%);
  color: #fff;
}
.section--cream {
  background: var(--cream);
  color: var(--ink);
}
.section--calc {
  background:
    linear-gradient(180deg, rgba(0,70,184,.88) 0%, rgba(10,26,58,.92) 100%),
    url('uploads/aud-friends.jpg') center/cover no-repeat fixed;
  color: #fff;
}
.section--book {
  background:
    linear-gradient(180deg, rgba(0,102,255,.85) 0%, rgba(0,70,184,.90) 100%),
    url('uploads/aud-romance.jpg') center/cover no-repeat fixed;
  color: #fff;
}
.section--reels {
  background: var(--ink);
  color: #fff;
  padding-bottom: 80px;
}

.section__head {
  margin: 56px 0 24px;
}
@media (min-width: 768px) {
  .section__head { margin: 72px 0 28px; }
}
.section__head--dark { color: var(--ink); }
.section__sub {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 16px;
  opacity: .85;
}
@media (min-width: 768px) {
  .section__sub { font-size: 18px; margin-bottom: 48px; }
}

/* ---------- TYPOGRAPHY: display ---------- */
.headline {
  font-family: "Bebas Neue", "Anton", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  width: 100%;
  text-wrap: balance;
}
.headline .i {
  display: inline-block;
  transform: skewX(-3deg);
  font-style: normal;
}
.headline--xxl { font-size: clamp(56px, 12vw, 140px); }
.headline--xl  { font-size: clamp(44px, 9vw, 96px); }
.headline--lg  { font-size: clamp(34px, 6.5vw, 64px); }
.headline--md  { font-size: clamp(28px, 5vw, 44px); }

.headline--accent {
  color: var(--yellow);
}
.headline__underline {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) skewX(-7deg);
  bottom: -10px;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-label {
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 auto;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.section--cream .section-label {
  color: var(--ink);
  opacity: 0.55;
}
.section-label > span { display: inline-block; }

.section > .container { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn--yellow {
  background: linear-gradient(180deg, #FFE34A 0%, #FFD600 55%, #F5C800 100%);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 2px 6px rgba(0,0,0,.12),
    0 12px 28px rgba(255,214,0,.22);
  border: 1px solid rgba(0,0,0,.04);
  letter-spacing: 0.01em;
}
.btn--yellow:hover {
  background: linear-gradient(180deg, #FFEA66 0%, #FFDC1A 55%, #F8CD00 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 4px 10px rgba(0,0,0,.14),
    0 18px 36px rgba(255,214,0,.28);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.section--cream .btn--ghost { color: var(--ink); border-color: rgba(10,26,58,.3); }
.section--cream .btn--ghost:hover { background: rgba(10,26,58,.06); }

.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--md { padding: 12px 18px; font-size: 14px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: transparent;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.topbar--scrolled {
  background: rgba(8,16,38,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  padding: 8px 20px;
}
.topbar__logo { text-decoration: none; }
.topbar__nav {
  display: none;
  gap: 28px;
}
.topbar__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: .9;
}
.topbar__nav a:hover { opacity: 1; color: var(--yellow); }
.topbar__cta { font-size: 13px; padding: 10px 18px; }
@media (min-width: 960px) {
  .topbar__nav { display: flex; }
}

/* ---------- LOGO MARK ---------- */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  font-family: "Anton", "Bebas Neue", sans-serif;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  padding: 6px;
}
.logo-mark__top { font-size: 14px; font-weight: 700; }
.logo-mark__bot { font-size: 7px; font-weight: 700; margin-top: 2px; letter-spacing: 0.08em; }

.logo-mark--lg { width: 92px; height: 92px; padding: 10px; }
.logo-mark--lg .logo-mark__top { font-size: 24px; }
.logo-mark--lg .logo-mark__bot { font-size: 11px; margin-top: 3px; }

.logo-mark--xs { width: 38px; height: 38px; padding: 4px; box-shadow: none; }
.logo-mark--xs .logo-mark__top { font-size: 10px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background: linear-gradient(180deg, #6FB6FF 0%, #2B8CFF 50%, var(--blue-deep) 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bg::part(placeholder),
.hero__bg .placeholder { background: transparent; }

/* One-shot water-splash video on load — black bg drops out via screen blend */
.hero__splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* zoom in to push iStock watermark off-screen */
  transform: scale(1.6);
  transform-origin: center 65%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
  transition: opacity 0.6s ease;
}
.hero__splash-video--done {
  opacity: 0;
  visibility: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* vignette */
    radial-gradient(120% 80% at 50% 50%, transparent 35%, rgba(0,0,0,.35) 100%),
    /* bottom drama for headline contrast */
    linear-gradient(180deg, rgba(6,16,40,.15) 0%, rgba(6,16,40,.55) 55%, rgba(6,16,40,.85) 100%),
    /* subtle brand tint */
    linear-gradient(180deg, rgba(0,82,200,.20) 0%, rgba(6,16,40,.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(10,26,58,.45);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 2px 14px rgba(0,0,0,.18);
}

.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.dot--pulse {
  box-shadow: 0 0 0 0 rgba(255,214,0,.7);
  animation: pulse 1.8s infinite;
}
.dot--green { background: #4ADE80; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,214,0,.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,214,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,214,0,0); }
}

.hero__title {
  font-family: "Bebas Neue", "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 8px 0;
  text-wrap: balance;
}
.hero__title-line {
  display: block;
  transform: skewX(-4deg);
  text-shadow: 0 2px 18px rgba(0,0,0,.35), 0 1px 1px rgba(0,0,0,.25);
  white-space: nowrap;
}
.hero__title-line--1 { color: #fff; }
.hero__title-line--2 {
  background: linear-gradient(180deg, #fff 0%, #DCEEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero__under {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.hero__under::before,
.hero__under::after {
  content: "";
  position: absolute;
  width: 24px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.hero__under::before { right: 100%; margin-right: 8px; }
.hero__under::after  { left: 100%; margin-left: 8px; }

.hero__sub {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.55;
  opacity: .92;
  margin: 4px 0 8px;
}
@media (min-width: 768px) {
  .hero__sub { font-size: 18px; }
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-top: 6px;
}
@media (min-width: 560px) {
  .hero__cta { flex-direction: row; max-width: none; justify-content: center; }
}

.hero__quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  width: 100%;
  max-width: 560px;
}
.hero__quick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  display: none;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (min-width: 768px) { .hero__scroll { display: block; } }

/* ---------- ANCHOR CHIPS ---------- */
.anchor-chips {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 56px;
  z-index: 30;
  padding: 12px 0;
  overflow: hidden;
}
.anchor-chips__row {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.anchor-chips__row::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: 9px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: background .15s ease, color .15s ease;
}
.chip:hover { background: rgba(255,255,255,.15); }
.chip--yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.chip--yellow:hover { background: #FFE040; }

/* ---------- TAGS ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tag--dark { background: var(--ink); color: #fff; }

.taglist {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 7px 16px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.taglist__dot { color: var(--yellow-hot); font-size: 10px; }

/* ---------- SERVICES ---------- */
.scards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 640px) { .scards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .scards { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.scard {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: left;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.scard:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}
.scard--pop {
  background: linear-gradient(180deg, rgba(255,214,0,.18) 0%, rgba(255,214,0,.05) 100%);
  border-color: rgba(255,214,0,.5);
}
.scard__ribbon {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scard__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.25);
}
.scard__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}
.scard__desc { margin: -8px 0 0; font-size: 14px; opacity: .85; line-height: 1.45; }
.scard__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 0 8px;
  border-top: 1px dashed rgba(255,255,255,.18);
}
.scard__price-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.01em;
}
.scard__price-cur { font-size: 16px; font-weight: 800; color: var(--yellow); }
.scard__price-unit { font-size: 13px; opacity: .75; margin-left: auto; }
.scard__price-old {
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.5);
  opacity: .6;
  margin-right: 4px;
  align-self: center;
}
.scard__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.price-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  opacity: .85;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
}

/* ---------- CALCULATOR ---------- */
.calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
}
@media (min-width: 880px) {
  .calc { grid-template-columns: 1.4fr 1fr; padding: 36px; gap: 36px; }
}
.calc__col { display: flex; flex-direction: column; }
.calc__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 18px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc__label:first-child { margin-top: 0; }
.calc__hint { color: var(--yellow); font-size: 16px; }
.calc__opts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.calc__opts--2 { grid-template-columns: 1fr 1fr; }
.calc__presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.calc__preset {
  position: relative;
  padding: 14px 6px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  transition: all .15s ease;
}
.calc__preset.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.calc__preset-tag {
  position: absolute;
  top: -8px; right: -4px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.calc__preset.is-active .calc__preset-tag { background: var(--ink); color: var(--yellow); }
.calc__opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  transition: all .2s ease;
}
.calc__opt.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.calc__opt--sm { flex-direction: row; padding: 10px 18px; font-size: 15px; }
.calc__people { display: flex; gap: 8px; }

.calc__range {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  outline: none;
  margin-top: 4px;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px;
  background: var(--yellow);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.calc__range::-moz-range-thumb {
  width: 26px; height: 26px;
  background: var(--yellow);
  border-radius: 50%;
  cursor: pointer;
  border: 0;
}
.calc__ticks {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  opacity: .6;
  font-weight: 700;
}

.calc__total {
  background: linear-gradient(160deg, var(--yellow) 0%, #FFC107 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.calc__total::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}
.calc__total-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .7;
}
.calc__total-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 13vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  position: relative;
}
.calc__total-num span { font-size: .35em; font-weight: 800; font-family: "Manrope", sans-serif; }
.calc__total-pp { font-size: 13px; font-weight: 700; opacity: .7; margin-top: -4px; }
.calc__total-meta { font-size: 13px; font-weight: 700; opacity: .65; margin-top: -2px; }
.calc__total-disc {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--yellow);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  align-self: flex-start;
  margin: 4px 0 6px;
}
.calc__total .btn { margin-top: 8px; }
.calc__note { font-size: 11px; opacity: .65; margin-top: 6px; line-height: 1.4; }

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 12px;
  position: relative;
}
@media (min-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}
.step {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px 22px 24px 84px;
  position: relative;
  text-align: left;
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) {
  .step { padding: 64px 22px 24px; text-align: center; }
}
.step__circle {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 #C9A800;
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
}
@media (min-width: 880px) {
  .step__circle { left: 50%; top: -10px; transform: translateX(-50%); width: 64px; height: 64px; font-size: 42px; }
}
.step__circle::after {
  content: ".";
  margin-left: -4px;
  margin-top: -10px;
}
.step h3 { margin: 0 0 6px; font-size: 18px; font-weight: 800; }
.step p { margin: 0; font-size: 14px; opacity: .75; line-height: 1.5; }

/* ---------- INCLUDED ---------- */
.included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
  text-align: left;
}
@media (min-width: 640px) { .included { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .included { grid-template-columns: 1fr 1fr 1fr; } }

.included__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 16px 20px 16px 16px;
}
.included__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--blue-night);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.25);
}
.included__text h4 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.included__text p { margin: 0; font-size: 13px; opacity: .8; }

/* ---------- AUDIENCES ---------- */
.audiences {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
@media (min-width: 640px) { .audiences { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .audiences { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.aud {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  background: var(--blue);
}
.aud__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.aud__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,58,.1) 0%, rgba(10,26,58,.4) 50%, rgba(10,26,58,.92) 100%);
  z-index: 1;
}
.aud__icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.aud__body {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aud__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: skewX(-7deg);
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.aud__under {
  width: 40px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform: skewX(-7deg);
}
.aud__sub {
  margin: 0;
  font-size: 14px;
  opacity: .92;
  line-height: 1.4;
}
.aud__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 6px;
  padding: 9px 16px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.aud__cta:hover { background: #FFE040; }

/* ---------- SAFETY ---------- */
.safety {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.safety__row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 14px 22px 14px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.safety__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--blue-deep);
}
.safety__text h4 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.safety__text p { margin: 0; font-size: 13px; color: var(--ink-2); }
.safety__quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 36px auto 0;
  max-width: 720px;
}

/* ---------- REELS ---------- */
.reels { margin-top: 28px; }
.reels__track {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 20px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reels__track::-webkit-scrollbar { display: none; }
.reel {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  scroll-snap-align: start;
}
@media (min-width: 768px) { .reel { width: 240px; } }
.reel__wrap {
  position: relative;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.reel__video {
  object-fit: cover;
  display: block;
}
.reel__play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
  padding-left: 4px;
}
.reel__play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.reel__wrap--playing .reel__play-btn { opacity: 0; pointer-events: none; }
.reel__media {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  background: linear-gradient(180deg, #1E83FF, var(--blue-deep));
}
.reel__play {
  position: absolute;
  bottom: 50px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  pointer-events: none;
}
.reel__label {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  pointer-events: none;
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq__item.is-open {
  box-shadow: 0 8px 24px rgba(10,26,58,.08);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.faq__plus {
  flex-shrink: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  line-height: 1;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ---------- FORM ---------- */
.form {
  margin-top: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) { .form { padding: 36px; } }

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.field > span em {
  font-style: normal;
  font-weight: 600;
  opacity: .5;
  text-transform: lowercase;
  letter-spacing: 0;
  margin-left: 4px;
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 3px var(--yellow);
}
.field textarea { resize: vertical; min-height: 92px; font-family: inherit; }

.form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form__chip {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: all .15s ease;
}
.form__chip.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.section--map { background: var(--ink, #0A1A3A); color: #fff; padding-bottom: 0; }
.section--map .section__head { color: #fff; }
.map {
  position: relative;
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  margin-top: 24px;
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.9);
}
.map__cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--yellow, #FFD600);
  color: #0A1A3A;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.map__cta:hover { transform: translateY(-1px); }

.pay__pp-wrap { display: flex; flex-direction: column; gap: 10px; }
.pay__pp-or {
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  position: relative;
  margin: 4px 0;
}
.pay__pp-or::before, .pay__pp-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.pay__pp-or::before { left: 0; }
.pay__pp-or::after { right: 0; }

.form__error {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,80,80,.15);
  border: 1px solid rgba(255,80,80,.45);
  color: #ffb4b4;
  font-size: 13px;
  text-align: center;
}

.form__or {
  text-align: center;
  font-size: 12px;
  opacity: .6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2px 0;
  position: relative;
}
.form__or::before, .form__or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.form__or::before { left: 5%; }
.form__or::after { right: 5%; }

.form__direct {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.form-success {
  margin-top: 22px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-success__icon {
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 0 #C9A800;
}
.form-success h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form-success p { margin: 0; max-width: 400px; color: var(--ink-2); }
.form-success__btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.form-success__btns .btn--ghost { color: var(--ink); border-color: rgba(10,26,58,.3); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: left;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.footer__tag { margin: 0; opacity: .7; font-size: 14px; }
.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .85;
}
.footer__link:hover { color: var(--yellow); opacity: 1; }
.footer__hours { margin: 0; font-size: 13px; opacity: .65; display: inline-flex; align-items: center; gap: 8px; }

.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  opacity: .5;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 12px 14px max(12px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(10,26,58,.7) 0%, rgba(10,26,58,.95) 100%);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(0);
  transition: transform .3s ease, opacity .3s ease;
}
.sticky-cta.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta__price { display: flex; flex-direction: column; line-height: 1.1; color: #fff; }
.sticky-cta__price-from { font-size: 11px; opacity: .6; text-transform: uppercase; letter-spacing: 0.1em; }
.sticky-cta__price-num { font-family: "Bebas Neue", sans-serif; font-size: 28px; font-weight: 400; color: var(--yellow); letter-spacing: 0.02em; }
.sticky-cta__price-unit { font-size: 11px; opacity: .6; }
.sticky-cta .btn { padding: 12px 18px; font-size: 14px; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ---------- CHAT WIDGET ---------- */
.chatw {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
@media (min-width: 1024px) {
  .chatw { bottom: 20px; right: 20px; }
}

.chatw__fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 28px;
  font-weight: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 4px 0 #C9A800;
  position: relative;
  transition: transform .2s ease;
}
.chatw__fab:hover { transform: scale(1.05); }
.chatw__fab-dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 12px; height: 12px;
  background: #FF3B30;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  animation: pulseRed 1.6s infinite;
}
@keyframes pulseRed {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.chatw__panel {
  width: min(340px, calc(100vw - 32px));
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }

.chatw__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--blue);
  color: #fff;
  position: relative;
}
.chatw__avatar {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chatw__name { font-weight: 800; font-size: 14px; }
.chatw__status { font-size: 11px; opacity: .9; display: flex; align-items: center; gap: 6px; }
.chatw__close {
  position: absolute;
  top: 8px; right: 8px;
  width: 30px; height: 30px;
  font-size: 24px;
  color: #fff;
  opacity: .8;
}
.chatw__body { padding: 18px 16px; }
.chatw__bubble {
  background: var(--cream-soft);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink-2);
  max-width: 90%;
}
.chatw__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;
}
.chatw__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream-soft);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: background .15s ease;
}
.chatw__btn:hover { background: var(--cream); }

/* ---------- IMAGE SLOT PLACEHOLDER LOOK ---------- */
image-slot {
  display: block;
}

/* The reel/aud/hero slots already have positioned wrappers. */
.aud:hover .aud__photo { filter: brightness(1.05); }

/* Hide image-slot placeholder text — we want art to show through when empty */
.hero__bg::part(placeholder) { opacity: 0; }

/* ============================================================
   HERO CSS-ART (sunset / water / clouds) — visible always
   ============================================================ */
.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      #7FC4FF 0%,
      #4FA3F5 25%,
      #2B8CFF 45%,
      #1668D6 65%,
      #0A4FB8 85%,
      #062D72 100%);
}
.hero__sun {
  display: none; /* tone down — water brand, not sunset */
}
.hero__sun--off {
  position: absolute;
  left: 50%; bottom: 38%;
  transform: translateX(-50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE9A0 0%, #FFB347 40%, transparent 70%);
  filter: blur(2px);
  opacity: .9;
}
.hero__sun::after {
  content: "";
  position: absolute;
  inset: 55px;
  background: radial-gradient(circle, #FFD37A 0%, #FF8E3C 70%, transparent 100%);
  border-radius: 50%;
}
.hero__water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background:
    linear-gradient(180deg,
      rgba(15,40,90,.4) 0%,
      rgba(10,30,80,.85) 40%,
      rgba(5,18,60,1) 100%);
}
.hero__water::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFE9A0, transparent);
  opacity: .6;
}
.hero__wave {
  position: absolute;
  left: -20%; right: -20%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
}
.hero__wave--1 { bottom: 24%; transform: scaleY(.25); }
.hero__wave--2 { bottom: 16%; transform: scaleY(.18); opacity: .6; }
.hero__cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.5) 0%, rgba(255,255,255,.15) 60%, transparent 100%);
  filter: blur(6px);
}
.hero__cloud--1 { top: 12%; left: -5%; width: 280px; height: 80px; }
.hero__cloud--2 { top: 22%; right: -10%; width: 320px; height: 100px; opacity: .6; }

/* Image slot sits on top of art — when filled, covers it. When empty, transparent. */
.hero .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   VARIANT: EDITORIAL — cream/light, refined, less skew
   ============================================================ */
body[data-variant="editorial"] {
  --blue: #1F4FCC;
  --blue-deep: #14328A;
  --blue-night: #0C1F4E;
  --cream: #F5EDD9;
  --cream-soft: #FAF4E3;
}
body[data-variant="editorial"] .topbar--scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 18px rgba(10,26,58,.08);
}
body[data-variant="editorial"] .topbar--scrolled .topbar__nav a,
body[data-variant="editorial"] .topbar:not(.topbar--scrolled) {
  /* keep default white on hero */
}
body[data-variant="editorial"] .topbar--scrolled .topbar__nav a {
  color: var(--ink);
}
body[data-variant="editorial"] .headline .i { transform: none; }
body[data-variant="editorial"] .headline__underline { transform: translateX(-50%); height: 3px; width: 48px; }
body[data-variant="editorial"] .hero__title-line { transform: none; letter-spacing: -0.01em; }
body[data-variant="editorial"] .hero__title { font-size: clamp(64px, 16vw, 180px); letter-spacing: -0.01em; }

/* Editorial: cream sections in place of blue */
body[data-variant="editorial"] .section--blue {
  background: var(--cream);
  color: var(--ink);
}
body[data-variant="editorial"] .section--sky {
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  color: var(--ink);
}
body[data-variant="editorial"] .section--blue::before,
body[data-variant="editorial"] .section--sky::before { display: none; }
body[data-variant="editorial"] .section-label {
  background: rgba(10,26,58,.06);
  border-color: rgba(10,26,58,.12);
  color: var(--ink);
}

/* Cards on cream */
body[data-variant="editorial"] .scard {
  background: #fff;
  border: 1px solid rgba(10,26,58,.1);
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(10,26,58,.04), 0 18px 40px -20px rgba(10,26,58,.18);
}
body[data-variant="editorial"] .scard--pop {
  background: linear-gradient(180deg, #fff 0%, #FFFBE8 100%);
  border-color: var(--yellow);
}
body[data-variant="editorial"] .scard__icon {
  background: var(--blue);
  border-color: var(--blue);
}
body[data-variant="editorial"] .scard__title { color: var(--ink); }
body[data-variant="editorial"] .scard__desc { color: var(--ink-2); }
body[data-variant="editorial"] .scard__price { border-top-color: rgba(10,26,58,.12); }
body[data-variant="editorial"] .scard__price-num,
body[data-variant="editorial"] .scard__price-cur { color: var(--ink); }
body[data-variant="editorial"] .scard__price-unit { color: var(--ink-2); opacity: .7; }
body[data-variant="editorial"] .tag { background: var(--ink); color: #fff; }

body[data-variant="editorial"] .price-note {
  background: var(--ink);
  color: #fff;
}

/* Included items: white cards on cream */
body[data-variant="editorial"] .included__item {
  background: #fff;
  border-color: rgba(10,26,58,.1);
  color: var(--ink);
}
body[data-variant="editorial"] .included__icon { background: var(--blue); }

/* Steps stay on white */
body[data-variant="editorial"] .step { background: #fff; }

/* Safety: cream context */
body[data-variant="editorial"] .safety__row { box-shadow: 0 2px 12px rgba(10,26,58,.08); }
body[data-variant="editorial"] .safety__icon { background: var(--blue); box-shadow: 0 0 0 1px var(--blue-deep); }
body[data-variant="editorial"] .safety__quote { color: var(--ink); }
body[data-variant="editorial"] .headline--accent { color: var(--blue); }

/* Calculator: light card on cream */
body[data-variant="editorial"] .section--calc {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  color: var(--ink);
}
body[data-variant="editorial"] .calc {
  background: #fff;
  border-color: rgba(10,26,58,.1);
  box-shadow: 0 18px 40px -20px rgba(10,26,58,.18);
}
body[data-variant="editorial"] .calc__opt {
  background: rgba(10,26,58,.04);
  border-color: rgba(10,26,58,.1);
  color: var(--ink);
}
body[data-variant="editorial"] .calc__range { background: rgba(10,26,58,.1); }

/* Book section */
body[data-variant="editorial"] .section--book {
  background: linear-gradient(180deg, var(--ink) 0%, #050D2B 100%);
}
body[data-variant="editorial"] .form { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }

/* Anchor chips on cream */
body[data-variant="editorial"] .anchor-chips {
  background: #fff;
  border-bottom: 1px solid rgba(10,26,58,.08);
}
body[data-variant="editorial"] .chip {
  background: rgba(10,26,58,.06);
  border-color: rgba(10,26,58,.1);
  color: var(--ink);
}
body[data-variant="editorial"] .chip:hover { background: rgba(10,26,58,.12); }
body[data-variant="editorial"] .chip--yellow { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

/* Buttons: editorial uses solid ink as ghost */
body[data-variant="editorial"] .section--cream .btn--ghost,
body[data-variant="editorial"] .btn--ghost {
  color: var(--ink);
  border-color: rgba(10,26,58,.2);
}

/* Cream-section headlines */
body[data-variant="editorial"] .section--cream { background: #fff; }

/* Editorial hero — lighter, less aggressive */
body[data-variant="editorial"] .hero__overlay {
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(10,26,58,.6), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.1) 0%, rgba(10,26,58,.3) 100%);
}
body[data-variant="editorial"] .hero__under {
  background: #fff;
  color: var(--ink);
}
body[data-variant="editorial"] .hero__title-line--2 {
  background: linear-gradient(180deg, var(--yellow) 0%, #FFC107 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   VARIANT: STORY — full-screen sections, IG-stories vibe
   ============================================================ */
body[data-variant="story"] .section,
body[data-variant="story"] .hero { 
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}
body[data-variant="story"] .section--reels { min-height: auto; padding: 60px 0; }
body[data-variant="story"] .section--book { min-height: auto; }
body[data-variant="story"] .footer { min-height: auto; }

body[data-variant="story"] .anchor-chips { display: none; }

/* Right-side story progress dots */
body[data-variant="story"]::after {
  content: "";
}
body[data-variant="story"] .story-progress {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 38;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body[data-variant="story"] .headline .i { transform: skewX(-3deg); }
body[data-variant="story"] .hero__title-line { transform: skewX(-3deg); }
body[data-variant="story"] .hero__title { font-size: clamp(80px, 22vw, 240px); }

body[data-variant="story"] .section--cream { background: var(--ink); color: #fff; }
body[data-variant="story"] .section--cream .section-label { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.18); }
body[data-variant="story"] .section--cream .headline { color: #fff; }
body[data-variant="story"] .section--cream .step { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.12); }
body[data-variant="story"] .section--cream .step h3 { color: #fff; }
body[data-variant="story"] .section--cream .step p { color: rgba(255,255,255,.7); }
body[data-variant="story"] .section--cream .aud { box-shadow: none; }
body[data-variant="story"] .section--cream .faq__item { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.1); }
body[data-variant="story"] .section--cream .faq__q { color: #fff; }
body[data-variant="story"] .section--cream .faq__a p { color: rgba(255,255,255,.75); }
body[data-variant="story"] .section__head--dark { color: #fff; }

body[data-variant="story"] .scard,
body[data-variant="story"] .included__item,
body[data-variant="story"] .safety__row { transform: none; }

/* Bigger media in story mode */
body[data-variant="story"] .aud { min-height: 480px; }
body[data-variant="story"] .reel { width: 260px; }


/* ============================================================
   PAYMENT
   ============================================================ */
.section--pay {
  background:
    radial-gradient(80% 60% at 50% 0%, #F8F2E2 0%, var(--cream) 60%, #ECDDB3 100%);
  color: var(--ink);
}
.section--pay .section-label {
  background: rgba(10,26,58,.06);
  color: var(--ink);
  border-color: rgba(10,26,58,.12);
}
.section--pay .headline { color: var(--ink); }
.section--pay .headline--accent { color: #003087; }
.section--pay .section__sub { color: var(--ink-2); opacity: .85; }

.pay {
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(10,26,58,.04),
    0 24px 60px -24px rgba(10,26,58,.25);
  text-align: left;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(10,26,58,.06);
}

.pay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #0A1A3A 0%, #0E2255 100%);
  color: #fff;
}
.pay__head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pay__lock {
  width: 36px; height: 36px;
  background: #00B67A;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pay__head-title { font-size: 14px; font-weight: 800; letter-spacing: 0.01em; }
.pay__head-sub { font-size: 11px; opacity: .65; margin-top: 1px; }

.pay__powered { text-align: right; line-height: 1.1; }
.pay__powered-label { font-size: 10px; opacity: .55; display: block; letter-spacing: 0.06em; text-transform: uppercase; }
.pay__powered-pp {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-style: italic;
  display: inline-flex;
}
.pay__powered-pp-1 { color: #003087; background: #fff; padding: 1px 1px 1px 5px; border-radius: 3px 0 0 3px; display: inline-block; }
.pay__powered-pp-2 { color: #009CDE; background: #fff; padding: 1px 5px 1px 1px; border-radius: 0 3px 3px 0; display: inline-block; }

.pay__methods {
  padding: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pay__method {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: #fff;
  border: 2px solid rgba(10,26,58,.1);
  border-radius: 16px;
  text-align: left;
  transition: all .15s ease;
  position: relative;
}
.pay__method:hover { border-color: rgba(10,26,58,.2); }
.pay__method.is-active {
  border-color: var(--ink);
  background: #FAFAFE;
  box-shadow: 0 4px 16px -4px rgba(10,26,58,.12);
}

.pay__method--primary {
  border-color: var(--yellow);
  background: linear-gradient(180deg, #FFFBE5 0%, #FFFEF8 100%);
}
.pay__method--primary::after {
  content: "Рекомендовано";
  position: absolute;
  top: -10px; left: 18px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pay__method--primary.is-active {
  border-color: var(--ink);
  background: linear-gradient(180deg, #FFFBE5 0%, #FFF8C9 100%);
}

.pay__method-radio {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid rgba(10,26,58,.25);
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: all .15s ease;
}
.pay__method.is-active .pay__method-radio {
  border-color: var(--ink);
}
.pay__method.is-active .pay__method-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.pay__method-body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pay__method-title { font-size: 16px; font-weight: 800; color: var(--ink); }
.pay__method-sub { font-size: 12px; color: var(--ink-2); opacity: .7; }

.pay__brands {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.pay__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  height: 24px;
  min-width: 38px;
  border: 1px solid rgba(10,26,58,.08);
  background: #fff;
}
.pay__brand--visa {
  background: #1A1F71;
  color: #fff;
  font-style: italic;
  border-color: #1A1F71;
}
.pay__brand--mc {
  background: #fff;
  padding: 0;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay__brand-mc-1, .pay__brand-mc-2 {
  width: 14px; height: 14px;
  border-radius: 50%;
}
.pay__brand-mc-1 { background: #EB001B; margin-right: -6px; }
.pay__brand-mc-2 { background: #F79E1B; mix-blend-mode: multiply; }
.pay__brand--apple {
  background: #000;
  color: #fff;
  border-color: #000;
  font-style: normal;
}
.pay__brand--gpay {
  background: #fff;
  color: #5F6368;
  border-color: rgba(0,0,0,.12);
  font-style: normal;
}
.pay__brand--pp {
  background: #fff;
  border-color: rgba(0,0,0,.08);
  padding: 1px 0;
  font-size: 13px;
  font-style: italic;
  min-width: 56px;
}
.pay__brand--pp .pay__powered-pp-1,
.pay__brand--pp .pay__powered-pp-2 { padding: 0 2px; background: transparent; border-radius: 0; }

.pay__form {
  padding: 18px;
  border-top: 1px solid rgba(10,26,58,.06);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pay__form-row { display: flex; gap: 12px; }
.pay__form-row--2 > .pay__field { flex: 1; }

.pay__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pay__field > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: .75;
}
.pay__field input {
  padding: 14px 16px;
  background: #F6F7FB;
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  transition: all .15s ease;
  font-variant-numeric: tabular-nums;
}
.pay__field input:focus {
  background: #fff;
  border-color: var(--ink);
}
.pay__input-wrap {
  position: relative;
  display: flex;
}
.pay__input-wrap input { flex: 1; padding-right: 60px; }
.pay__input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.pay__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  margin-top: 4px;
}
.pay__total > span:first-child { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: .7; }
.pay__total-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--yellow);
  line-height: 1;
}
.pay__total-num em { font-size: 18px; font-style: normal; font-weight: 800; font-family: "Manrope", sans-serif; }

.pay__legal {
  font-size: 11px;
  color: var(--ink-2);
  opacity: .6;
  line-height: 1.5;
  text-align: center;
  padding: 0 8px;
}

.pay__pp-card {
  background: linear-gradient(180deg, #F0F4FF 0%, #E6EEFF 100%);
  border: 1.5px solid #C9D7FF;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.pay__pp-logo {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.01em;
  display: inline-flex;
}
.pay__pp-card p { font-size: 14px; color: var(--ink-2); margin: 0; max-width: 360px; }
.pay__pp-btn {
  background: #FFC439;
  color: #003087;
  font-style: italic;
  box-shadow: 0 4px 0 #E0A800;
}
.pay__pp-btn:hover { background: #FFD050; }

.pay__form--cash, .pay__form--pp { padding-top: 18px; }

.pay__cash-card {
  background: linear-gradient(180deg, #FFFBE5 0%, #FFF4C2 100%);
  border: 1.5px solid var(--yellow);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.pay__cash-icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 0 #C9A800;
}
.pay__cash-card h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pay__cash-card p { font-size: 14px; color: var(--ink-2); margin: 0; max-width: 360px; }

.pay__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(10,26,58,.06);
  background: #FAFAFE;
}
.pay__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
}
.pay__trust-item span { letter-spacing: 0.02em; }

@media (max-width: 520px) {
  .pay__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pay__powered { text-align: left; }
  .pay__brands { gap: 4px; }
  .pay__brand { font-size: 10px; padding: 4px 6px; min-width: 32px; }
  .pay__method { padding: 14px; gap: 10px; flex-wrap: wrap; }
  .pay__method-title { font-size: 14px; }
  .pay__method-sub { font-size: 11px; }
  .pay__method .pay__brands { width: 100%; padding-left: 36px; }
}

/* Editorial variant payment */
body[data-variant="editorial"] .section--pay { background: #fff; }

/* Story variant payment */
body[data-variant="story"] .section--pay { background: var(--ink); color: #fff; min-height: auto; padding: 80px 0; }
body[data-variant="story"] .section--pay .headline { color: #fff; }
body[data-variant="story"] .section--pay .section__sub { color: rgba(255,255,255,.7); }
body[data-variant="story"] .section--pay .section-label { background: rgba(255,255,255,.1); color: #fff; }

/* ============================================================
   SPLASH — water crashes on screen at load
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.splash__sheet {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, #1E83FF 0%, var(--blue) 38%, var(--blue-deep) 100%);
  transform: translateY(-100%);
  will-change: transform;
}
.splash--in .splash__sheet {
  animation: splashDrop 0.55s cubic-bezier(.5,.05,.2,1) forwards;
}
.splash--hold .splash__sheet { transform: translateY(0); }
.splash--out .splash__sheet {
  transform: translateY(0);
  animation: splashDrain 0.95s cubic-bezier(.7,0,.3,1) forwards;
}

.splash__edge {
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  width: 100%;
  height: 22vh;
  min-height: 140px;
  fill: var(--blue-deep);
  transform: translateY(100%) scaleY(0.6);
  transform-origin: top center;
  will-change: transform;
}
.splash__edge--2 {
  fill: var(--blue);
  height: 18vh;
  min-height: 110px;
  opacity: .85;
}
.splash--in .splash__edge {
  animation: splashEdgeIn 0.7s 0.05s cubic-bezier(.3,1.4,.4,1) forwards;
}
.splash--in .splash__edge--2 {
  animation: splashEdgeIn 0.75s 0.12s cubic-bezier(.3,1.5,.4,1) forwards;
}
.splash--hold .splash__edge,
.splash--hold .splash__edge--2 { transform: translateY(0) scaleY(1); }
.splash--out .splash__edge,
.splash--out .splash__edge--2 {
  transform: translateY(0) scaleY(1);
  animation: splashDrain 0.95s cubic-bezier(.7,0,.3,1) forwards;
}

.splash__drops {
  position: absolute;
  left: 0; right: 0;
  top: 35%;
  height: 0;
}
.splash__drop {
  position: absolute;
  top: 0;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #DCEEFF 0%, #7FB6FF 60%, #2B8CFF 100%);
  box-shadow: 0 0 12px rgba(120, 190, 255, .55);
  transform: translate3d(0, 0, 0) scale(0);
  opacity: 0;
  will-change: transform, opacity;
}
.splash--in .splash__drop,
.splash--hold .splash__drop {
  animation: splashDrop2 1.1s cubic-bezier(.2,.7,.3,1) forwards;
}
.splash--out .splash__drop { opacity: 0; }

@keyframes splashDrop {
  0% { transform: translateY(-100%); }
  70% { transform: translateY(2%); }
  85% { transform: translateY(-1%); }
  100% { transform: translateY(0); }
}
@keyframes splashEdgeIn {
  0% { transform: translateY(100%) scaleY(0.4); }
  60% { transform: translateY(-10%) scaleY(1.2); }
  100% { transform: translateY(0) scaleY(1); }
}
@keyframes splashDrain {
  0% { transform: translateY(0) scaleY(1); }
  100% { transform: translateY(115%) scaleY(0.8); }
}
@keyframes splashDrop2 {
  0% {
    transform: translate3d(0, 0, 0) scale(0.2);
    opacity: 0;
  }
  15% { opacity: 1; }
  100% {
    transform: translate3d(var(--dx, 0), var(--dy, -300px), 0) scale(1);
    opacity: 0;
  }
}

/* ============================================================
   FLY-IN LETTERS — title letters fly from sides
   ============================================================ */
.fly {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
  transform: translateX(0) rotate(0);
}
/* Per-letter gradient so background-clip:text survives transforms */
.hero__title-line--2 .fly {
  background: linear-gradient(180deg, #fff 0%, #DCEEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body[data-variant="editorial"] .hero__title-line--2 .fly {
  background: linear-gradient(180deg, var(--yellow) 0%, #FFC107 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.fly--left {
  animation: flyInLeft 0.85s cubic-bezier(.2,.85,.25,1) forwards;
}
.fly--right {
  animation: flyInRight 0.85s cubic-bezier(.2,.85,.25,1) forwards;
}
@keyframes flyInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-110vw, -10vh, 0) rotate(-35deg) scale(1.2);
  }
  60% { opacity: 1; }
  80% {
    transform: translate3d(0, 0, 0) rotate(3deg) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}
@keyframes flyInRight {
  0% {
    opacity: 0;
    transform: translate3d(110vw, -10vh, 0) rotate(35deg) scale(1.2);
  }
  60% { opacity: 1; }
  80% {
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

/* Keep hero subtitle/CTA from popping in awkwardly — fade them in after splash */
.hero__badge,
.hero__under,
.hero__sub,
.hero__cta,
.hero__quick,
.hero__scroll {
  opacity: 0;
  animation: fadeUp 0.7s 1.9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__under  { animation-delay: 2.0s; }
.hero__sub    { animation-delay: 2.1s; }
.hero__cta    { animation-delay: 2.2s; }
.hero__quick  { animation-delay: 2.3s; }
.hero__scroll { animation-delay: 2.5s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .splash { display: none; }
  .fly,
  .hero__badge, .hero__under, .hero__sub,
  .hero__cta, .hero__quick, .hero__scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
