/* ================================================================
   IRON PULSE FITNESS — MAIN STYLESHEET
   Stack: Pure CSS + HTML + Vanilla JS
   ================================================================ */

:root {
  --lime: #BEFF00;
  --lime-dim: #98CC00;
  --lime-glow: rgba(190,255,0,0.15);
  --lime-glow-strong: rgba(190,255,0,0.3);
  --black: #080808;
  --charcoal: #111111;
  --charcoal2: #1A1A1A;
  --charcoal3: #242424;
  --border: rgba(255,255,255,0.07);
  --border-lime: rgba(190,255,0,0.2);
  --text-white: #F5F5F0;
  --text-gray: #888880;
  --text-mid: #BBBBAA;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--text-white);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--black); }
::-webkit-scrollbar-thumb { background:var(--lime); border-radius:2px; }

/* ── TYPOGRAPHY ── */
.display-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.88;
  letter-spacing: -1px;
}
.display-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
}
.display-md {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
}
.label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}
.body-lg { font-size:18px; line-height:1.7; }
.body-sm { font-size:14px; line-height:1.6; color:var(--text-gray); }

/* ── LAYOUT ── */
.container { max-width:1280px; margin:0 auto; padding:0 24px; }
.section { padding:100px 0; }
.section-sm { padding:60px 0; }

/* ── LIME ACCENT LINE ── */
.accent-line {
  display:inline-block; width:40px; height:2px;
  background:var(--lime); vertical-align:middle; margin-right:12px;
}

/* ── NOISE GRAIN OVERLAY ── */
body::after {
  content:''; position:fixed; inset:0; z-index:999;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:1;
}

