/* ============ TENNIS CAMP TURKEY 2026 ============ */
:root {
  --navy-900: #081c30;
  --navy-800: #0b2440;
  --navy-700: #0e2a47;
  --navy-600: #14355a;
  --cream: #f5e6c8;
  --cream-dark: #eed9ae;
  --gold: #d9b982;
  --lime: #b8d94c;
  --lime-dark: #9dbe33;
  --white: #ffffff;
  --text: #eaf1f8;
  --text-dim: #b9c8d8;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(3, 12, 22, .45);
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

/* ---------- typography ---------- */
.section__label {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  color: var(--lime);
  border: 1px solid rgba(184, 217, 76, .4);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: .01em;
}
.section__sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  max-width: 640px;
}
.section__head { text-align: center; margin-bottom: 48px; }
.section__head .section__sub { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-align: center;
}
.btn--accent {
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
  color: #14240a;
  box-shadow: 0 8px 26px rgba(184, 217, 76, .35);
}
.btn--accent:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(184, 217, 76, .5); }
.btn--ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
  border: 1px solid rgba(245, 230, 200, .35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }
.btn--wide { width: 100%; }
.btn:active { transform: translateY(0) scale(.98); }

/* pulse on accent CTAs */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 26px rgba(184, 217, 76, .35); }
  50% { box-shadow: 0 8px 40px rgba(184, 217, 76, .65); }
}
.hero__cta .btn--accent, .sticky-cta .btn--accent { animation: pulse-glow 2.6s ease-in-out infinite; }

/* ---------- header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.header.is-scrolled {
  background: rgba(8, 28, 48, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
  padding: 8px 0;
}
.header__inner { display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__ball { font-size: 26px; animation: bounce-ball 3s ease-in-out infinite; }
@keyframes bounce-ball {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px) rotate(20deg); }
}
.logo__text { font-family: var(--font-head); font-size: 15px; letter-spacing: .06em; color: var(--cream); }
.logo__text b { color: var(--lime); }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
  font-size: 14px; font-weight: 600; color: var(--text-dim);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--lime); transition: width .25s ease; border-radius: 2px;
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone { font-weight: 800; font-size: 14px; color: var(--cream); white-space: nowrap; }
.header__phone:hover { color: var(--lime); }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 3px; background: var(--cream); border-radius: 3px; transition: .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: -12% 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 28, 48, .96) 0%, rgba(8, 28, 48, .82) 42%, rgba(8, 28, 48, .35) 75%, rgba(8, 28, 48, .55) 100%);
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 48px; padding-top: 110px; padding-bottom: 80px; }
.hero__content { max-width: 640px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.badge--gold { background: rgba(245, 230, 200, .14); color: var(--cream); border: 1px solid rgba(245, 230, 200, .35); }
.badge--lime { background: rgba(184, 217, 76, .16); color: var(--lime); border: 1px solid rgba(184, 217, 76, .45); animation: pulse-glow 2.6s infinite; }
.hero__title {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(44px, 7.6vw, 92px); line-height: .98; color: var(--cream); letter-spacing: .01em;
}
.hero__title span {
  background: linear-gradient(120deg, var(--lime) 20%, #e6f7a0 50%, var(--lime) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero__subtitle { margin-top: 20px; font-size: clamp(16px, 1.8vw, 19px); color: var(--text); max-width: 540px; }
.hero__features { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; }
.hero__features li { font-size: 15px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.hero__features li::before { content: '🎾'; font-size: 13px; }
.hero__features b { color: var(--lime); font-size: 17px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note { margin-top: 16px; font-size: 13px; color: var(--gold); max-width: 480px; }

.hero__timer { margin-left: auto; padding: 28px 30px; border-radius: var(--radius); text-align: center; min-width: 300px; }
.hero__timer-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: 14px; color: var(--cream); margin-bottom: 14px; }
.timer { display: flex; align-items: center; justify-content: center; gap: 8px; }
.timer__cell span {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 38px;
  color: var(--lime); background: rgba(8, 28, 48, .6); border-radius: 12px;
  min-width: 62px; padding: 6px 8px; line-height: 1.2;
}
.timer__cell small { display: block; margin-top: 6px; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
.timer__sep { font-size: 28px; color: var(--cream); margin-top: -18px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(245, 230, 200, .5); border-radius: 14px; z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--lime); border-radius: 4px; animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- marquee ---------- */
.marquee { background: var(--lime); overflow: hidden; padding: 12px 0; transform: rotate(-1deg) scale(1.02); }
.marquee__track { display: flex; align-items: center; gap: 22px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; letter-spacing: .06em; color: #14240a; font-size: 15px; }
.marquee__track i { color: #14240a; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--navy-700); }
.section--photo { overflow: hidden; }
.section--photo__bg { position: absolute; inset: -14% 0; background-size: cover; background-position: center; will-change: transform; }
.section--photo__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 28, 48, .93), rgba(8, 28, 48, .82)); }
.section--photo .container { position: relative; z-index: 2; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(245, 230, 200, .12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .09); border-color: rgba(184, 217, 76, .45); }
.card__icon { font-size: 34px; margin-bottom: 14px; }
.card h3 { font-family: var(--font-body); font-weight: 800; font-size: 17px; color: var(--cream); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-dim); }
.card__big { font-family: var(--font-head); font-weight: 700; font-size: 54px; color: var(--lime); line-height: 1; margin-bottom: 10px; }

