/* ============================================================
   FITZONE GYM — Pro Tier Website
   Shared stylesheet (styles.css)
   Palette: near-black + electric lime + charcoal
   Typography: Anton (headlines) + Inter (body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #0A0A0A;
  --bg-charcoal: #1A1A1A;
  --bg-charcoal-2: #141414;
  --text: #FFFFFF;
  --text-muted: #A0A0A0;
  --accent: #D4FF00;
  --accent-glow: rgba(212, 255, 0, 0.10);
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --border: rgba(255, 255, 255, 0.08);
  --border-lime: #D4FF00;

  --radius-card: 8px;
  --radius-btn: 4px;

  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lime: 0 6px 20px rgba(212, 255, 0, 0.18);

  --font-head: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --header-h: 72px;
  --max-w: 1280px;
  --gutter: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Page fade-in transition ---------- */
body { animation: pageFadeIn 0.4s ease-out; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 96px 0; }
.section--charcoal { background: var(--bg-charcoal); }
.section--dark { background: var(--bg); }
.section--lime { background: var(--accent); color: #000; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-head .underline {
  display: inline-block;
  width: 60px; height: 4px;
  background: var(--accent);
  margin-top: 16px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 16px;
}
.section--lime .section-head h2,
.section--lime .section-head p { color: #000; }
.section--lime .section-head .underline { background: #000; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.05; text-transform: uppercase; letter-spacing: 1.5px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-btn);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #000;
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: var(--shadow-lime);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline:hover {
  background: #fff;
  color: #000;
  transform: scale(1.03);
}
.btn--lime-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--lime-outline:hover {
  background: var(--accent);
  color: #000;
  transform: scale(1.03);
  box-shadow: var(--shadow-lime);
}
.btn--ghost-dark {
  background: #000;
  color: var(--accent);
  border: 2px solid #000;
}
.btn--ghost-dark:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.btn--lg { padding: 20px 40px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  height: 64px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .dot { color: var(--accent); }
.logo .zone { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--accent); }
.nav-cta {
  margin-left: 12px;
  padding: 10px 20px !important;
  background: var(--accent);
  color: #000 !important;
  border-radius: var(--radius-btn);
  font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: scale(1.03); box-shadow: var(--shadow-lime); color: #000 !important; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 1100;
}
.hamburger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, top 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 29px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); background: var(--accent); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(85vw, 360px);
  height: 100vh;
  background: var(--bg-charcoal);
  z-index: 1050;
  padding: 96px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--accent);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: #fff;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--accent); padding-left: 8px; }
.mobile-nav a.active { color: var(--accent); }
.mobile-nav .btn {
  margin-top: 16px;
  color: #000 !important;
  background: var(--accent);
  border: 2px solid var(--accent);
  text-align: center;
  justify-content: center;
}
.mobile-nav .btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000 !important;
}
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.4) 50%,
    rgba(10,10,10,0.95) 100%);
  z-index: -1;
}
.hero__content { max-width: 720px; }
.hero__eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(56px, 11vw, 96px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 .lime { color: var(--accent); }
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 28px;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 12px); }
}

/* Smaller hero (inner pages) */
.hero--small { min-height: 50vh; padding: 140px 0 60px; }
.hero--small h1 {
  font-size: clamp(48px, 9vw, 72px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero--small p { color: var(--text-muted); font-size: clamp(16px, 2vw, 20px); }

/* ============================================================
   PROMO BANNER (marquee)
   ============================================================ */
/* EDIT PROMO TEXT HERE — change the text inside .promo__track in any HTML file */
.promo {
  background: var(--accent);
  color: #000;
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.promo__track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
.promo__track span { margin: 0 24px; }
.promo__track .dot { color: #000; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
  position: relative;
}
.stat::before {
  content: "";
  display: block;
  width: 40px; height: 4px;
  background: var(--accent);
  margin: 0 auto 16px;
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}
.stat__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ============================================================
   WHY FITZONE — feature cards
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-charcoal-2);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lime);
}
.feature-card .icon {
  margin-bottom: 20px;
  display: block;
}
.feature-card .icon-emoji {
  font-size: 48px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.feature-card .icon-svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  filter: drop-shadow(0 0 12px var(--accent-glow));
  stroke-width: 1.5;
}
.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   CLASS CARDS (shared — used on home + classes page)
   ============================================================ */
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.class-card {
  background: var(--bg-charcoal-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--border);
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lime);
  border-color: var(--accent);
}
.class-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.class-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.class-card:hover .class-card__img img { transform: scale(1.08); }
.class-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.class-card__name {
  font-family: var(--font-head);
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.class-card__instructor {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}
.class-card__meta {
  font-size: 14px;
  color: var(--text-muted);
}
.class-card__schedule {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.class-card__badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 10px;
}
.badge--available { background: rgba(16,185,129,0.15); color: var(--success); border: 1px solid var(--success); }
.badge--limited   { background: rgba(245,158,11,0.15); color: var(--warning); border: 1px solid var(--warning); }
.badge--full      { background: rgba(239,68,68,0.15); color: var(--danger); border: 1px solid var(--danger); }
.class-card .btn { margin-top: 16px; align-self: flex-start; }

/* Category pill (small, on classes page) — subtle style */
.cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  margin-top: 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card--popular {
  border: 2px solid var(--accent);
  transform: scale(1.03);
  box-shadow: var(--shadow-lime);
}
.price-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.price-card__badge--dark { background: #000; color: var(--accent); border: 1px solid var(--accent); }
.price-card__name {
  font-family: var(--font-head);
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-card__price {
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--accent);
  margin: 12px 0 4px;
  line-height: 1;
}
.price-card__price .currency { font-size: 28px; vertical-align: top; }
.price-card__period { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.price-card__features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.price-card__features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card .btn { width: 100%; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-charcoal-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  background: var(--bg-charcoal);
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.compare-table th:not(:first-child) { color: var(--accent); }
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #fff;
}
.compare-table td:not(:first-child) { color: var(--text-muted); }
.compare-table .check { color: var(--accent); font-weight: 700; }
.compare-table .cross { color: #555; }
.compare-table tr:last-child td { border-bottom: none; }

/* ============================================================
   GALLERY — Home Carousel + Main Gallery Grid
   ============================================================ */

/* ---- Home Page Carousel ("Inside FitZone") ---- */
.carousel {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-charcoal-2);
  box-shadow: var(--shadow-card);
  max-width: 100%;
  margin: 0 auto;
}
.carousel__viewport {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
}
@media (max-width: 768px) {
  .carousel__viewport { aspect-ratio: 4/3; }
}
.carousel__track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.6s var(--ease);
}
.carousel__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.carousel__slide:hover img { transform: scale(1.04); }
.carousel__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0) 50%,
    rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}