/* ────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
#navbar {
  position: fixed; top:0; left:0; right:0; z-index: 900;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  display:flex; align-items:center; gap:10px;
}
.nav-logo-mark {
  width:36px; height:36px;
  background:var(--lime); display:flex; align-items:center;
  justify-content:center; font-family:'Bebas Neue',sans-serif;
  font-size:20px; color:var(--black); letter-spacing:0;
  clip-path: polygon(10% 0%,100% 0%,90% 100%,0% 100%);
}
.nav-logo-text {
  font-family:'Bebas Neue',sans-serif;
  font-size:22px; letter-spacing:3px;
}
.nav-logo-text span { color:var(--lime); }
.nav-links {
  display:flex; align-items:center; gap:36px; list-style:none;
}
.nav-links a {
  font-size:13px; letter-spacing:2px; text-transform:uppercase;
  color:var(--text-gray); transition:color 0.3s; font-weight:600;
  position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--lime); transition:width 0.3s;
}
.nav-links a:hover { color:var(--lime); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background:var(--lime); color:var(--black);
  padding:11px 24px; font-size:12px; letter-spacing:2px;
  text-transform:uppercase; font-weight:700;
  transition:background 0.3s, transform 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.nav-cta:hover { background:#D4FF20; transform:translateY(-1px); }
.hamburger {
  display:none; flex-direction:column; gap:5px; padding:6px;
}
.hamburger span {
  display:block; width:24px; height:2px; background:var(--text-white);
  transition:transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display:none; position:fixed; inset:0; z-index:850;
  background:rgba(8,8,8,0.98); backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center;
  gap:32px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:'Bebas Neue',sans-serif; font-size:48px;
  letter-spacing:4px; color:var(--text-white); transition:color 0.3s;
}
.mobile-menu a:hover { color:var(--lime); }

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
#hero {
  min-height: 100vh; position:relative;
  display:flex; align-items:flex-end;
  padding-bottom: 80px; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.95) 100%),
    linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1800&q=80') center/cover no-repeat;
  transform-origin: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform:scale(1); }
  to { transform:scale(1.06); }
}
.hero-grid-overlay {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(190,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero-content { position:relative; z-index:2; }
.hero-eyebrow {
  display:flex; align-items:center; gap:12px;
  margin-bottom:20px;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-headline {
  animation: fadeUp 1s ease 0.5s both;
  margin-bottom: 24px;
}
.hero-headline .line1 { display:block; color:var(--text-white); }
.hero-headline .line2 { display:block; color:var(--lime); }
.hero-sub {
  font-size:18px; color:var(--text-mid); max-width:500px;
  line-height:1.7; margin-bottom:40px;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-actions {
  display:flex; gap:16px; flex-wrap:wrap;
  animation: fadeUp 1s ease 0.9s both;
  margin-bottom: 60px;
}
.btn-lime {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--lime); color:var(--black);
  padding:16px 32px; font-size:13px; letter-spacing:2px;
  text-transform:uppercase; font-weight:700;
  transition:background 0.3s, transform 0.2s, box-shadow 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-lime:hover {
  background:#D4FF20; transform:translateY(-2px);
  box-shadow: 0 0 40px rgba(190,255,0,0.4);
}
.btn-outline {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,0.25); color:var(--text-white);
  padding:15px 32px; font-size:13px; letter-spacing:2px;
  text-transform:uppercase; font-weight:600;
  transition:border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color:var(--lime); color:var(--lime); transform:translateY(-2px);
}
.btn-wa {
  display:inline-flex; align-items:center; gap:10px;
  background:#25D366; color:#fff;
  padding:15px 28px; font-size:13px; letter-spacing:1px;
  text-transform:uppercase; font-weight:700;
  transition:background 0.3s, transform 0.2s;
}
.btn-wa:hover { background:#1ebe5a; transform:translateY(-2px); }

.hero-trust {
  display:flex; gap:32px; flex-wrap:wrap;
  animation: fadeUp 1s ease 1.1s both;
}
.trust-item {
  display:flex; align-items:center; gap:10px;
}
.trust-icon {
  width:36px; height:36px;
  border:1px solid var(--border-lime);
  display:flex; align-items:center; justify-content:center;
  color:var(--lime); font-size:16px;
}
.trust-text strong { display:block; font-size:15px; font-weight:700; color:#fff; }
.trust-text span { font-size:11px; letter-spacing:1px; color:var(--text-gray); text-transform:uppercase; }

/* Scroll indicator */
.scroll-hint {
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  animation: fadeUp 1s ease 1.5s both;
}
.scroll-hint span { font-size:10px; letter-spacing:3px; color:var(--text-gray); text-transform:uppercase; }
.scroll-line {
  width:1px; height:48px; background:linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform:scaleY(1); }
  50% { opacity:1; transform:scaleY(1.2); }
}