.highlight {
  margin: 44px auto 0;
  max-width: 760px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  color: var(--navy-800);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 19px);
  text-align: center;
  padding: 18px 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.highlight--left { margin: 26px 0; text-align: left; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.split__text .btn { margin-top: 26px; }
.split__note { margin-top: 18px; font-size: 14px; color: var(--text-dim); }
.checklist { margin-top: 20px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.checklist li::before { content: '✔'; color: var(--lime); font-weight: 800; flex-shrink: 0; }

/* polaroids */
.polaroids { position: relative; min-height: 480px; width: 100%; }
.polaroid {
  position: absolute; background: #fdfdf8; padding: 14px 14px 18px; border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45); transition: transform .4s ease;
}
.polaroid img { border-radius: 2px; }
.polaroid figcaption { font-family: 'Segoe Script', cursive; color: #333; font-size: 14px; text-align: center; padding-top: 10px; }
.polaroid--1 { width: 62%; top: 0; left: 0; transform: rotate(-5deg); z-index: 2; }
.polaroid--2 { width: 58%; bottom: 0; right: 0; transform: rotate(6deg); }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 3; }

/* ---------- timeline ---------- */
.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--lime), rgba(184, 217, 76, .1));
}
.timeline__item { position: relative; display: flex; gap: 16px; align-items: center; padding: 14px 0; }
.timeline__item::before {
  content: ''; position: absolute; left: -28px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 217, 76, .2);
}
.timeline__icon {
  font-size: 24px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(245, 230, 200, .15);
  border-radius: 12px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.timeline__item p { font-size: 16px; font-weight: 600; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 16px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(8, 28, 48, .85));
  font-size: 13px; font-weight: 700; color: var(--cream);
}
.hotel-feats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hotel-feats li {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(245, 230, 200, .15);
  padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 600;
}