.carousel__caption {
  position: absolute;
  bottom: 56px; left: 0; right: 0;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.carousel__slide:hover .carousel__caption {
  opacity: 1;
  transform: translateY(0);
}
.carousel__dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.carousel__dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 12px var(--accent-glow);
}
.carousel__dot:hover { background: rgba(255,255,255,0.6); }
.carousel__dot.active:hover { background: var(--accent); }
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  z-index: 2;
}
.carousel__nav:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: var(--shadow-lime);
}
.carousel__prev { left: 16px; }
.carousel__next { right: 16px; }
@media (max-width: 768px) {
  .carousel__nav { width: 36px; height: 36px; font-size: 18px; }
  .carousel__prev { left: 8px; }
  .carousel__next { right: 8px; }
}

/* ---- Main Gallery Grid (3×2 paginated) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  min-height: 0;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-grid__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--bg-charcoal-2);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-grid__item:hover {
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lime);
}
.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__item .cat-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(10,10,10,0.85);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.gallery-grid__item:hover .cat-tag { opacity: 1; }

/* Gallery pagination */
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.gallery-page-dots {
  display: flex;
  gap: 6px;
}
.gallery-page-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.gallery-page-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.gallery-page-dot:hover { background: rgba(255,255,255,0.5); }
.gallery-page-dot.active:hover { background: var(--accent); }
.gallery-page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-charcoal);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.gallery-page-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.gallery-page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Gallery footer (View All link) */
.gallery-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.gallery-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 4px;
}
.gallery-view-all:hover { gap: 10px; }

/* "Back to all" link (when viewing single category) */
.gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s, gap 0.2s;
  cursor: pointer;
  margin-bottom: 24px;
}
.gallery-back:hover { color: var(--accent); gap: 10px; }

/* Gallery category title (when viewing single category) */
.gallery-cat-title {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-card);
  border: 2px solid var(--accent);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  z-index: 2001;
}
.lightbox__close:hover { color: var(--accent); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  background: rgba(212,255,0,0.1);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  transition: background 0.2s, color 0.2s;
}
.lightbox__nav:hover { background: var(--accent); color: #000; }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-charcoal-2);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testimonial-card .stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  flex: 1;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testimonial-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-card .author-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.testimonial-card .author-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CTA section
   ============================================================ */
.cta-section {
  background: var(--accent);
  color: #000;
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 8vw, 72px);
  color: #000;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.cta-section p {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 32px;
}
.cta-section .actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-section .wa-link {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  padding: 72px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--text-muted);
  font-size: 16px;
}
.footer-bottom .socials a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(212,255,0,0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.08) rotate(8deg); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: #000; }
@keyframes waPulse {
  0%   { box-shadow: 0 4px 16px rgba(212,255,0,0.25), 0 0 0 0 rgba(212,255,0,0.35); }
  70%  { box-shadow: 0 4px 16px rgba(212,255,0,0.25), 0 0 0 12px rgba(212,255,0,0); }
  100% { box-shadow: 0 4px 16px rgba(212,255,0,0.25), 0 0 0 0 rgba(212,255,0,0); }
}

/* ============================================================
   FILTER BAR (classes page)
   ============================================================ */
