/* ============ RESET & BASE ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #ff2e9e;
  --pink-bright: #ff5cc2;
  --lime: #d4ff2a;
  --lime-bright: #e8ff7a;
  --bg: #07070b;
  --bg-rgb: 7, 7, 11;
  --bg-alt: #0c0c14;
  --card: #12121c;
  --card-border: rgba(255, 255, 255, 0.08);
  --surface-tint: rgba(255, 255, 255, .04);
  --text: #f5f5f9;
  --text-muted: #a8a8b8;
  --grad: linear-gradient(90deg, var(--pink), var(--lime));
  --shadow-pink: 0 0 24px rgba(255, 46, 158, .45);
  --shadow-lime: 0 0 24px rgba(212, 255, 42, .35);
  --radius: 20px;

  /* Header always overlays the dark hero video while transparent,
     so its default text stays light regardless of theme. */
  --header-fg: #f5f5f9;
  --header-fg-muted: rgba(245, 245, 249, .78);

  /* Raw --lime is near-white and unreadable as body text on a light
     background; --lime-text is the readable variant for running text.
     --pink-text is the equivalent AA-safe variant of --pink. */
  --lime-text: var(--lime);
  --pink-text: var(--pink);

  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #faf8fc;
  --bg-rgb: 250, 248, 252;
  --bg-alt: #f1edf6;
  --card: #ffffff;
  --card-border: rgba(20, 16, 30, .1);
  --surface-tint: rgba(20, 16, 30, .035);
  --text: #17151f;
  --text-muted: #5c5768;
  --shadow-pink: 0 0 24px rgba(255, 46, 158, .22);
  --shadow-lime: 0 0 24px rgba(180, 210, 20, .28);
  --lime-text: #5f7300;
  --pink-text: #c2127a;

  color-scheme: light;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime-text);
  margin-bottom: 14px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-alt); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 22px;
}

.lead {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 50px;
}

/* ============ AMBIENT FX ============ */
.fx-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .28;
  pointer-events: none;
  z-index: 0;
  transition: opacity .3s ease;
}
.fx-blob--pink { top: -10%; left: -10%; width: 45vw; height: 45vw; background: var(--pink); }
.fx-blob--lime { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: var(--lime); }
:root[data-theme="light"] .fx-blob { opacity: .14; }

#sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .8;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(var(--bg-rgb), .85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
}
.site-header.scrolled .brand__text,
.site-header.scrolled .nav a.active,
.site-header.scrolled .nav a:hover,
.site-header.scrolled .burger span {
  color: var(--text);
}
.site-header.scrolled .nav a,
.site-header.scrolled .header__phone {
  color: var(--text-muted);
}
.site-header.scrolled .header__phone:hover { color: var(--lime-text); }
.site-header.scrolled .burger span { background: var(--text); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(255, 46, 158, .5);
}
.brand__text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .05em;
  color: var(--header-fg);
}

.nav {
  display: flex;
  gap: 28px;
  font-size: .92rem;
  font-weight: 500;
}
.nav a { color: var(--header-fg-muted); transition: color .2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--header-fg); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone {
  font-size: .88rem;
  font-weight: 600;
  color: var(--header-fg-muted);
  white-space: nowrap;
}
.header__phone:hover { color: var(--lime); }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 245, 249, .35);
  color: var(--header-fg);
  flex-shrink: 0;
  transition: border-color .2s, color .2s, transform .2s;
}
.theme-toggle:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.theme-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.site-header.scrolled .theme-toggle {
  color: var(--text);
  border-color: var(--card-border);
}
.site-header.scrolled .theme-toggle:hover {
  border-color: var(--lime-text);
  color: var(--lime-text);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--header-fg);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  font-family: 'Unbounded', sans-serif;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .8rem; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

.btn--primary {
  background: var(--grad);
  color: #0a0a0a;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink), var(--shadow-lime);
}

.btn--ghost {
  background: var(--surface-tint);
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn--ghost:hover {
  border-color: var(--lime-text);
  color: var(--lime-text);
  transform: translateY(-3px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.2) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,46,158,.35), transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(212,255,42,.25), transparent 55%),
    linear-gradient(180deg, rgba(7,7,11,.75) 0%, rgba(7,7,11,.85) 55%, var(--bg) 100%);
}