/* ────────────────────────────────────────────
   TICKER BAND
──────────────────────────────────────────── */
.ticker-band {
  background:var(--lime); padding:14px 0; overflow:hidden;
  position:relative; z-index:5;
}
.ticker-inner {
  display:flex; gap:0; white-space:nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-inner:hover { animation-play-state:paused; }
.ticker-item {
  font-family:'Bebas Neue',sans-serif; font-size:19px; letter-spacing:3px;
  color:var(--black); padding:0 32px; display:inline-flex; align-items:center; gap:24px;
}
.ticker-dot { width:5px; height:5px; background:rgba(0,0,0,0.3); border-radius:50%; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ────────────────────────────────────────────
   MEMBERSHIP PLANS
──────────────────────────────────────────── */
#plans { background:var(--charcoal); }
.plans-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  margin-top:64px;
  border:2px solid var(--border);
}
.plan-card {
  background:var(--charcoal2); padding:44px 36px;
  position:relative; overflow:hidden;
  transition:background 0.4s;
  display:flex; flex-direction:column;
}
.plan-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--border); transition:background 0.4s;
}
.plan-card.popular { background:var(--charcoal3); }
.plan-card.popular::before { background:var(--lime); }
.plan-badge {
  display:inline-block; background:var(--lime); color:var(--black);
  font-size:10px; letter-spacing:3px; font-weight:700;
  text-transform:uppercase; padding:4px 14px; margin-bottom:20px;
  align-self:flex-start;
}
.plan-name {
  font-family:'Bebas Neue',sans-serif; font-size:32px; letter-spacing:2px;
  color:#fff; margin-bottom:6px;
}
.plan-tagline { font-size:13px; color:var(--text-gray); margin-bottom:28px; }
.plan-price {
  margin-bottom:8px;
}
.plan-price .amount {
  font-family:'Bebas Neue',sans-serif; font-size:64px; color:var(--lime); line-height:1;
}
.plan-price .currency {
  font-size:22px; color:var(--text-gray); vertical-align:top; margin-top:12px; display:inline-block;
}
.plan-price .period { font-size:13px; color:var(--text-gray); margin-left:4px; }
.plan-divider { height:1px; background:var(--border); margin:28px 0; }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:14px; flex:1; }
.plan-features li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:14px; color:var(--text-mid); line-height:1.4;
}
.plan-features li .check {
  width:18px; height:18px; background:var(--lime-glow);
  border:1px solid var(--border-lime);
  display:flex; align-items:center; justify-content:center;
  color:var(--lime); font-size:11px; flex-shrink:0; margin-top:1px;
}
.plan-features li .cross {
  width:18px; height:18px;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-gray); font-size:14px; flex-shrink:0; margin-top:1px;
  opacity:0.4;
}
.plan-cta { margin-top:36px; }
.plan-cta .btn-lime { width:100%; justify-content:center; }
.plan-cta .btn-outline { width:100%; justify-content:center; }
.plan-glow {
  position:absolute; bottom:-60px; right:-60px;
  width:200px; height:200px; border-radius:50%;
  background:var(--lime-glow); filter:blur(60px);
  pointer-events:none;
}

