/* ═══════════════════════════════════════════════════════════
   Campus Modern Homepage — Aloysius Fitness
   Neon blue + cool navy · serif headlines · energetic gym feel
   ═══════════════════════════════════════════════════════════ */

:root {
  --black: #070B14;
  --surface: #0C1220;
  --card: #121A2B;
  --border: #1E2A3F;
  --accent: #00C2FF;
  --accent-dim: #0088E0;
  --accent-bright: #4DD4FF;
  --accent-subtle: rgba(0, 194, 255, 0.10);
  --accent-muted: rgba(0, 194, 255, 0.16);
  --accent-border: rgba(0, 194, 255, 0.38);
  --accent-ghost: rgba(0, 194, 255, 0.08);
  --accent-gradient: linear-gradient(135deg, #4DD4FF 0%, #00C2FF 50%, #0088E0 100%);
  --accent-glow: 0 4px 24px rgba(0, 194, 255, 0.32);
  --on-accent: #041018;
  --white: #E8EEF7;
  --muted: #7A8BA3;
  --text: #C8D2E0;

  --ff-display: 'Instrument Serif', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --hp-radius: 14px;
  --hp-radius-sm: 8px;
  --hp-radius-lg: 22px;
  --hp-section-pad: clamp(4rem, 8vw, 6.5rem);
  --hp-band-alt: #0A101C;
  --hp-glow: 0 0 40px rgba(0, 194, 255, 0.15);
  --hp-max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.hp-campus {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: 4.5rem;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--accent); color: var(--on-accent);
  padding: .5rem 1rem; z-index: 9999; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { max-width: var(--hp-max); }

/* ── Typography ── */
.hp-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: .75rem;
}
.hp-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hp-title-lg {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.015em;
}
.hp-accent { color: var(--accent-bright); font-style: italic; }
.hp-lede {
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.7;
  font-size: 1.02rem;
}
.hp-section { padding: var(--hp-section-pad) 0; }
.hp-section--alt { background: var(--hp-band-alt); }
.hp-section--surface { background: var(--surface); }
.hp-section-head { margin-bottom: 2.5rem; }

/* ── Buttons ── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 1.7rem;
  border-radius: var(--hp-radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.hp-btn:hover { transform: translateY(-2px); text-decoration: none; }
.hp-btn-primary {
  background: var(--accent-gradient);
  background-color: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--accent-glow);
}
.hp-btn-primary:hover { color: var(--on-accent); box-shadow: 0 6px 28px rgba(0, 194, 255, 0.45); }
.hp-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
}
.hp-btn-outline:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}
.btn-lime, .btn-lime.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.7rem; border-radius: var(--hp-radius-sm); border: none;
  background: var(--accent-gradient); background-color: var(--accent);
  color: var(--on-accent); box-shadow: var(--accent-glow);
  transition: transform .15s, box-shadow .2s;
}
.btn-lime:hover, .btn-lime.btn:hover {
  color: var(--on-accent); transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 194, 255, 0.45); text-decoration: none;
}
.btn-ghost, .btn-ghost.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.7rem; border-radius: var(--hp-radius-sm);
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--accent-bright); color: var(--accent-bright); transform: translateY(-2px); text-decoration: none; }

/* Legacy class bridges used by shared markup */
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-bright); }
.display-hero, .display-lg, .display-md { font-family: var(--ff-display); font-weight: 400; color: var(--white); letter-spacing: -0.01em; line-height: 1.12; }
.display-hero { font-size: clamp(2.8rem, 7vw, 5rem); }
.display-lg { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.display-md { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.accent-word { color: var(--accent-bright); font-style: italic; }
.section-gap { padding: var(--hp-section-pad) 0; }
.half-gap { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.divider { border-top: 1px solid var(--border); }

/* ── Offer banner + Navbar ── */
.hp-offer {
  background: linear-gradient(90deg, #0088E0, #00C2FF 50%, #4DD4FF);
  color: var(--on-accent);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .82rem;
  font-weight: 600;
}
.hp-offer a {
  color: var(--on-accent);
  font-weight: 800;
  text-decoration: underline;
  margin-left: .5rem;
}
.offer-banner {
  background: linear-gradient(90deg, #0088E0, #00C2FF 50%, #4DD4FF);
  color: var(--on-accent);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem;
}
.offer-banner a { color: var(--on-accent); font-weight: 800; text-decoration: underline; }

.navbar-ff {
  position: sticky; top: 0; z-index: 1000;
  padding: .85rem 0;
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.navbar-ff.scrolled {
  background: rgba(7, 11, 20, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.navbar-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-brand span { color: var(--accent-bright); font-style: italic; }
.nav-brand:hover { color: var(--white); }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  color: var(--white); width: 42px; height: 42px; border-radius: var(--hp-radius-sm);
  font-size: 1.25rem; cursor: pointer;
}
.navbar-panel { display: flex; align-items: center; gap: 1.5rem; }
.nav-links {
  display: flex; list-style: none; gap: 1.35rem; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .88rem; font-weight: 500;
  position: relative; padding: .25rem 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }
.navbar-actions { display: flex; align-items: center; gap: .65rem; }

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .navbar-panel {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: rgba(7, 11, 20, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
  }
  .navbar-panel.open { display: flex; }
  .nav-links { flex-direction: column; gap: .85rem; }
  .navbar-actions { flex-direction: column; width: 100%; }
  .navbar-actions .btn-lime, .navbar-actions .btn-ghost, .navbar-actions .hp-btn { width: 100%; }
}

/* ── Hero band ── */
.hp-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(0, 194, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 136, 224, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0A1628 0%, #070B14 55%, #050810 100%);
}
.hp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,20,.92) 0%, rgba(7,11,20,.55) 55%, rgba(7,11,20,.35) 100%);
  pointer-events: none;
}
.hp-hero-inner {
  position: relative; z-index: 1;
  padding: 5.5rem 0 4rem;
  width: 100%;
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}
.hp-hero-copy .hp-title-lg { margin-bottom: 1.1rem; }
.hp-hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.75rem 0 1.5rem; }
.hp-hero-stats {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.hp-stat-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(18, 26, 43, 0.85);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .82rem;
  color: var(--text);
  backdrop-filter: blur(8px);
}
.hp-stat-chip strong { color: var(--white); }
.hp-stat-chip i { color: var(--accent); }

.hp-hero-visual { position: relative; }
.hp-hero-frame {
  position: relative;
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border: 1px solid var(--accent-border);
  box-shadow: var(--hp-glow), 0 24px 60px rgba(0,0,0,.45);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  background: var(--card);
}
.hp-hero-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hp-hero-frame-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--accent-muted);
  background: linear-gradient(160deg, #0a1628, var(--black));
}
.hp-hero-float {
  position: absolute;
  display: flex; align-items: center; gap: .65rem;
  background: rgba(12, 18, 32, 0.92);
  border: 1px solid var(--accent-border);
  border-radius: var(--hp-radius);
  padding: .7rem 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
  font-size: .85rem;
  color: var(--white);
  z-index: 2;
}
.hp-hero-float .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}
.hp-hero-float .lbl { font-size: .68rem; color: var(--muted); }
.hp-hero-float.f1 { left: -1rem; bottom: 18%; }
.hp-hero-float.f2 { right: -0.5rem; top: 14%; }

@media (max-width: 991px) {
  .hp-hero-grid { grid-template-columns: 1fr; }
  .hp-hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .hp-hero-frame { transform: none; max-height: 380px; }
  .hp-hero-float.f1 { left: .5rem; }
  .hp-hero-float.f2 { right: .5rem; }
  .hp-hero-inner { padding-top: 3.5rem; }
}

/* Legacy hero bridge (if any leftover) */
.hero { position: relative; min-height: 70vh; }
.hero-bg-text { display: none; }

/* ── Service ribbon ── */
.hp-ribbon {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hp-ribbon-track {
  display: flex; gap: .75rem;
  padding: .9rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hp-ribbon-track::-webkit-scrollbar { display: none; }
.hp-ribbon-item {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.hp-ribbon-item i { color: var(--accent); }
.ticker-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.ticker-track { display: flex; gap: .75rem; padding: .9rem 1rem; overflow-x: auto; scrollbar-width: none; }
.ticker-item {
  flex: 0 0 auto; padding: .45rem 1rem; border-radius: 999px;
  background: var(--accent-ghost); border: 1px solid var(--accent-border);
  color: var(--white); font-size: .82rem; font-weight: 600; white-space: nowrap;
}
.ticker-sep { display: none; }

/* ── Stats tiles ── */
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hp-metric {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--hp-radius);
  padding: 1.4rem 1.1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.hp-metric::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
}
.hp-metric:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: var(--hp-glow);
}
.hp-metric-val {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent-bright);
  line-height: 1.1;
}
.hp-metric-lbl { font-size: .82rem; color: var(--muted); margin-top: .35rem; }
.stat-block { text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--accent-bright); }
.stat-label { font-size: .82rem; color: var(--muted); }
.stat-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(18, 26, 43, 0.85); border: 1px solid var(--accent-border);
  border-radius: 999px; padding: .45rem .9rem; font-size: .82rem;
}