.hero__ball {
  position: absolute;
  top: 8%;
  right: 10%;
  z-index: -1;
  opacity: .9;
  perspective: 700px;
  animation: float 6s ease-in-out infinite;
}
.hero__ball::before {
  content: '';
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,46,158,.4), rgba(212,255,42,.22) 55%, transparent 72%);
  filter: blur(28px);
  z-index: -1;
  animation: discoGlowSoft 3.2s ease-in-out infinite;
}
.ball-canvas {
  display: block;
  width: 220px;
  height: 220px;
}
.ball-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px rgba(255,46,158,.5)) drop-shadow(0 0 40px rgba(212,255,42,.3));
  animation: spinY 9s linear infinite, discoGlow 3.2s ease-in-out infinite;
}
.ball__beam {
  position: absolute;
  top: -80px; left: 50%;
  width: 2px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinY { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes discoGlowSoft {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
@keyframes discoGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255,46,158,.4)) drop-shadow(0 0 32px rgba(212,255,42,.25)); }
  50% { filter: drop-shadow(0 0 38px rgba(255,46,158,.75)) drop-shadow(0 0 60px rgba(212,255,42,.5)); }
}

.hero__content { position: relative; z-index: 2; padding-top: 90px; }

/* The hero video always stays dark for contrast, so its text and
   controls are pinned to the fixed light header tokens regardless
   of the active site theme. */
.hero .eyebrow { color: var(--lime); }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  margin-bottom: 26px;
  max-width: 14ch;
  color: var(--header-fg);
}

.hero__subtitle {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--header-fg-muted);
  margin-bottom: 42px;
}

.hero__cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero .btn--ghost {
  color: var(--header-fg);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(245, 245, 249, .35);
}
.hero .btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 20px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--lime);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 8px; }
}

/* ============ ABOUT ============ */
.about__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about__visual { display: flex; justify-content: center; }
.disco-frame {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.disco-frame__ball {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--pink), #fff, var(--lime), #fff, var(--pink));
  box-shadow: 0 0 50px rgba(255,46,158,.6), 0 0 90px rgba(212,255,42,.4);
  animation: spin 10s linear infinite;
  z-index: 2;
}
.disco-frame__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
}
.disco-frame__ring--1 {
  width: 240px; height: 240px;
  border-color: rgba(255,46,158,.5);
  animation: spin 20s linear infinite;
}
.disco-frame__ring--2 {
  width: 320px; height: 320px;
  border-color: rgba(212,255,42,.35);
  animation: spin 26s linear infinite reverse;
}
.disco-frame__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255,46,158,.25), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.about__text p:not(.eyebrow) { color: var(--text-muted); margin-bottom: 18px; max-width: 60ch; }

/* ============ JUMPING SECTION ============ */
.jumping__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 60px 0 70px;
  align-items: start;
}

.jumping__video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-pink);
}
.jumping__video video { width: 100%; display: block; aspect-ratio: 9/12; object-fit: cover; background: #000; }
.jumping__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(7,7,11,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Unbounded', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--lime);
}
.jumping__badge span { display: block; font-size: .62rem; color: var(--header-fg-muted); font-weight: 500; margin-top: 2px; }

.jumping__program h3 { font-size: 1.3rem; margin-bottom: 22px; }

.program-bar {
  display: flex;
  width: 100%;
  height: 46px;
  border-radius: 100px;
  overflow: hidden;
  gap: 3px;
}
.program-bar__seg {
  width: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #0a0a0a;
}
.program-bar__seg--1 { background: var(--pink); }
.program-bar__seg--2 { background: var(--lime); }
.program-bar__seg--3 { background: #6a6a7a; color: #fff; }

.program-legend { margin: 20px 0 40px; display: flex; flex-direction: column; gap: 10px; }
.program-legend li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: .92rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot--1 { background: var(--pink); }
.dot--2 { background: var(--lime); }
.dot--3 { background: #6a6a7a; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--card-border);
}
.stat__num, .stat__suf {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lime-text);
}
.stat__suf { font-size: 1.1rem; }
.stat p { color: var(--text-muted); font-size: .8rem; margin-top: 6px; }

.advantages__title { font-size: 1.6rem; margin-bottom: 34px; }
.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.adv-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.adv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,46,158,.4);
  box-shadow: var(--shadow-pink);
}
.adv-card__icon { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.adv-card h4 { font-size: 1.02rem; margin-bottom: 10px; }
.adv-card p { color: var(--text-muted); font-size: .88rem; }

/* ============ CONTRAINDICATIONS ============ */
.warn-card {
  display: flex;
  gap: 26px;
  background: linear-gradient(135deg, rgba(255,46,158,.08), rgba(212,255,42,.04));
  border: 1px solid rgba(255,46,158,.3);
  border-radius: var(--radius);
  padding: 40px;
}
.warn-card__icon { font-size: 2.2rem; flex-shrink: 0; }
.warn-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.warn-card p { color: var(--text-muted); margin-bottom: 14px; }
.warn-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 18px;
}
.warn-list li {
  color: var(--text);
  font-size: .92rem;
  padding-left: 18px;
  position: relative;
}
.warn-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.warn-note { font-size: .85rem; font-style: italic; color: var(--text-muted); margin-bottom: 0 !important; }

