/* ═══════════════════════════════════════════════
   ИМПУЛЬС v2 — Dark Premium Fitness
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #1a1a1e;
  --text: #f5f5f2;
  --text-dim: #9d9da6;
  --accent: #d4ff3f;
  --accent-2: #a8e000;
  --accent-dark: #0c1400;
  --error: #ff6b5e;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.03);
  --radius: 20px;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: 'Unbounded';
  src: url('../assets/fonts/Unbounded-var.woff2') format('woff2-variations'),
       url('../assets/fonts/Unbounded-var.ttf') format('truetype-variations');
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope-var.woff2') format('woff2-variations'),
       url('../assets/fonts/Manrope-var.ttf') format('truetype-variations');
  font-weight: 200 800;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #000; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800; letter-spacing: 0.15em;
  background: linear-gradient(90deg, var(--text), var(--accent), var(--text));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.preloader__bar {
  width: 200px; height: 2px; background: var(--line);
  border-radius: 2px; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: var(--accent); transition: width 0.3s;
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 32px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  border: none; border-radius: 100px; cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--accent); color: var(--accent-dark);
  box-shadow: 0 0 0 rgba(212, 255, 63, 0);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 255, 63, 0.35);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 20px 40px; font-size: 16px; }
.btn--block { width: 100%; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px 40px;
}
.nav__logo { display: flex; align-items: center; gap: 20px; }
.nav__logo-img { height: 56px; width: auto; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: 0.07em;
}
.nav__links { display: flex; gap: 34px; }
.nav__link {
  font-size: 15px; font-weight: 600; color: var(--text-dim);
  transition: color 0.3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span {
  width: 26px; height: 2px; background: var(--text);
  transition: all 0.3s var(--ease);
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg-img {
  width: 100%; height: 120%; object-fit: cover;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0.55) 0%,
    rgba(10, 10, 11, 0.75) 60%,
    var(--bg) 100%
  );
}
.hero__content { position: relative; z-index: 2; max-width: min(1100px, 100%); }
.hero__tag {
  font-size: 14px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 96px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__line { display: block; }
.hero__line--accent .reveal-word {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(212, 255, 63, 0.4);
}
.reveal-word {
  display: block;
  max-width: 100%;
  transform: translateY(110%);
  opacity: 0;
  overflow-wrap: normal;
  hyphens: manual;
  transition: transform 1s var(--ease), opacity 0.8s var(--ease);
}
.loaded .reveal-word { transform: translateY(0); opacity: 1; }
.hero__line:nth-child(2) .reveal-word { transition-delay: 0.12s; }
.hero__line:nth-child(3) .reveal-word { transition-delay: 0.24s; }
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim); max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%; background: var(--accent);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint { to { top: 110%; } }

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1; transform: none;
}
/* Предотвращаем горизонтальный overflow от reveal-right */
.about, .contacts { overflow-x: clip; }

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--accent);
  color: #000;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 120s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; white-space: nowrap;
}
.marquee__track i {
  color: var(--accent); font-style: normal; font-size: 20px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ PROMO BANNER ═══════════ */
.promo-banner {
  background: linear-gradient(90deg, rgba(212,255,63,0.12), rgba(212,255,63,0.04));
  border-bottom: 1px solid rgba(212,255,63,0.25);
  padding: 24px 40px;
  position: relative;
  z-index: 5;
}
.promo-banner__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 30px;
}
.promo-banner__text { flex: 1; }
.promo-banner__text b {
  display: block; font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 700;
  color: var(--accent); margin-bottom: 6px;
}
.promo-banner__text p { color: var(--text-dim); font-size: 15px; line-height: 1.5; }
.promo-banner__img {
  width: 200px; height: 80px; object-fit: cover; border-radius: 10px;
  flex: 0 0 200px;
}
@media (max-width: 640px) {
  .promo-banner { padding: 18px 20px; }
  .promo-banner__inner { flex-direction: column; text-align: center; gap: 14px; }
  .promo-banner__img { width: 100%; max-width: 280px; flex: none; }
}

/* ═══════════ STATS ═══════════ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--bg); padding: 60px 30px; text-align: center;
  transition: background 0.4s;
}
.stat:hover { background: var(--bg-2); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 10px;
}
.stat__num::after { content: '+'; font-size: 0.6em; margin-left: 2px; }
.stat__label {
  font-size: 14px; font-weight: 600;
  color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ═══════════ SECTIONS COMMON ═══════════ */
section { padding: 110px 40px; }
.section-tag {
  font-size: 13px; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.section-tag--center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 26px;
}
.section-title--center { text-align: center; }
.section-desc {
  font-size: 17px; color: var(--text-dim);
  max-width: 520px; margin-bottom: 32px;
}

