/* ===================================================================
   24FITGOLD — Estilos
   Paleta: púrpura #ac87e7 · oscuro #252130 · blanco
   =================================================================== */

:root {
  --green: #ac87e7;
  --green-bright: #c4a5f0;
  --green-dark: #8f6cce;
  --black: #100e19;
  --black-soft: #1a1728;
  --black-card: #252130;
  --white: #ffffff;
  --gray: #9a9a9a;
  --gray-light: #e8e8e8;
  --gray-line: rgba(255, 255, 255, 0.08);

  --font-display: "Anton", "Archivo", sans-serif;
  --font-head: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-green: 0 14px 38px rgba(172, 135, 231, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

::selection { background: var(--green); color: var(--black); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ac87e7, #c4a5f0);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.btn--primary:hover { background: var(--green-bright); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(172,135,231,0.5); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--white); border-color: var(--gray-line); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--green); color: var(--green-bright); transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--gray-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.4s;
}
.header.scrolled .nav { height: 70px; }
.nav__logo { height: 55px; width: auto; transition: height 0.4s; }
.header.scrolled .nav__logo { height: 50px; }

.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-light);
  position: relative;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Grid plus-pattern ---------- */
.hero__grid-pattern,
.schedule__grid-pattern,
.cta-final__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(172,135,231,0.5) 1.5px, transparent 1.6px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 80% 10%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 80% 10%, #000 0%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(172,135,231,0.14), transparent 60%),
    linear-gradient(180deg, #16122a, var(--black));
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(172,135,231,0.12);
  border: 1px solid rgba(172,135,231,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  @media (max-width: 980px) {
    line-height: 6rem;
  }
  @media (max-width: 768px) {
    line-height: 4rem;
  }
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__subtitle .hl { color: var(--green-bright); font-weight: 600; display: inline-block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--green);
}
.hero__stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-top: 4px;
}

/* Hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; }

.hero__video-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 3px rgba(172,135,231,0.35);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  animation: float 6s ease-in-out infinite;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* Gradiente sutil sobre el vídeo */
.hero__video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.hero__logo { width: 280px; height: auto; }
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--black-card);
  color: var(--white);
  border: 1px solid var(--gray-line);
  padding: 11px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  z-index: 3;
}
.hero__chip i { color: var(--green-bright); }
.hero__chip--1 { top: 8%; left: -6%; animation: float 5s ease-in-out infinite; }
.hero__chip--2 { bottom: 18%; right: -8%; animation: float 5.5s ease-in-out infinite 0.5s; }
.hero__chip--3 { bottom: -4%; left: 6%; animation: float 6.5s ease-in-out infinite 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  z-index: 3;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--green);
  border-radius: 4px;
  animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green);
  overflow: hidden;
  padding: 16px 0;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.marquee__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 36px;
  text-transform: uppercase;
}
.marquee__track span i { font-size: 0.8rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections base ---------- */
.section { padding: 100px 0; position: relative; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--green-bright); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section__title .accent { color: var(--green); }
.section__title--light { color: var(--white); }
.section__lead {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--gray);
}
.section__lead--light { color: var(--gray-light); }

/* ---------- Services ---------- */
.services { background: var(--black-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (min-width: 760px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(172,135,231,0.4); background: #2e2840; }
.service-card:hover::before { transform: scaleX(1); }
.service-card--wide { grid-column: 1 / -1; }
.service-card__icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(172,135,231,0.12);
  color: var(--green-bright);
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-6deg); }
.service-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.service-card p { color: var(--gray); }

/* ---------- Benefits ---------- */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  padding: 34px 28px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--black-card), var(--black-soft));
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.benefit:hover { transform: translateY(-6px); border-color: rgba(172,135,231,0.4); }
.benefit__icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 18px;
}
.benefit h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.benefit p { color: var(--gray); font-size: 0.98rem; }

/* ---------- Schedule ---------- */
.schedule {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(172,135,231,0.16), transparent 60%),
    var(--black);
  overflow: hidden;
}
.schedule__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sched-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.sched-card:hover { transform: translateY(-8px); }
.sched-card--pm { background: var(--black-card); color: var(--white); border: 1px solid var(--gray-line); }
.sched-card__head { margin-bottom: 22px; }
.sched-card__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sched-card__time i { color: var(--green); }
.sched-card--pm .sched-card__time i { color: var(--green-bright); }
.sched-card__days { display: flex; flex-direction: column; gap: 12px; }
.sched-card__days li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  border: 2px solid var(--green);
  border-radius: 50px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.sched-card:hover .sched-card__days li { background: rgba(172,135,231,0.1); }
.sched-card--pm:hover .sched-card__days li { background: rgba(172,135,231,0.18); }
.schedule__cta { text-align: center; margin-top: 48px; position: relative; z-index: 2; }

/* ---------- Coaches ---------- */
.coaches { background: var(--black-soft); }
.coaches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
.coach-card {
  text-align: center;
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.coach-card:hover { transform: translateY(-8px); border-color: rgba(172,135,231,0.45); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

/* Foto de coach */
.coach-card__photo-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.coach-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.coach-card:hover .coach-card__photo { transform: scale(1.06); }

/* Gradiente sobre la foto */
.coach-card__photo-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--black-card) 0%, transparent 100%);
  pointer-events: none;
}