/* ============ MYTHS ACCORDION ============ */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item {
  border-bottom: 1px solid var(--card-border);
}
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 6px;
  text-align: left;
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color .2s;
}
.acc-head:hover { color: var(--lime-text); }
.acc-num { color: var(--pink-text); font-size: .82rem; flex-shrink: 0; }
.acc-plus {
  margin-left: auto;
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.acc-plus::before, .acc-plus::after {
  content: '';
  position: absolute;
  background: var(--lime);
  transition: transform .3s;
}
.acc-plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.acc-plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.acc-item.open .acc-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.acc-item.open .acc-body { max-height: 260px; padding-bottom: 26px; }
.acc-body p { color: var(--text-muted); font-size: .94rem; padding: 0 6px 0 42px; }

/* ============ SCHEDULE / PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card--accent {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: scale(1.03);
}
.price-card__tag {
  position: absolute;
  top: -13px; left: 32px;
  background: var(--grad);
  color: #0a0a0a;
  font-family: 'Unbounded', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-card h3 { font-size: 1.15rem; }
.price-card__price {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime-text);
}
.price-card__price span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
}
.price-card ul { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.price-card li {
  color: var(--text-muted);
  font-size: .88rem;
  padding-left: 18px;
  position: relative;
}
.price-card li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--pink-text);
  font-weight: 700;
}
.price-card .btn { align-self: flex-start; }

.schedule__note { color: var(--text-muted); font-size: .9rem; max-width: 520px; margin: 0 auto; }

/* ============ REVIEWS ORBIT ============ */
/* The orbit's centre sits on the bottom edge of the block, so only the
   upper half of the circle (and roughly half the photos) is ever visible —
   like a rising fan of cards around the disco ball. */
.orbit {
  position: relative;
  width: min(560px, 88vw);
  height: min(480px, 86vw);
  margin: 30px auto 4px;
  touch-action: pan-y;
}
.orbit__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.orbit__ball {
  position: absolute;
  top: 100%; left: 50%;
  width: 92px; height: 92px;
  margin: -46px 0 0 -46px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--pink), #fff, var(--lime), #fff, var(--pink));
  box-shadow: 0 0 40px rgba(255, 46, 158, .5), 0 0 70px rgba(212, 255, 42, .3);
  animation: spin 8s linear infinite, float 5s ease-in-out infinite;
  z-index: 2;
}
.orbit__ring {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: grab;
  touch-action: none;
}
.orbit__ring:active { cursor: grabbing; }
.orbit__item {
  position: absolute;
  top: 100%; left: 50%;
  width: 0; height: 0;
  will-change: transform;
}
.orbit__card {
  position: absolute;
  top: 0; left: 0;
  width: 92px; height: 116px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--card-border);
  background: var(--card);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  cursor: pointer;
  z-index: 1;
  transition: border-color .3s, box-shadow .3s,
    width .45s cubic-bezier(.34, 1.56, .64, 1),
    height .45s cubic-bezier(.34, 1.56, .64, 1);
}
.orbit__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.orbit__card:hover,
.orbit__card:focus-visible {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}
.orbit__card.is-active {
  width: 300px; height: 380px;
  border-color: var(--lime);
  border-width: 3px;
  box-shadow: var(--shadow-lime), 0 24px 60px rgba(0, 0, 0, .55);
  background: #fff;
  z-index: 5;
}
.orbit__card.is-active img {
  object-fit: contain;
  background: #fff;
}

.orbit__nav {
  position: absolute;
  bottom: 18px;
  z-index: 4;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--card-border);
  color: var(--text);
  transition: border-color .2s, color .2s, transform .2s;
}
.orbit__nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.orbit__nav:hover { border-color: var(--lime-text); color: var(--lime-text); }
.orbit__nav--prev { left: -6px; }
.orbit__nav--next { right: -6px; }

.orbit__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 8px;
}
.orbit__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  transition: background .2s, transform .2s;
}
.orbit__dots button.is-active {
  background: var(--grad);
  transform: scale(1.35);
}