@media (max-width: 767px) {
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cards / Bento ── */
.hp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--hp-radius);
  padding: 1.35rem;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  height: 100%;
}
.hp-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: var(--hp-glow);
}
.hp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hp-bento > :first-child { grid-column: span 2; }
.hp-service {
  display: flex; flex-direction: column; gap: .75rem;
}
.hp-service-head {
  display: flex; align-items: center; gap: .85rem;
}
.hp-service-icon {
  width: 48px; height: 48px; border-radius: var(--hp-radius-sm);
  background: var(--accent-subtle); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.25rem; flex-shrink: 0;
}
.hp-service-title {
  font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 0;
}
.hp-service-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; margin: 0; }

.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--hp-radius);
  padding: 1.35rem; height: 100%; transition: border-color .2s, transform .15s, box-shadow .2s;
}
.service-card:hover { border-color: var(--accent-border); transform: translateY(-3px); box-shadow: var(--hp-glow); }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--hp-radius-sm);
  background: var(--accent-subtle); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.25rem; margin-bottom: .85rem;
}
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.service-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

@media (max-width: 991px) {
  .hp-bento { grid-template-columns: 1fr 1fr; }
  .hp-bento > :first-child { grid-column: span 2; }
}
@media (max-width: 575px) {
  .hp-bento { grid-template-columns: 1fr; }
  .hp-bento > :first-child { grid-column: span 1; }
}