/* ---------- glass ---------- */
.glass {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(245, 230, 200, .16);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- coaches ---------- */
.coaches { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.coach { display: flex; gap: 22px; padding: 26px; align-items: flex-start; transition: transform .3s ease; }
.coach:hover { transform: translateY(-6px); }
.coach img { width: 180px; border-radius: 14px; flex-shrink: 0; }
.coach__info h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 22px; color: var(--cream); margin-bottom: 12px; }
.coach__info ul { display: grid; gap: 8px; }
.coach__info li { font-size: 14px; color: var(--text-dim); display: flex; gap: 8px; }
.coach__info li::before { content: '🎾'; font-size: 11px; margin-top: 3px; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.chip {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 26px; font-size: 32px; min-width: 150px;
  transition: transform .3s ease, border-color .3s ease;
}
.chip span { font-size: 14px; font-weight: 700; color: var(--cream); text-align: center; }
.chip:hover { transform: translateY(-8px) rotate(-2deg); border-color: rgba(184, 217, 76, .5); }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 900px; margin: 0 auto; }
.price-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(245, 230, 200, .14);
  border-radius: 22px; padding: 34px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--main {
  border: 2px solid var(--lime);
  background: linear-gradient(160deg, rgba(184, 217, 76, .12), rgba(255, 255, 255, .04));
  position: relative; overflow: hidden;
}
.price-card--main::after {
  content: 'ХИТ'; position: absolute; top: 18px; right: -34px; transform: rotate(45deg);
  background: var(--lime); color: #14240a; font-weight: 800; font-size: 12px;
  padding: 5px 40px; letter-spacing: .12em;
}
.price-card__tag {
  align-self: flex-start; background: var(--lime); color: #14240a;
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
  padding: 7px 16px; border-radius: 100px;
}
.price-card__tag--outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.price-card__price { font-family: var(--font-head); font-weight: 700; font-size: 52px; color: var(--cream); line-height: 1; }
.price-card__cond { font-size: 13px; color: var(--gold); }
.price-card__pair { background: rgba(8, 28, 48, .5); border-radius: 12px; padding: 12px 16px; font-size: 14px; }
.price-card__pair b { color: var(--lime); }
.price-card__row { display: flex; align-items: baseline; gap: 14px; }
.price-card__row b { font-family: var(--font-head); font-size: 34px; color: var(--cream); white-space: nowrap; }
.price-card__row span { font-size: 13px; color: var(--text-dim); }
.price-card__list { display: grid; gap: 8px; margin: 6px 0; }
.price-card__list li { display: flex; gap: 10px; font-size: 14px; }
.price-card__list li::before { content: '✔'; color: var(--lime); font-weight: 800; }
.price-card__note { font-size: 12.5px; color: var(--text-dim); }
.price-card .btn { margin-top: auto; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fdfdf8; color: #1c2733; border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow); transition: transform .3s ease;
}
.review:hover { transform: translateY(-6px) rotate(-.5deg); }
.review:nth-child(4), .review:nth-child(5) { grid-column: span 1; }
.review__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review__name { font-weight: 800; }
.review__stars { color: #f5a623; letter-spacing: 2px; font-size: 14px; }
.review p { font-size: 14px; line-height: 1.55; color: #3d4a58; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(245, 230, 200, .12);
  border-radius: 14px; overflow: hidden; transition: border-color .3s;
}
.faq__item[open] { border-color: rgba(184, 217, 76, .5); background: rgba(255, 255, 255, .08); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 22px;
  font-weight: 700; font-size: 15.5px; color: var(--cream); position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--lime); transition: transform .3s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-dim); }