/* ────────────────────────────────────────────
   TRAINERS
──────────────────────────────────────────── */
#trainers { background:var(--black); }
.trainers-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  margin-top:64px;
}
.trainer-card {
  position:relative; overflow:hidden; aspect-ratio:3/4;
  cursor:pointer;
}
.trainer-img {
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(40%) brightness(0.75);
  transition:transform 0.6s ease, filter 0.6s ease;
}
.trainer-card:hover .trainer-img {
  transform:scale(1.06); filter:grayscale(0%) brightness(0.6);
}
.trainer-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px;
  transition: all 0.4s;
}
.trainer-spec {
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--lime); margin-bottom:8px; font-weight:600;
}
.trainer-name {
  font-family:'Bebas Neue',sans-serif; font-size:28px; letter-spacing:2px;
  color:#fff; margin-bottom:6px;
}
.trainer-exp { font-size:12px; color:var(--text-gray); }
.trainer-bio {
  font-size:13px; color:var(--text-mid); line-height:1.5;
  max-height:0; overflow:hidden; transition:max-height 0.4s ease, opacity 0.4s;
  opacity:0; margin-top:0;
}
.trainer-card:hover .trainer-bio {
  max-height:120px; opacity:1; margin-top:12px;
}
.trainer-social {
  display:flex; gap:10px; margin-top:16px;
  transform:translateY(10px); opacity:0; transition:all 0.4s;
}
.trainer-card:hover .trainer-social { transform:translateY(0); opacity:1; }
.trainer-social a {
  width:32px; height:32px; border:1px solid rgba(190,255,0,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:var(--lime); transition:background 0.3s;
}
.trainer-social a:hover { background:var(--lime-glow); }

/* ────────────────────────────────────────────
   TRANSFORMATION SHOWCASE
──────────────────────────────────────────── */
#transform { background:var(--charcoal); }
.transform-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:64px;
}
.transform-card {
  background:var(--charcoal2); border:1px solid var(--border);
  overflow:hidden; position:relative;
  transition:border-color 0.4s, transform 0.4s;
}
.transform-card:hover { border-color:var(--border-lime); transform:translateY(-4px); }
.transform-img-wrap {
  position:relative; aspect-ratio:16/9; overflow:hidden;
}
.transform-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(30%) contrast(1.05);
  transition:filter 0.6s;
}
.transform-card:hover .transform-img-wrap img { filter:grayscale(0%); }
.ba-label {
  position:absolute; bottom:10px; left:10px;
  display:flex; gap:6px;
}
.ba-tag {
  font-size:9px; letter-spacing:2px; text-transform:uppercase; font-weight:700;
  padding:4px 10px;
}
.ba-tag.before { background:rgba(255,255,255,0.15); color:#fff; }
.ba-tag.after { background:var(--lime); color:var(--black); }
.transform-body { padding:24px; }
.transform-stat {
  display:flex; gap:20px; margin-bottom:16px; flex-wrap:wrap;
}
.t-stat {
  text-align:center;
}
.t-stat .val {
  font-family:'Bebas Neue',sans-serif; font-size:32px; color:var(--lime); line-height:1;
}
.t-stat .lbl { font-size:10px; letter-spacing:2px; color:var(--text-gray); text-transform:uppercase; }
.transform-quote {
  font-size:14px; color:var(--text-mid); line-height:1.6;
  font-style:italic; border-left:2px solid var(--lime);
  padding-left:12px; margin-bottom:16px;
}
.transform-name { font-size:13px; font-weight:700; color:#fff; }
.transform-duration { font-size:11px; color:var(--lime); letter-spacing:1px; }

/* ────────────────────────────────────────────
   CLASS SCHEDULE
──────────────────────────────────────────── */
#schedule { background:var(--black); }
.schedule-tabs {
  display:flex; gap:2px; margin-top:48px; flex-wrap:wrap;
}
.tab-btn {
  padding:10px 22px; font-size:12px; letter-spacing:2px;
  text-transform:uppercase; font-weight:700;
  background:var(--charcoal2); color:var(--text-gray);
  border:1px solid var(--border);
  transition:all 0.3s; cursor:pointer;
}
.tab-btn.active, .tab-btn:hover {
  background:var(--lime); color:var(--black); border-color:var(--lime);
}
.schedule-grid {
  margin-top:24px; display:grid;
  grid-template-columns:80px repeat(7,1fr); gap:2px;
}
.sched-header {
  background:var(--charcoal2); padding:12px 8px; text-align:center;
  font-size:11px; letter-spacing:2px; color:var(--text-gray);
  text-transform:uppercase; font-weight:600;
}
.sched-time {
  background:var(--charcoal3); padding:12px 8px; text-align:center;
  font-size:12px; color:var(--text-gray); display:flex;
  align-items:center; justify-content:center;
}
.sched-class {
  padding:12px 10px; font-size:12px; font-weight:600;
  display:flex; flex-direction:column; gap:3px;
  cursor:pointer; transition:opacity 0.3s;
  border-left:2px solid transparent;
}
.sched-class:hover { opacity:0.8; }
.sched-class .class-name { font-size:12px; font-weight:700; color:#fff; }
.sched-class .class-trainer { font-size:10px; color:var(--text-gray); }
.sched-class.hiit { background:rgba(255,80,60,0.12); border-left-color:#FF503C; }
.sched-class.strength { background:rgba(190,255,0,0.08); border-left-color:var(--lime); }
.sched-class.cardio { background:rgba(60,160,255,0.1); border-left-color:#3CA0FF; }
.sched-class.zumba { background:rgba(200,80,255,0.1); border-left-color:#C850FF; }
.sched-class.boxing { background:rgba(255,160,40,0.1); border-left-color:#FFA028; }
.sched-class.functional { background:rgba(0,220,180,0.1); border-left-color:#00DCB4; }
.sched-empty { background:var(--charcoal2); }
.class-legend {
  display:flex; flex-wrap:wrap; gap:16px; margin-top:20px;
}
.legend-item {
  display:flex; align-items:center; gap:8px;
  font-size:12px; color:var(--text-gray);
}
.legend-dot { width:10px; height:10px; border-radius:2px; }

/* ────────────────────────────────────────────
   GALLERY
──────────────────────────────────────────── */
#gallery { background:var(--charcoal); overflow:hidden; }
.gallery-masonry {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:auto;
  gap:8px; margin-top:48px;
}
.gallery-item {
  position:relative; overflow:hidden; cursor:pointer;
}
.gallery-item:nth-child(1) { grid-column:span 2; grid-row:span 2; }
.gallery-item:nth-child(4) { grid-column:span 2; }
.gallery-img {
  width:100%; height:100%; object-fit:cover; min-height:220px;
  filter:brightness(0.8) saturate(0.7);
  transition:transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover .gallery-img {
  transform:scale(1.06); filter:brightness(0.6) saturate(1.1);
}
.gallery-overlay {
  position:absolute; inset:0;
  background:rgba(8,8,8,0);
  display:flex; align-items:center; justify-content:center;
  transition:background 0.4s;
}
.gallery-item:hover .gallery-overlay { background:rgba(8,8,8,0.4); }
.gallery-label {
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
  color:#fff; font-weight:600; opacity:0;
  transform:translateY(10px); transition:all 0.4s;
}
.gallery-item:hover .gallery-label { opacity:1; transform:translateY(0); }

/* ────────────────────────────────────────────
   WHY CHOOSE US
──────────────────────────────────────────── */
#why { background:var(--black); }
.why-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
  margin-top:64px;
}
.why-img-wrap { position:relative; }
.why-main-img {
  width:100%; aspect-ratio:4/5; object-fit:cover;
  filter:brightness(0.85) saturate(0.8);
}
.why-badge {
  position:absolute; bottom:-24px; right:-24px;
  background:var(--lime); padding:24px 28px;
  text-align:center;
}
.why-badge-num {
  font-family:'Bebas Neue',sans-serif; font-size:52px;
  color:var(--black); line-height:1;
}
.why-badge-text {
  font-size:11px; letter-spacing:2px; color:rgba(0,0,0,0.6);
  text-transform:uppercase;
}
.why-features { display:flex; flex-direction:column; gap:0; }
.why-feat {
  display:flex; gap:20px; padding:24px 0;
  border-bottom:1px solid var(--border);
  transition:border-color 0.3s;
}
.why-feat:last-child { border-bottom:none; }
.why-feat:hover { border-color:var(--border-lime); }
.why-feat-icon {
  width:48px; height:48px; background:var(--lime-glow);
  border:1px solid var(--border-lime);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; flex-shrink:0; transition:background 0.3s;
}
.why-feat:hover .why-feat-icon { background:rgba(190,255,0,0.2); }
.why-feat-title {
  font-family:'Bebas Neue',sans-serif; font-size:22px;
  letter-spacing:1px; color:#fff; margin-bottom:4px;
}
.why-feat-desc { font-size:14px; color:var(--text-gray); line-height:1.6; }

/* ────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────── */
#testimonials { background:var(--charcoal); overflow:hidden; }
.testi-carousel {
  display:flex; gap:20px; margin-top:48px;
  animation:tCarousel 40s linear infinite;
  width:max-content;
}
.testi-carousel:hover { animation-play-state:paused; }
@keyframes tCarousel { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.testi-card {
  width:360px; flex-shrink:0;
  background:var(--charcoal2); border:1px solid var(--border);
  padding:32px; position:relative; overflow:hidden;
  transition:border-color 0.3s;
}
.testi-card:hover { border-color:var(--border-lime); }
.testi-quote-mark {
  font-family:'Bebas Neue',sans-serif; font-size:80px;
  color:var(--lime); opacity:0.15; line-height:0.7;
  margin-bottom:8px;
}
.testi-stars { color:var(--lime); font-size:14px; letter-spacing:2px; margin-bottom:16px; }
.testi-text {
  font-size:15px; line-height:1.7; color:var(--text-mid);
  font-style:italic; margin-bottom:24px;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:44px; height:44px; border-radius:50%;
  object-fit:cover; filter:grayscale(30%);
  border:2px solid var(--border-lime);
}
.testi-name { font-size:14px; font-weight:700; color:#fff; }
.testi-role { font-size:11px; color:var(--lime); letter-spacing:1px; text-transform:uppercase; }
.testi-plan {
  position:absolute; top:20px; right:20px;
  font-size:9px; letter-spacing:2px; text-transform:uppercase;
  color:var(--black); background:var(--lime); padding:3px 10px; font-weight:700;
}

/* ────────────────────────────────────────────
   LOCATION & CONTACT
──────────────────────────────────────────── */
#contact { background:var(--black); }
.contact-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:64px; align-items:start;
}
.contact-info-block { margin-bottom:32px; }
.contact-info-item {
  display:flex; gap:16px; padding:20px 0;
  border-bottom:1px solid var(--border);
}
.contact-info-item:last-child { border-bottom:none; }
.c-icon {
  width:44px; height:44px; border:1px solid var(--border-lime);
  display:flex; align-items:center; justify-content:center;
  font-size:18px; flex-shrink:0;
}
.c-label { font-size:11px; letter-spacing:2px; color:var(--text-gray); text-transform:uppercase; margin-bottom:4px; }
.c-value { font-size:16px; color:#fff; }
.hours-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:8px;
}
.hours-item { font-size:13px; color:var(--text-mid); }
.hours-item strong { color:#fff; }
.map-embed {
  width:100%; aspect-ratio:16/10; border:1px solid var(--border);
  filter:grayscale(80%) brightness(0.7) contrast(1.1);
  transition:filter 0.4s;
}
.map-embed:hover { filter:grayscale(40%) brightness(0.85); }
.contact-form { margin-top:32px; }
.form-group { margin-bottom:16px; }
.form-label {
  display:block; font-size:11px; letter-spacing:2px;
  text-transform:uppercase; color:var(--text-gray); margin-bottom:8px; font-weight:600;
}
.form-control {
  width:100%; background:var(--charcoal2);
  border:1px solid var(--border); color:var(--text-white);
  padding:14px 18px; font-family:'Syne',sans-serif; font-size:15px;
  outline:none; transition:border-color 0.3s;
  -webkit-appearance:none;
}
.form-control:focus { border-color:var(--lime); }
.form-control::placeholder { color:var(--text-gray); }
textarea.form-control { height:110px; resize:vertical; }
select.form-control { cursor:pointer; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-submit { width:100%; margin-top:8px; }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer {
  background:var(--charcoal); border-top:1px solid var(--border);
  padding:64px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid var(--border);
}
.footer-brand-logo {
  font-family:'Bebas Neue',sans-serif; font-size:28px; letter-spacing:4px;
  margin-bottom:16px; display:flex; align-items:center; gap:10px;
}
.footer-brand-logo span { color:var(--lime); }
.footer-tagline { font-size:14px; color:var(--text-gray); line-height:1.7; max-width:260px; margin-bottom:24px; }
.footer-socials { display:flex; gap:10px; margin-bottom:28px; }
.footer-social-link {
  width:40px; height:40px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--text-gray); transition:all 0.3s;
}
.footer-social-link:hover { border-color:var(--lime); color:var(--lime); }
.newsletter-form { display:flex; gap:0; }
.newsletter-input {
  flex:1; background:var(--charcoal3); border:1px solid var(--border);
  border-right:none; color:#fff; padding:12px 16px;
  font-family:'Syne',sans-serif; font-size:13px; outline:none;
  transition:border-color 0.3s;
}
.newsletter-input:focus { border-color:var(--lime); }
.newsletter-input::placeholder { color:var(--text-gray); }
.newsletter-btn {
  background:var(--lime); color:var(--black); padding:12px 20px;
  font-size:18px; transition:background 0.3s;
}
.newsletter-btn:hover { background:#D4FF20; }
.footer-col-title {
  font-size:12px; letter-spacing:3px; text-transform:uppercase;
  color:var(--lime); font-weight:700; margin-bottom:20px;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-links a {
  font-size:14px; color:var(--text-gray); transition:color 0.3s;
  display:flex; align-items:center; gap:6px;
}
.footer-links a::before {
  content:'—'; font-size:10px; color:var(--lime); opacity:0; transition:opacity 0.3s;
}
.footer-links a:hover { color:#fff; }
.footer-links a:hover::before { opacity:1; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:13px; color:var(--text-gray); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:13px; color:var(--text-gray); transition:color 0.3s; }
.footer-legal a:hover { color:var(--lime); }

/* ────────────────────────────────────────────
   FLOATING ELEMENTS
──────────────────────────────────────────── */
.wa-float {
  position:fixed; bottom:32px; right:32px; z-index:800;
  background:#25D366; width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:#fff; box-shadow:0 4px 24px rgba(37,211,102,0.4);
  animation:waPulse 3s ease-in-out infinite;
  transition:transform 0.3s;
}
.wa-float:hover { transform:scale(1.12); }
@keyframes waPulse {
  0%,100% { box-shadow:0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow:0 4px 40px rgba(37,211,102,0.7); }
}
.mobile-bottom-cta {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:700;
  background:rgba(8,8,8,0.95); backdrop-filter:blur(16px);
  padding:12px 16px; gap:10px;
  border-top:1px solid var(--border);
}
.mobile-bottom-cta .btn-lime, .mobile-bottom-cta .btn-wa {
  flex:1; justify-content:center; font-size:12px; padding:14px 12px;
}

/* ────────────────────────────────────────────
   REVEAL ANIMATIONS
──────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-l { opacity:0; transform:translateX(-40px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-l.visible { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(40px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-r.visible { opacity:1; transform:translateX(0); }
.reveal-scale { opacity:0; transform:scale(0.95); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale.visible { opacity:1; transform:scale(1); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}

/* ────────────────────────────────────────────
   SECTION HEADINGS
──────────────────────────────────────────── */
.section-head { max-width:640px; }
.section-head.center { max-width:none; text-align:center; margin:0 auto; }
.section-eyebrow {
  display:flex; align-items:center; gap:10px;
  margin-bottom:16px;
}
.section-eyebrow.center { justify-content:center; }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width:1024px) {
  .trainers-grid { grid-template-columns:repeat(2,1fr); }
  .plans-grid { grid-template-columns:1fr; gap:12px; }
  .plan-card { padding:32px 28px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:1fr; gap:48px; }
  .why-img-wrap { max-width:600px; }
}

@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  #hero { padding-bottom:120px; }
  .hero-sub { font-size:16px; }
  .hero-actions { flex-direction:column; }
  .hero-trust { gap:20px; }
  .transform-grid { grid-template-columns:1fr; }
  .gallery-masonry { grid-template-columns:repeat(2,1fr); }
  .gallery-item:nth-child(1) { grid-column:span 2; grid-row:span 1; }
  .gallery-item:nth-child(4) { grid-column:span 1; }
  .contact-inner { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .schedule-grid { grid-template-columns:60px repeat(7,1fr); font-size:10px; }
  .sched-class .class-name { font-size:9px; }
  .sched-class .class-trainer { display:none; }
  .mobile-bottom-cta { display:flex; }
  .wa-float { bottom:80px; right:16px; width:50px; height:50px; font-size:22px; }
  .form-row { grid-template-columns:1fr; }
  .section { padding:72px 0; }
  .trainers-grid { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-legal { justify-content:center; }
}

@media (max-width:480px) {
  .schedule-grid { grid-template-columns:50px repeat(3,1fr); }
  .gallery-masonry { grid-template-columns:1fr; }
  .gallery-item:nth-child(1) { grid-column:span 1; }
  .gallery-item:nth-child(4) { grid-column:span 1; }
  .trainers-grid { grid-template-columns:1fr; }
}

/* ── PROGRESS BAR ── */
#prog-bar {
  position:fixed; top:0; left:0; height:2px; width:0%;
  background:linear-gradient(90deg,var(--lime),#D4FF20);
  z-index:1000; transition:width 0.1s;
}