/* ── Gallery snap strip ── */
.hp-gallery-nav { margin-bottom: 1rem; }
.hp-gallery-swiper { overflow: hidden; }
.hp-gallery-swiper .swiper-slide {
  width: 320px;
  height: auto;
}
.hp-gallery-card {
  height: 100%;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--hp-radius); overflow: hidden;
  cursor: grab; transition: border-color .2s, box-shadow .2s;
  touch-action: pan-y;
  user-select: none;
}
.hp-gallery-card:active { cursor: grabbing; }
.hp-gallery-card:hover { border-color: var(--accent-border); box-shadow: var(--hp-glow); }
.hp-gallery-card.featured { border-color: var(--accent-border); }
.hp-gallery-img {
  aspect-ratio: 8/5;
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0A1628 0%, #070B14 55%, #041018 100%);
}
.hp-gallery-img.tone-a { background: linear-gradient(155deg, #0B1C33 0%, #07111F 45%, #00C2FF22 100%); }
.hp-gallery-img.tone-b { background: linear-gradient(155deg, #0A1528 0%, #06101C 50%, #0088E028 100%); }
.hp-gallery-img.tone-c { background: linear-gradient(155deg, #0C2038 0%, #070B14 48%, #4DD4FF1F 100%); }
.hp-gallery-img.tone-d { background: linear-gradient(155deg, #091828 0%, #050A12 52%, #00C2FF1A 100%); }
.hp-gallery-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* Cool-tint old warm/orange seed art toward campus neon blue */
  filter: hue-rotate(175deg) saturate(0.85) brightness(0.72) contrast(1.05);
  opacity: 0.45;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.hp-gallery-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,20,.15) 0%, rgba(7,11,20,.55) 55%, rgba(7,11,20,.92) 100%),
              radial-gradient(ellipse 70% 50% at 70% 20%, rgba(0,194,255,.22), transparent 60%);
  pointer-events: none; z-index: 1;
}
.hp-gallery-icon {
  position: absolute; right: 1rem; top: 1rem; z-index: 2;
  font-size: 1.6rem; color: var(--accent-bright); opacity: .85;
}
.hp-gallery-badge {
  position: relative; z-index: 2;
  margin: 0 0 .9rem .9rem;
  display: inline-block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 6px;
  background: var(--accent-gradient);
  color: var(--on-accent);
  box-shadow: var(--accent-glow);
}
.hp-gallery-body { padding: 1rem 1.1rem 1.2rem; }
.hp-gallery-title { font-size: .95rem; font-weight: 700; color: var(--white); margin: 0 0 .3rem; }
.hp-gallery-title i { color: var(--accent); margin-right: .35rem; }
.hp-gallery-desc { font-size: .82rem; color: var(--muted); margin: 0; }

@media (max-width: 767px) {
  .hp-gallery-swiper .swiper-slide {
    width: min(82vw, 300px);
  }
  .hp-gallery-badge {
    font-size: .62rem;
    padding: .3rem .55rem;
    margin: 0 0 .75rem .75rem;
  }
  .hp-gallery-body { padding: .9rem 1rem 1.05rem; }
}

.infra-gallery { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; }
.infra-card {
  flex: 0 0 min(78%, 340px); scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--hp-radius); overflow: hidden; cursor: pointer;
}
.infra-featured { flex-basis: min(88%, 420px); border-color: var(--accent-border); }
.infra-img-wrap { aspect-ratio: 8/5; background: var(--black); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.infra-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.infra-placeholder-icon { font-size: 2rem; color: var(--accent-muted); }
.infra-body { padding: 1rem 1.1rem 1.2rem; }
.infra-title { font-size: .95rem; font-weight: 700; color: var(--white); }
.infra-desc { font-size: .82rem; color: var(--muted); }

/* ── Trainers ── */
.hp-trainers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hp-trainer {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--hp-radius); overflow: hidden;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.hp-trainer:hover { border-color: var(--accent-border); transform: translateY(-3px); box-shadow: var(--hp-glow); }
.hp-trainer-avatar {
  aspect-ratio: 1; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hp-trainer-avatar::after {
  content: ''; position: absolute; inset: 10px;
  border-radius: 50%; border: 2px solid var(--accent-border);
  pointer-events: none; opacity: .55;
}
.hp-trainer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-trainer-avatar i { font-size: 3rem; color: var(--accent-muted); }
.hp-trainer-body { padding: 1rem 1.1rem 1.25rem; }
.hp-trainer-name { font-size: 1rem; font-weight: 700; color: var(--white); margin: 0; }
.hp-trainer-role { font-size: .78rem; color: var(--accent-bright); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin: .25rem 0; }
.hp-trainer-hrs { font-size: .8rem; color: var(--muted); margin: 0 0 .65rem; }
.hp-trainer-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.hp-trainer-tag {
  font-size: .7rem; padding: .25rem .55rem; border-radius: 999px;
  background: var(--accent-subtle); color: var(--accent); border: 1px solid var(--accent-border);
}

.trainer-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--hp-radius); overflow: hidden; height: 100%; transition: border-color .2s, transform .15s; }
.trainer-card:hover { border-color: var(--accent-border); transform: translateY(-3px); }
.trainer-img { aspect-ratio: 1; background: var(--black); display: flex; align-items: center; justify-content: center; color: var(--accent-muted); font-size: 3rem; overflow: hidden; }
.trainer-body { padding: 1rem 1.1rem 1.25rem; }
.trainer-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.trainer-role { font-size: .78rem; color: var(--accent-bright); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.trainer-hrs { font-size: .8rem; color: var(--muted); }
.trainer-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }
.trainer-tag { font-size: .7rem; padding: .25rem .55rem; border-radius: 999px; background: var(--accent-subtle); color: var(--accent); border: 1px solid var(--accent-border); }

@media (max-width: 991px) { .hp-trainers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hp-trainers { grid-template-columns: 1fr; } }

/* ── Transformations ── */
.scroll-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; gap: 1rem; }
.scroll-hint { color: var(--muted); font-size: .82rem; }
.scroll-arrows { display: flex; gap: .5rem; }
.scroll-arrow {
  width: 40px; height: 40px; border-radius: var(--hp-radius-sm);
  background: var(--card); border: 1px solid var(--border); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.scroll-arrow:hover { border-color: var(--accent); color: var(--accent); }
.ff-swiper .swiper-slide { width: auto; }
.transform-card {
  width: 300px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--hp-radius); overflow: hidden;
}
.transform-before-after {
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
}
.transform-before-after::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--accent); transform: skewX(-8deg);
  box-shadow: 0 0 12px var(--accent);
}
.transform-img {
  aspect-ratio: 3/4; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; color: var(--accent-muted); font-size: 2rem;
}
.transform-img img { width: 100%; height: 100%; object-fit: cover; }
.transform-label {
  position: absolute; top: .6rem; left: .6rem; z-index: 1;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: 4px; background: rgba(0,0,0,.55);
}
.transform-label.before { color: var(--muted); }
.transform-label.after { color: var(--accent-bright); }
.transform-body { padding: 1rem; }
.transform-name { font-weight: 700; color: var(--white); }
.transform-stat { font-family: var(--ff-display); font-size: 1.5rem; color: var(--accent-bright); }
.transform-time { font-size: .8rem; color: var(--muted); }
.swiper-fade-wrap { position: relative; }

/* ── Plans ── */
.hp-plans-featured {
  background: linear-gradient(135deg, rgba(0,194,255,.12), rgba(0,136,224,.05));
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--hp-radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--hp-glow);
}
.hp-plans-featured-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: .75rem;
}
.hp-plans-featured-note {
  color: var(--muted);
  font-size: .85rem;
  margin: 0;
  text-align: center;
}
.hp-plans-nav { margin-top: .25rem; }
.hp-plans-swiper { overflow: hidden; }
.hp-plans-swiper .swiper-slide {
  width: 280px;
  height: auto;
}
.hp-plan {
  height: 100%;
  min-height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-dim);
  border-radius: var(--hp-radius);
  padding: 1.35rem;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
  touch-action: pan-y;
  user-select: none;
}
.hp-plan:hover { border-color: var(--accent-border); box-shadow: var(--hp-glow); }
.hp-plan-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--accent); color: var(--on-accent);
  padding: .25rem .6rem; border-radius: 4px; margin-bottom: .65rem;
}
.hp-plan-duration { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.hp-plan-name { font-size: 1.15rem; font-weight: 700; color: var(--white); margin: .35rem 0; }
.hp-plan-price {
  font-family: var(--ff-display); font-size: 2rem; color: var(--accent-bright); margin-bottom: .85rem;
}
.hp-plan-price small { font-family: var(--ff-body); font-size: .85rem; color: var(--muted); }
.hp-plan-features { list-style: none; padding: 0; margin: 0 0 1.1rem; flex: 1; }
.hp-plan-features li {
  display: flex; gap: .5rem; align-items: flex-start;
  font-size: .88rem; color: var(--text); margin-bottom: .45rem;
}
.hp-plan-features i { color: var(--accent); margin-top: .15rem; }

.plan-card {
  background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--accent-dim);
  border-radius: var(--hp-radius); padding: 1.35rem; height: 100%;
  display: flex; flex-direction: column; position: relative;
  transition: transform .15s, border-color .2s;
}
.plan-card:hover { transform: translateY(-3px); border-color: var(--accent-border); }
.plan-card.featured {
  background: linear-gradient(135deg, rgba(0,194,255,.14), rgba(0,136,224,.06));
  border-color: var(--accent-border); border-left-width: 4px; border-left-color: var(--accent);
  box-shadow: var(--hp-glow);
}
.plan-badge {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; background: var(--accent); color: var(--on-accent);
  padding: .25rem .6rem; border-radius: 4px; margin-bottom: .65rem;
}
.plan-duration { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.plan-name { font-size: 1.15rem; font-weight: 700; color: var(--white); margin: .35rem 0; }
.plan-price { font-family: var(--ff-display); font-size: 2rem; color: var(--accent-bright); margin-bottom: .85rem; }
.plan-price small { font-family: var(--ff-body); font-size: .85rem; color: var(--muted); }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.1rem; flex: 1; }
.plan-features li { display: flex; gap: .5rem; font-size: .88rem; color: var(--text); margin-bottom: .45rem; }
.plan-features i { color: var(--accent); }
.plan-btn {
  display: inline-flex; justify-content: center; align-items: center;
  margin-top: auto; padding: .75rem 1rem; border-radius: var(--hp-radius-sm);
  background: var(--accent-gradient); color: var(--on-accent); font-weight: 700;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  box-shadow: var(--accent-glow);
}
.plan-btn:hover { color: var(--on-accent); text-decoration: none; }