/* ═══════════ ABOUT ═══════════ */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.about__media-badge {
  position: absolute; bottom: 24px; left: 24px;
  padding: 10px 20px; border-radius: 100px;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
}
.about__features {
  list-style: none; margin-bottom: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.about__features li {
  padding-left: 28px; position: relative;
  color: var(--text-dim);
}
.about__features li b { color: var(--text); }
.about__features li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--accent); font-size: 14px;
}

/* ═══════════ GALLERY ═══════════ */
.gallery { background: var(--bg-2); padding-bottom: 90px; }
.gallery__slider {
  max-width: 1400px; margin: 40px auto 0;
  overflow: hidden;
}
.gallery__track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px;
  -webkit-overflow-scrolling: touch;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__item {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: center;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; position: relative;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.85);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.gallery__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 26px;
}
.gallery__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--line);
  cursor: pointer; padding: 0;
  transition: all 0.3s var(--ease);
}
.gallery__dots button.active {
  background: var(--accent); width: 26px; border-radius: 100px;
}
.gallery__nav {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 22px;
}
.gallery__btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line);
  color: var(--text); font-size: 18px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.gallery__btn:hover {
  background: var(--accent); color: var(--accent-dark);
  border-color: var(--accent);
}

/* ═══════════ TRAINERS ═══════════ */
.trainers { overflow: hidden; }
.trainers__track {
  display: flex; gap: 24px;
  max-width: 1400px; margin: 50px auto 0;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.trainers__track::-webkit-scrollbar { display: none; }
.trainer-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  transition: all 0.45s var(--ease);
}
.trainer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 255, 63, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.trainer-card__photo {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 3 / 3.4; margin-bottom: 20px;
}
.trainer-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.trainer-card:hover .trainer-card__photo img { transform: scale(1.05); }
.trainer-card__name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700; margin-bottom: 8px;
}
.trainer-card__role {
  font-size: 14px; font-weight: 700; color: var(--accent);
  margin-bottom: 8px;
}
.trainer-card__exp { font-size: 14px; color: var(--text-dim); }
.trainers__nav {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 34px;
}
.trainers__btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line);
  color: var(--text); font-size: 18px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.trainers__btn:hover {
  background: var(--accent); color: var(--accent-dark);
  border-color: var(--accent);
}

/* ═══════════ PRICING ═══════════ */
.pricing { background: var(--bg-2); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 50px auto 0;
}
.price-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 32px;
  display: flex; flex-direction: column;
  transition: all 0.45s var(--ease);
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 255, 63, 0.3);
}
.price-card--hot {
  background: linear-gradient(160deg, rgba(212, 255, 63, 0.12), rgba(212, 255, 63, 0.03));
  border-color: rgba(212, 255, 63, 0.45);
}
.price-card__badge {
  position: absolute; top: -13px; left: 32px;
  padding: 6px 16px; border-radius: 100px;
  background: var(--accent); color: var(--accent-dark);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; margin-bottom: 10px;
}
.price-card__desc {
  font-size: 15px; color: var(--text-dim); margin-bottom: 26px;
}
.price-card__price {
  margin: 18px 0 4px;
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--text);
}
.price-card__price span {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-dim);
}
.price-card--hot .price-card__price { color: var(--accent); }
.price-card__list {
  list-style: none; margin-bottom: 34px; flex: 1;
  display: flex; flex-direction: column; gap: 12px;
}
.price-card__list li {
  padding-left: 26px; position: relative;
  font-size: 15px; color: var(--text-dim);
}
.price-card__list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 800;
}