.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.filter-bar__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-tab:hover { color: var(--accent); border-color: var(--accent); }
.filter-tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.filter-select, .filter-search {
  background: var(--bg-charcoal);
  border: 1px solid var(--border);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.filter-select:focus, .filter-search:focus { border-color: var(--accent); }
.filter-search {
  flex: 1;
  min-width: 180px;
  background: var(--bg-charcoal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") 14px center / 16px no-repeat;
  padding-left: 40px;
}

/* Skeleton loading */
.skeleton-card {
  background: var(--bg-charcoal-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}
.skeleton-card .skel-img {
  aspect-ratio: 16/10;
  background: linear-gradient(90deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-card .skel-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-card .skel-line {
  height: 14px;
  background: linear-gradient(90deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.4s infinite;
}
.skeleton-card .skel-line.short { width: 50%; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty / error states */
.state-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.state-msg h3 { font-size: 28px; margin-bottom: 12px; color: #fff; }
.state-msg a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   BOOKING MODAL (Cal.com embed)
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.open { display: flex; opacity: 1; }
.modal__box {
  background: var(--bg-charcoal);
  border-radius: var(--radius-card);
  border: 1px solid var(--accent);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lime);
}
.modal__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal__title small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
  font-weight: 400;
}
.modal__close {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.modal__close:hover { color: var(--accent); transform: rotate(90deg); }
.modal__body { padding: 0; overflow-y: auto; flex: 1; }
.modal__body iframe { width: 100%; height: 500px; border: 0; display: block; background: #fff; }
.modal__fallback {
  padding: 32px;
  text-align: center;
}
.modal__fallback p { color: var(--text-muted); margin-bottom: 16px; }
.modal__fallback .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 700;
}

/* ============================================================
   ABOUT PAGE — story, timeline, team
   ============================================================ */
.story {
  max-width: 820px;
  margin: 0 auto;
}
.story p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.story p strong { color: #fff; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(212,255,0,0.2));
}
.timeline__item { text-align: center; position: relative; }
.timeline__dot {
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin: 20px auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(212,255,0,0.15);
}
.timeline__year {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.timeline__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coach-card {
  background: var(--bg-charcoal-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.coach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lime); border-color: var(--accent); }
.coach-card__img { aspect-ratio: 4/5; overflow: hidden; }
.coach-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.coach-card:hover .coach-card__img img { transform: scale(1.05); }
.coach-card__body { padding: 24px; }
.coach-card__name { font-family: var(--font-head); font-size: 22px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.coach-card__role { font-size: 14px; color: var(--accent); font-weight: 600; margin: 4px 0 12px; }
.coach-card__bio { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.coach-card__certs {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.coach-card__certs span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h3 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 4px; font-weight: 700; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--bg-charcoal);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: all 0.2s var(--ease);
}
.contact-item .icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item:hover .icon {
  border-color: var(--accent);
  background: rgba(212, 255, 0, 0.08);
  box-shadow: 0 0 12px var(--accent-glow);
}
.contact-item .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item .value { font-size: 15px; color: #fff; font-weight: 600; }
.contact-item .value a { transition: color 0.2s; }
.contact-item .value a:hover { color: var(--accent); }

/* Social media icon buttons (contact page) */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-icon-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-charcoal);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icon-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.contact-map, .contact-form-embed {
  background: var(--bg-charcoal-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe, .contact-form-embed iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.contact-section-head {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-item__q {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__q .toggle {
  color: var(--accent);
  font-size: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-item__q .toggle { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-item__a {
  max-height: 240px;
  padding: 0 24px 20px;
}

/* ============================================================
   LINK STYLES
   ============================================================ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 12px; text-decoration: underline; text-underline-offset: 4px; }
.section-foot-link { text-align: center; margin-top: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .class-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-4px); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .timeline::before { display: none; }
  .gallery-grid, .gallery-preview { column-count: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe, .contact-form-embed iframe { min-height: 380px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --gutter: 20px; }
  .section { padding: 64px 0; }
  .nav { display: none; }
  .hamburger { display: block; }
  .hero { padding: 100px 0 64px; min-height: 90vh; }
  .hero__actions .btn { flex: 1; min-width: 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .class-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-preview { column-count: 1; }
  .filter-bar { top: 56px; }
  .filter-bar__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .filter-tabs, .gallery-filter { flex-wrap: wrap; justify-content: center; overflow: visible; padding-bottom: 0; }
  .filter-tab { white-space: nowrap; }
  .filter-select, .filter-search { width: 100%; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 36px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .modal__box { max-height: 95vh; }
  .cta-section .actions { flex-direction: column; gap: 16px; }
  .cta-section .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 375px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: 52px; }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .section-head h2 { font-size: 36px; }
  .stat__num { font-size: 40px; }
  .price-card__price { font-size: 44px; }
  .whatsapp-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .btn { padding: 14px 24px; font-size: 13px; }
  .btn--lg { padding: 16px 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .promo__track { animation: none; }
  .scroll-indicator { animation: none; }
  .whatsapp-fab { animation: none; }
}