@media (max-width: 767px) {
  .hp-plans-featured {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1rem;
  }
  .hp-plans-featured .hp-plan-price { font-size: 1.7rem; }
  .hp-plans-featured-note { text-align: left; }
  .hp-plans-swiper .swiper-slide {
    width: min(82vw, 300px);
  }
  .hp-plan {
    padding: 1.15rem;
  }
  .hp-plan-name { font-size: 1.05rem; }
  .hp-plan-price { font-size: 1.7rem; }
  .hp-plan-features li { font-size: .84rem; }
}

/* ── Testimonials ── */
.testi-card {
  width: min(88vw, 380px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--hp-radius-lg);
  padding: 1.6rem 1.5rem;
  position: relative;
}
.testi-card::before {
  content: '“';
  font-family: var(--ff-display);
  font-size: 4rem; line-height: 1;
  color: var(--accent); opacity: .35;
  position: absolute; top: .4rem; left: 1rem;
}
.stars { color: var(--accent-bright); letter-spacing: .08em; margin-bottom: .75rem; font-size: .95rem; }
.testi-quote { margin: 0; position: relative; z-index: 1; }
.testi-quote p {
  font-family: var(--ff-display);
  font-size: 1.2rem; line-height: 1.45;
  color: var(--white); margin-bottom: 1.1rem;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-subtle); border: 2px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 700; flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-style: normal; }