/* ---------- final ---------- */
.final { overflow: hidden; }
.final__bg { position: absolute; inset: -14% 0; background-size: cover; background-position: center; }
.final__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8, 28, 48, .97) 30%, rgba(8, 28, 48, .85)); }
.final .container { position: relative; z-index: 2; }
.split--form { grid-template-columns: 1fr 460px; align-items: start; }
.final__contacts { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.final__phone, .final__tg { font-weight: 800; font-size: 16px; color: var(--cream); transition: color .2s; }
.final__phone:hover, .final__tg:hover { color: var(--lime); }

/* ---------- forms ---------- */
.form-wrap { padding: 32px 30px; }
.form-wrap__title { font-family: var(--font-head); text-transform: uppercase; font-size: 24px; color: var(--cream); }
.form-wrap__sub { font-size: 14px; color: var(--text-dim); margin: 8px 0 22px; }
.lead-form { display: grid; gap: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-dim); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.field input, .field select {
  width: 100%; background: rgba(8, 28, 48, .55); border: 1px solid rgba(245, 230, 200, .2);
  border-radius: 12px; padding: 13px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder { color: rgba(185, 200, 216, .5); }
.field input:focus, .field select:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(184, 217, 76, .18); }
.field select option { background: var(--navy-800); }
.field input.is-error { border-color: #e06a6a; box-shadow: 0 0 0 3px rgba(224, 106, 106, .2); }
.form-agree { font-size: 11.5px; color: var(--text-dim); text-align: center; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); padding: 34px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer p { font-size: 13px; color: var(--text-dim); }
.footer__links { display: flex; gap: 22px; font-weight: 700; font-size: 14px; }
.footer__links a:hover { color: var(--lime); }

/* ---------- sticky cta ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; transform: translateY(120%); transition: transform .4s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .3s ease, visibility .3s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 14, 26, .75); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; width: 100%; max-width: 440px; padding: 34px 30px;
  background: var(--navy-700); transform: translateY(30px) scale(.96); transition: transform .35s cubic-bezier(.2, .9, .3, 1.2);
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 14px; right: 14px; background: rgba(255, 255, 255, .08);
  border: none; color: var(--cream); width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 15px; transition: background .2s, transform .2s;
}
.modal__close:hover { background: rgba(255, 255, 255, .18); transform: rotate(90deg); }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  display: flex; gap: 14px; align-items: center;
  background: #fdfdf8; color: #1c2733; border-radius: 14px; padding: 16px 22px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .5); font-size: 14px;
  transform: translateX(130%); transition: transform .45s cubic-bezier(.2, .9, .3, 1.15);
}
.toast.is-visible { transform: translateX(0); }
.toast__icon { font-size: 24px; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.16, .8, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger .reveal:nth-child(2) { transition-delay: .1s; }
.stagger .reveal:nth-child(3) { transition-delay: .2s; }
.stagger .reveal:nth-child(4) { transition-delay: .3s; }
.stagger .reveal:nth-child(5) { transition-delay: .4s; }
.stagger .reveal:nth-child(6) { transition-delay: .5s; }
.stagger .reveal:nth-child(7) { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__timer { margin-left: 0; }
  .coaches { grid-template-columns: 1fr; }
  .split--form { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__actions { margin-left: auto; }
  .header .btn--sm { display: none; }
  .nav.is-open {
    display: flex; position: fixed; inset: 0; background: rgba(8, 28, 48, .98);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px; z-index: 99;
  }
  .nav.is-open a { font-size: 22px; font-family: var(--font-head); text-transform: uppercase; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .polaroids { min-height: 380px; max-width: 420px; margin: 0 auto; justify-self: center; width: min(100%, 420px); }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item--big { grid-column: span 2; }
  .pricing { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .sticky-cta { display: block; }
  .coach { flex-direction: column; }
  .coach img { width: 100%; max-width: 260px; }
}
@media (max-width: 560px) {
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .timer__cell span { font-size: 28px; min-width: 52px; }
  .hero__timer { width: 100%; min-width: 0; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ---------- doc pages (oferta, agreement) ---------- */
.docpage { background: var(--navy-800); }
.docpage .header { position: sticky; }
.doc { padding: 60px 24px 80px; }
.doc h1 { font-family: var(--font-head); text-transform: uppercase; color: var(--cream); font-size: clamp(24px, 3.6vw, 40px); line-height: 1.15; margin-bottom: 10px; }
.doc-updated { color: var(--text-dim); font-size: 14px; margin-bottom: 34px; }
.doc h2 { font-family: var(--font-head); text-transform: uppercase; color: var(--lime); font-size: 19px; margin: 34px 0 12px; letter-spacing: .03em; }
.doc p, .doc li { font-size: 15px; color: var(--text); margin-bottom: 10px; line-height: 1.65; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc ul li { list-style: disc; }
.doc a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { color: #d4ec86; }
.doc-todo { color: var(--gold); background: rgba(217, 185, 130, .08); border: 1px dashed rgba(217, 185, 130, .4); border-radius: 6px; padding: 2px 6px; }
p.doc-todo { display: block; padding: 12px 16px; }
.doc-back { margin-left: auto; font-weight: 700; font-size: 14px; color: var(--cream); }
.doc-back:hover { color: var(--lime); }
.form-agree a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-agree a:hover { color: var(--lime); }