/* ═══════════ LEAD FORM ═══════════ */
.lead {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 255, 63, 0.08), transparent),
    var(--bg);
}
.lead__inner { max-width: 640px; margin: 0 auto; }
.lead .section-title { max-width: 720px; margin-inline: auto; }
.lead__form { margin-top: 44px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead__field { position: relative; }
.lead__field input {
  width: 100%; padding: 20px 22px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; color: var(--text);
  font-family: var(--font-body); font-size: 16px;
  transition: border-color 0.3s;
  outline: none;
}
.lead__field input:focus { border-color: var(--accent); }
.lead__field input.error { border-color: var(--error); }
.lead__field-error {
  margin: 6px 4px 0; font-size: 13px; color: var(--error);
}
.lead__field-error--consent { margin-top: 8px; }
.lead__form-error {
  margin: 0 0 16px; padding: 14px 18px;
  border: 1px solid var(--error); border-radius: 14px;
  color: var(--error); font-size: 14px; text-align: center;
}
.lead__field label {
  position: absolute; left: 22px; top: 20px;
  font-size: 16px; color: var(--text-dim);
  pointer-events: none;
  transition: all 0.25s var(--ease);
  background: transparent; padding: 0 4px;
}
.lead__field input:focus + label,
.lead__field input:not(:placeholder-shown) + label {
  top: -9px; font-size: 12px; color: var(--accent);
  background: var(--bg);
}
.lead__consent {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text-dim); cursor: pointer;
}
.lead__consent input {
  position: absolute; opacity: 0;
  width: 20px; height: 20px; margin: 0; cursor: pointer;
}
.lead__consent input:focus-visible + .lead__check {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.lead__check {
  flex: 0 0 20px; height: 20px; margin-top: 1px;
  border: 1px solid var(--line); border-radius: 6px;
  position: relative; transition: all 0.25s;
}
.lead__consent input:checked + .lead__check {
  background: var(--accent); border-color: var(--accent);
}
.lead__consent input:checked + .lead__check::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: 13px; font-weight: 800;
}
.lead__consent a { color: var(--accent); text-decoration: underline; }
.lead__form .btn--lg { margin-top: 8px; }
.lead__form.sent .lead__row,
.lead__form.sent .lead__field,
.lead__form.sent .lead__consent,
.lead__form.sent .btn { display: none; }
.lead__success {
  display: none; text-align: center; padding: 50px 20px;
}
.lead__form.sent .lead__success { display: block; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } }
.lead__success-icon {
  width: 70px; height: 70px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--accent-dark); font-weight: 800;
}
.lead__success h3 {
  font-family: var(--font-display); font-size: 24px; margin-bottom: 10px;
}
.lead__success p { color: var(--text-dim); }
.btn.loading { pointer-events: none; opacity: 0.7; }
.btn.loading span::after {
  content: '…'; animation: dots 1s steps(3) infinite;
}
@keyframes dots { 50% { content: ''; } }

/* ═══════════ CONTACTS ═══════════ */
.contacts { background: var(--bg-2); }
.contacts__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 50px; max-width: 1300px; margin: 50px auto 0;
  align-items: stretch;
}
.contacts__info { display: flex; flex-direction: column; gap: 26px; justify-content: center; }
.contacts__item { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.contacts__label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 6px; display: block;
}
.contacts__item b { display: none; }
.contacts__item p { color: var(--text); font-size: 16px; font-weight: 500; }
.contacts__item a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.25s; }
.contacts__item a:hover { border-bottom-color: var(--accent); }
.contacts__map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); min-height: 380px;
}
.contacts__map iframe {
  width: 100%; height: 100%; min-height: 380px; border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--line); padding: 50px 40px 30px; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto 40px; flex-wrap: wrap; gap: 20px;
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.1em;
}
.footer__brand img { width: 260px; height: auto; }
.footer__nav { display: flex; gap: 26px; }
.footer__nav a { font-size: 14px; color: var(--text-dim); transition: color 0.3s; }
.footer__nav a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim);
}
.footer__bottom a { color: var(--text-dim); text-decoration: underline; }
.footer__bottom a:hover { color: var(--accent); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1280px) {
  .hero__title { font-size: clamp(34px, 6.2vw, 72px); }
  .hero__line--accent .reveal-word { font-size: 0.78em; }
}

@media (max-width: 1024px) {
  .about { gap: 50px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  section { padding: 70px 20px; }
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav__logo-img { height: 44px; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 30px; opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease);
  }
  .nav__links.open { opacity: 1; visibility: visible; z-index: 99; }
  .nav__link { font-size: 24px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; z-index: 100; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 110px 20px 70px; min-height: auto; }
  .hero__title { font-size: clamp(24px, 7.4vw, 36px); line-height: 1.15; }
  .hero__line--accent .reveal-word { font-size: 0.72em; }
  .hero__sub { font-size: 15px; }
  .hero__scroll { display: none; }
  .hero__content { text-align: left; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__media { order: -1; }
  .contacts__grid { grid-template-columns: 1fr; gap: 34px; }
  .lead__row { grid-template-columns: 1fr; }
  .lead__form { margin-top: 34px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .trainer-card { flex: 0 0 260px; }
  .pricing__grid { max-width: 100%; padding: 0 4px; }
  .price-card { padding: 28px 22px; }
  .price-card__name { font-size: 20px; }
  .price-card__price { font-size: 24px; }
  .price-card__list li { font-size: 14px; }
  .lead__field input { font-size: 15px; padding: 18px 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lead__field label { font-size: 15px; left: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 44px); }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 36px 12px; }
  .stat__num { font-size: 34px; }
  .stat__label { font-size: 12px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .section-title { font-size: 26px; }
  .price-card { padding: 24px 18px; border-radius: 16px; }
  .price-card__badge { left: 18px; top: -11px; font-size: 11px; padding: 5px 12px; }
  .footer { padding: 40px 20px 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn { padding: 15px 26px; font-size: 14px; }
  .gallery__btn, .trainers__btn { width: 46px; height: 46px; }
  .lead__field input { font-size: 14px; padding: 16px 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .lead__field label { font-size: 14px; left: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 40px); }
  .lead__form { gap: 14px; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-word {
    opacity: 1; transform: none;
  }
}