.testi-sub { font-size: .8rem; color: var(--muted); font-style: normal; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--hp-radius);
  background: var(--card); margin-bottom: .75rem; overflow: hidden;
}
.faq-q {
  width: 100%; background: transparent; border: 0; color: var(--white);
  text-align: left; padding: 1.1rem 1.25rem; font-size: 1rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; font-family: var(--ff-body);
}
.faq-q i { color: var(--accent); transition: transform .2s; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 1.25rem 1.15rem; color: var(--muted);
  font-size: .92rem; line-height: 1.7;
}
.faq-a.open { display: block; }
.faq-a a { color: var(--accent); }

/* ── Forms ── */
.form-ff .form-control, .form-ff .form-select,
.form-control, .form-select {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: var(--hp-radius-sm) !important;
  padding: .75rem 1rem !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-subtle) !important;
}
.form-control::placeholder { color: var(--muted) !important; }
.form-select option { background: var(--card); color: var(--white); }

/* ── BMI ── */
.bmi-result-bar {
  height: 8px; border-radius: 999px; margin-bottom: .5rem;
  background: linear-gradient(90deg, #38bdf8, #34d399, #fbbf24, #ef4444);
  position: relative;
}
.bmi-needle {
  position: absolute; top: -4px; width: 4px; height: 16px;
  background: var(--white); border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,.5);
}
.bmi-val { font-family: var(--ff-display); font-size: 2.2rem; color: var(--white); line-height: 1; }
.bmi-cat { font-weight: 700; font-size: .9rem; }
.bmi-underweight { color: #38bdf8; }
.bmi-normal { color: #34d399; }
.bmi-overweight { color: #fbbf24; }
.bmi-obese { color: #ef4444; }

/* ── Timings / Map ── */
.timing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
}
.timing-day { color: var(--white); font-weight: 600; }
.timing-time { color: var(--accent-bright); font-weight: 600; }
.map-placeholder {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--hp-radius-lg); min-height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; padding: 2rem; color: var(--accent);
  font-size: 2rem;
}

/* ── Footer ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-brand {
  font-family: var(--ff-display); font-size: 1.5rem; color: var(--white); text-decoration: none;
}
.footer-brand span { color: var(--accent-bright); font-style: italic; }
.footer-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer-link {
  display: block; color: var(--muted); text-decoration: none; font-size: .88rem;
  margin-bottom: .55rem; transition: color .15s;
}
.footer-link:hover { color: var(--accent-bright); }
.copy {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--muted);
}

/* ── Bottom action bar (replaces circle FABs) ── */
.hp-bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  background: rgba(7, 11, 20, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--accent-border);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,.4);
}
.hp-bottom-bar-copy {
  font-size: .88rem; font-weight: 600; color: var(--white);
  display: none;
}
.hp-bottom-actions { display: flex; gap: .55rem; }
.hp-bottom-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.1rem; border-radius: 999px; border: none;
  font-weight: 700; font-size: .78rem; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer; transition: transform .15s, box-shadow .2s;
}
.hp-bottom-btn:hover { transform: translateY(-1px); }
.hp-bottom-btn.call {
  background: var(--accent-gradient); color: var(--on-accent); box-shadow: var(--accent-glow);
}
.hp-bottom-btn.wa {
  background: #128C7E; color: #fff;
}
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  background: rgba(7, 11, 20, 0.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--accent-border);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,.4);
}
.sticky-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .65rem 1.15rem; border-radius: 999px; border: none;
  font-weight: 700; font-size: .78rem; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer; color: #fff;
  min-width: 7.5rem;
}
.sticky-btn.call { background: var(--accent-gradient); color: var(--on-accent); box-shadow: var(--accent-glow); }
.sticky-btn.wa { background: #128C7E; }

@media (min-width: 768px) {
  .hp-bottom-bar-copy { display: block; }
}

/* Utility */
.text-accent { color: var(--accent); }
a.text-accent:hover { color: var(--accent-bright); }