@media (max-width: 640px) {
  .orbit { width: 92vw; height: 85vw; }
  .orbit__card { width: 76px; height: 96px; }
  .orbit__card.is-active { width: 230px; height: 290px; border-width: 2.5px; }
  .orbit__ball { width: 74px; height: 74px; margin: -37px 0 0 -37px; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 7, .88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(520px, 88vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), var(--shadow-pink);
  background: #fff;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #f5f5f9;
}
.lightbox__close:hover { border-color: var(--pink); color: var(--pink); }
.lightbox__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #f5f5f9;
}
.lightbox__nav:hover { border-color: var(--lime); color: var(--lime); }
.lightbox__nav svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
@media (max-width: 640px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* ============ CONTACT ============ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact__info .section__title { margin-top: 8px; }
.contact__info > p:not(.eyebrow) { color: var(--text-muted); max-width: 46ch; margin: 18px 0 34px; }

.contact__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact__list li { display: flex; flex-direction: column; gap: 4px; }
.contact__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pink-text); }
.contact__list a { font-weight: 600; font-size: 1.05rem; }
.contact__list a:hover { color: var(--lime-text); }
.contact__address { font-weight: 600; font-size: 1.05rem; }

.contact__quick { display: flex; gap: 14px; }

.contact__form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--surface-tint);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: .95rem;
  resize: vertical;
  transition: border-color .2s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--lime-text);
}
.form__status { font-size: .88rem; color: var(--lime-text); min-height: 1.2em; }

.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}
.contact__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--pink);
  cursor: pointer;
}
.contact__consent a { color: var(--lime-text); text-decoration: underline; text-underline-offset: 2px; }
.contact__consent a:hover { color: var(--pink-text); }

/* ============ DOCUMENT MODAL (privacy policy / consent) ============ */
.doc-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.doc-modal.is-open { opacity: 1; visibility: visible; }
.doc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 7, .82);
  backdrop-filter: blur(6px);
}
.doc-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), var(--shadow-pink);
  padding: 40px;
}
.doc-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-tint);
  border: 1.5px solid var(--card-border);
  color: var(--text);
}
.doc-modal__close:hover { border-color: var(--pink); color: var(--pink); }
.doc-modal__close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.doc-modal__title { font-size: 1.2rem; margin: 0 34px 18px 0; }
.doc-modal__body {
  overflow-y: auto;
  padding-right: 10px;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.6;
}
.doc-modal__body h4 { color: var(--text); font-size: .98rem; margin: 22px 0 8px; }
.doc-modal__body h4:first-child { margin-top: 0; }
.doc-modal__body p { margin: 0 0 12px; }
.doc-modal__body ul { margin: 0 0 12px; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.doc-modal__body .doc-meta {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--surface-tint);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .84rem;
}
.doc-modal__body .doc-meta strong { color: var(--text); }
body.no-scroll { overflow: hidden; }
@media (max-width: 640px) {
  .doc-modal__panel { padding: 28px 20px 24px; }
}

/* ============ FOOTER ============ */
.site-footer { padding: 50px 0; border-top: 1px solid var(--card-border); position: relative; z-index: 2; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; font-size: .88rem; color: var(--text-muted); }
.footer__nav a:hover { color: var(--lime-text); }
.footer__copy { width: 100%; text-align: center; color: var(--text-muted); font-size: .78rem; margin-top: 10px; }
.footer__credit { width: 100%; text-align: center; color: var(--text-muted); font-size: .78rem; margin-top: 6px; }
.footer__credit-link {
  font-weight: 700;
  color: var(--text-muted);
  transition: color .3s ease;
}
.footer__credit-link:hover,
.footer__credit-link:focus-visible {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .about__grid, .jumping__grid, .contact__grid { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price-card--accent { transform: none; }
  .nav { display: none; }
  .burger { display: flex; }
  .header__phone { display: none; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(var(--bg-rgb), .97);
    backdrop-filter: blur(14px);
    padding: 30px 6%;
    gap: 22px;
    border-bottom: 1px solid var(--card-border);
  }
  .nav.open a { color: var(--text-muted); }
  .nav.open a:hover, .nav.open a.active { color: var(--text); }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .advantages { grid-template-columns: 1fr; }
  .warn-card { flex-direction: column; padding: 30px; }
  .warn-list { grid-template-columns: 1fr; }
  .contact__form { padding: 30px 24px; }
  .stats-strip { gap: 10px; }
  .jumping__video video { aspect-ratio: 9/13; }
}