/* Info debajo */
.coach-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  padding: 22px 24px 2px;
}
.coach-card__role { color: var(--gray); margin: 4px 0 18px; font-size: 0.95rem; }
.coach-card__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-bright);
  border: 1px solid rgba(172,135,231,0.35);
  padding: 9px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  transition: background 0.3s, transform 0.3s;
}
.coach-card__ig:hover { background: rgba(172,135,231,0.12); transform: translateY(-2px); }

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.testimonial:hover { transform: translateY(-6px); border-color: rgba(172,135,231,0.4); }
.testimonial__stars { color: var(--green); margin-bottom: 16px; font-size: 0.95rem; letter-spacing: 2px; }
.testimonial blockquote { color: var(--gray-light); font-style: italic; margin-bottom: 22px; }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial__name { font-family: var(--font-head); font-weight: 700; }
.testimonial__meta { font-size: 0.85rem; color: var(--green); }

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}
.about__media { position: relative; display: flex; justify-content: center; }

/* Foto de comunidad */
.about__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.about__photo-wrap::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(172,135,231,0.45);
  border-radius: calc(var(--radius-lg) + 12px);
  z-index: -1;
}
.about__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease);
}
.about__photo-wrap:hover .about__photo { transform: scale(1.04); }

/* Legacy logo wrap (por si se usa en otro lugar) */
.about__logo-wrap {
  background: linear-gradient(160deg, #fff, #eee);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow);
  position: relative;
}
.about__logo-wrap::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(172,135,231,0.45);
  border-radius: calc(var(--radius-lg) + 12px);
  z-index: -1;
}
.about__logo { width: 240px; }
.about__sticker {
  position: absolute;
  bottom: -14px; right: 6px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-green);
  text-transform: uppercase;
}
.about__content .section__eyebrow { justify-content: flex-start; }
.about__content .section__title { text-align: left; }
.about__content p { color: var(--gray-light); margin-top: 16px; }
.about__list { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 500; }
.about__list i {
  color: var(--green);
  background: rgba(172,135,231,0.14);
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(172,135,231,0.25), transparent 60%),
    linear-gradient(160deg, #1a1728, var(--black));
  overflow: hidden;
  text-align: center;
}
.cta-final__inner { position: relative; z-index: 2; max-width: 760px; }
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.cta-final__title .accent { color: var(--green); }
.cta-final__text { color: var(--gray-light); font-size: 1.15rem; margin-bottom: 36px; }
.cta-final__text strong { color: var(--white); }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Location ---------- */
.location { background: var(--black-soft); }

.location__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: stretch;
}

.location__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.location__info {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__detail i {
  font-size: 1.2rem;
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.location__detail div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.location__detail strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.location__detail span {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.5;
}

.location__btn {
  margin-top: auto;
  justify-content: center;
}

@media (max-width: 860px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map-wrap { height: 300px; }
  .location__btn { width: 100%; }
}

/* ---------- Footer ---------- */
.footer { background: #060606; border-top: 1px solid var(--gray-line); padding-top: 70px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo { height: 52px; width: auto; margin-bottom: 18px; }
.footer__tagline { color: var(--gray); margin-bottom: 20px; max-width: 280px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-bright);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer__social:hover { color: var(--green); }
.footer__social + .footer__social { display: flex; }
.footer__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer__col a, .footer__col span {
  display: block;
  color: var(--gray);
  margin-bottom: 11px;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer__col span i { color: var(--green); margin-right: 6px; }
.footer__col a:hover { color: var(--green-bright); }
.footer__bottom { border-top: 1px solid var(--gray-line); padding: 22px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray);
  font-size: 0.88rem;
}
.footer__credit a { color: var(--green-bright); font-weight: 600; }
.footer__credit a:hover { color: var(--green); }

/* ---------- Floating IG ---------- */
.float-ig {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 999;
  transition: transform 0.3s var(--ease);
  animation: pulse-ig 2.6s infinite;
}
.float-ig:hover { transform: scale(1.1) rotate(8deg); }
@keyframes pulse-ig {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(220,39,67,0.5); }
  70% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 16px rgba(220,39,67,0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(220,39,67,0); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.badge--reveal { opacity: 0; animation: fadeUp 0.8s var(--ease) 0.2s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; margin-top: 32px; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__content .section__eyebrow,
  .about__content .section__title { text-align: center; justify-content: center; }
  .about__content { text-align: center; }
  .about__list li { justify-content: center; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--black-soft);
    border-left: 1px solid var(--gray-line);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    padding: 40px;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__toggle { display: flex; }
  .nav__link { font-size: 1.2rem; }
  .nav__cta { margin: 0; }
  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .schedule__cards { grid-template-columns: 1fr; }
  .coaches__grid { grid-template-columns: 1fr; }
  .hero__chip { display: none; }
  .hero__logo { width: 220px; }
  .hero__stats { gap: 26px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .hero__stat-num { font-size: 2.2rem; }
  .btn--lg { padding: 15px 26px; font-size: 0.95rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
