/* ============================================
   FORGE — Premium Fitness Landing
   ============================================ */

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #181818;
  --surface: #1C1C1C;
  --surface-2: #232323;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #FFFFFF;
  --text-2: #B5B5B5;
  --text-3: #7A7A7A;
  --accent: #FF3D00;
  --accent-2: #FF6B1A;
  --accent-glow: rgba(255, 61, 0, 0.35);
  --container: 1280px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --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-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   Loader
   ============================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 2px;
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: load 1.4s ease forwards;
}
@keyframes load { 0% { width: 0; } 100% { width: 100%; } }

/* ============================================
   Custom Cursor
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--accent);
  background: rgba(255,61,0,0.08);
}
@media (max-width: 1024px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (min-width: 1025px) and (pointer: fine) {
  body, a, button { cursor: none; }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
}
.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow.light { color: rgba(0,0,0,0.7); }
.section-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
}
.section-title .accent { color: var(--accent); }
.section-title .accent-light { color: #fff; }
.section-title .muted { color: var(--text-3); }
.section-title.light { color: #0A0A0A; }
.section-desc {
  color: var(--text-2);
  max-width: 480px;
  font-size: 1rem;
}
.section-desc.light { color: rgba(0,0,0,0.7); }
.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem;
}
.section-head.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.section-head.center .section-desc { margin: 0 auto; }
@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
  isolation: isolate;
  background: transparent;
}
/* Two layered pseudo-elements sit BEHIND text (z-index: -1).
   ::before = resting background. ::after = hover fill that slides up. */
.btn::before,
.btn::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  z-index: -1;
}
.btn::after {
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: scale(0.97); }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); position: relative; z-index: 1; }

/* Primary — orange → deeper orange gradient fill */
.btn-primary {
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn-primary::before { background: var(--accent); }
.btn-primary::after  { background: linear-gradient(120deg, #C42A00, #FF6B1A); }
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px var(--accent-glow);
}
.btn-primary:hover svg { transform: translateX(5px); }

/* Ghost — translucent → solid accent fill */
.btn-ghost {
  color: #fff;
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost::before { background: rgba(255,255,255,0.05); }
.btn-ghost::after  { background: var(--accent); }
.btn-ghost:hover {
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px var(--accent-glow);
}
.btn-ghost:hover .play-icon { background: #fff; color: var(--accent); }

/* Outline — dark context: white border + white text, fills accent */
.btn-outline {
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline::before { background: transparent; }
.btn-outline::after  { background: var(--accent); }
.btn-outline:hover {
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px var(--accent-glow);
}

/* Outline on LIGHT pricing cards (day / yearly) — dark border + dark text, fills dark */
.price-card:not(.featured) .btn-outline {
  color: #0A0A0A;
  border-color: rgba(10, 10, 10, 0.18);
}
.price-card:not(.featured) .btn-outline::after { background: #0A0A0A; }
.price-card:not(.featured) .btn-outline:hover {
  color: #fff;
  border-color: #0A0A0A;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.3);
}

/* Text button — animated underline */
.btn-text {
  color: var(--accent);
  padding: 0.95rem 0.5rem;
  overflow: visible;
  border-radius: 0;
  isolation: auto;
}
.btn-text::before { content: none; }
.btn-text::after {
  content: '';
  position: absolute;
  left: 0.5rem; right: 0.5rem; bottom: 0.55rem;
  height: 1.5px;
  inset: auto 0.5rem 0.55rem 0.5rem;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 0;
  z-index: 0;
}
.btn-text:hover { color: var(--accent-2); transform: none; }
.btn-text:hover::after { transform: scaleX(1); }

.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.play-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.6rem;
  padding-left: 2px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: 'Anton', sans-serif;
  transform: rotate(-6deg);
  transition: transform 0.4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(6deg) scale(1.05); }
.logo .dot { color: var(--accent); }
.logo.big { font-size: 1.9rem; }
.logo.big .logo-mark { width: 42px; height: 42px; font-size: 1.4rem; }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px; right: -100%;
    flex-direction: column;
    align-items: flex-start;
    width: 80%; max-width: 320px;
    height: calc(100vh - 70px);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.2rem; font-family: 'Anton', sans-serif; letter-spacing: 1.5px; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%),
    url('https://images.unsplash.com/photo-1532384748853-8f54a8f476e2?w=1920&auto=format&fit=crop&q=75');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,61,0,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,61,0,0.08) 0%, transparent 60%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-2);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}
.dot-blink {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.9;
  letter-spacing: 1.5px;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-2) 60%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
}
.hero-stats .divider { width: 1px; height: 36px; background: var(--border); }

/* Floating Card */
.floating-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 320px;
  margin-left: auto;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 0.78rem; }
.fc-live { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 700; letter-spacing: 1px; }
.fc-live span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); animation: blink 1.2s ease infinite; }
.fc-time { color: var(--text-2); }
.fc-title { font-family: 'Anton', sans-serif; font-size: 1.4rem; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.fc-meta { font-size: 0.85rem; color: var(--text-2); margin-bottom: 1.25rem; }
.fc-footer { display: flex; justify-content: space-between; align-items: center; }
.fc-avatars { display: flex; align-items: center; }
.fc-avatars span {
  width: 30px; height: 30px;
  background-size: cover; background-position: center;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.fc-avatars span:first-child { margin-left: 0; }
.fc-avatars .more {
  background: var(--accent) !important;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}
.fc-btn {
  background: #fff; color: #0A0A0A;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.3s ease;
}
.fc-btn:hover { background: var(--accent); color: #fff; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-2);
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  width: 100%; height: 20px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0% { top: -20px; } 100% { top: 100%; } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .floating-card { margin: 0 auto; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero { padding-top: 6rem; }
  .hero-stats .divider { display: none; }
  .floating-card { width: 100%; }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--accent);
  color: #0A0A0A;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.2rem 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex; align-items: center; gap: 3rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 4px;
  white-space: nowrap;
  animation: scroll-marquee 22s linear infinite;
}
.m-dot { font-size: 0.9rem; opacity: 0.5; }
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   About
   ============================================ */
.about { padding: 8rem 0; position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img {
  width: 100%; aspect-ratio: 4/5;
  background-image: url('https://images.unsplash.com/photo-1581122584612-713f89daa8eb?w=900&auto=format&fit=crop&q=75');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  transition: transform 1s var(--ease);
}
.about-media:hover .about-img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: -10px; left: -10px;
  background: var(--accent);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 0.8rem;
  box-shadow: 0 20px 40px -10px var(--accent-glow);
}
.ab-num { font-family: 'Anton', sans-serif; font-size: 2.8rem; line-height: 1; }
.ab-lbl { font-size: 0.78rem; line-height: 1.2; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.about-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.95);
  color: #0A0A0A;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.about-tag svg { width: 18px; height: 18px; }
.about-text { color: var(--text-2); margin-bottom: 1.25rem; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 2rem 0;
}
.feature-list li {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,61,0,0.15);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}
.about-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ============================================
   Programs
   ============================================ */
.programs { padding: 6rem 0; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.program-card:hover { transform: translateY(-6px); }
.program-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.program-card:hover .program-img { transform: scale(1.08); }
.program-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%);
}
.program-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  z-index: 2;
}
.program-num {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.program-content h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.program-content p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.program-card:hover .program-content p { max-height: 80px; opacity: 1; }
.program-link {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform 0.4s var(--ease), background 0.3s ease;
  box-shadow: 0 10px 24px -8px var(--accent-glow);
}
.program-link svg { width: 18px; height: 18px; }
.program-card:hover .program-link { transform: rotate(45deg); background: #fff; color: var(--accent); }

@media (max-width: 900px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .programs-grid { grid-template-columns: 1fr; } }

/* ============================================
   Stats
   ============================================ */
.stats {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; padding: 1rem; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 60%;
  background: var(--border);
  transform: translateY(-50%);
}
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-lbl {
  font-size: 0.85rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-item:nth-child(2)::after { display: none; }
}

/* ============================================
   Trainers
   ============================================ */
.trainers { padding: 7rem 0; }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trainer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.trainer-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s var(--ease);
  filter: grayscale(40%);
}
.trainer-card:hover .trainer-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.trainer-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
  transition: opacity 0.4s ease;
}
.trainer-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  z-index: 2;
}
.trainer-role {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.trainer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}
.trainer-socials {
  display: flex; gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.trainer-card:hover .trainer-socials { opacity: 1; transform: translateY(0); }
.trainer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.trainer-socials a:hover { background: var(--accent); transform: translateY(-2px); }
.trainer-socials svg { width: 14px; height: 14px; }

@media (max-width: 900px) { .trainers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trainers-grid { grid-template-columns: 1fr; } }

/* ============================================
   Transformations
   ============================================ */
.transformations { padding: 6rem 0; }
.transform-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.25rem;
}
.transform-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.transform-card.big { grid-row: span 2; }
.t-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.transform-card:hover .t-img { transform: scale(1.06); }
.t-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
  display: flex; align-items: flex-end;
  padding: 1.8rem;
}
.t-info { color: #fff; }
.t-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.t-info h4 { font-size: 1.5rem; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.t-info p { font-size: 0.9rem; color: var(--text-2); max-width: 380px; }

@media (max-width: 900px) {
  .transform-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .transform-card.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .transform-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .transform-card.big { grid-column: span 1; }
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
  position: relative;
  background: var(--accent);
  color: #0A0A0A;
  padding: 7rem 0;
  overflow: hidden;
}
.pricing-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(0,0,0,0.04) 80px, rgba(0,0,0,0.04) 81px),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.pricing .container { position: relative; z-index: 1; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #0A0A0A;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}
.price-card.featured {
  background: #0A0A0A;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.featured-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.price-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,61,0,0.12);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.price-icon svg { width: 26px; height: 26px; }
.price-card.featured .price-icon { background: rgba(255,61,0,0.18); }
.price-name {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.price-amount {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: flex; align-items: flex-start; gap: 0.15rem;
}
.price-amount .currency { font-size: 1.5rem; margin-top: 0.5rem; }
.price-amount .period { font-size: 0.95rem; font-family: 'Inter', sans-serif; color: #888; margin-top: 1.2rem; margin-left: 0.4rem; font-weight: 400; }
.price-card.featured .price-amount .period { color: #999; }
.price-desc { font-size: 0.92rem; color: #666; margin-bottom: 1.5rem; }
.price-card.featured .price-desc { color: #aaa; }
.price-features { flex: 1; margin-bottom: 2rem; }
.price-features li {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.08); }
.price-features li.muted { opacity: 0.4; }
.price-features li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.price-features li.muted span { background: #ccc; color: #888; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-8px); }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials { padding: 7rem 0; background: var(--bg-2); }
.testimonials-wrap { position: relative; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.4s var(--ease);
}
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.quote-mark {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: 'Anton', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
}
.testimonial-foot {
  display: flex; align-items: center; gap: 1rem;
}
.t-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--accent);
}
.t-name { font-weight: 700; font-size: 1rem; }
.t-role { font-size: 0.82rem; color: var(--text-2); }
.t-stars { margin-left: auto; color: var(--accent); letter-spacing: 1px; }

.t-controls {
  display: flex; gap: 0.6rem; margin-top: 2rem;
}
.t-arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.t-arrow svg { width: 18px; height: 18px; }
.t-arrow:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 calc(100% - 1rem); padding: 2rem; }
}

/* ============================================
   CTA Band
   ============================================ */
.cta-band { padding: 6rem 0; position: relative; overflow: hidden; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.cta-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  margin: 1rem 0 1.5rem;
}
.cta-title .accent { color: var(--accent); }
.cta-content p { color: var(--text-2); margin-bottom: 2rem; max-width: 480px; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571388208497-71bedc66e932?w=900&auto=format&fit=crop&q=70');
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.cta-visual:hover .cta-img { transform: scale(1.06); }
.cta-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: var(--accent-glow);
  filter: blur(80px);
  top: -50px; right: -50px;
  z-index: -1;
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { max-width: 400px; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-2);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-2);
  margin: 1.5rem 0;
  max-width: 320px;
  font-size: 0.95rem;
}
.socials { display: flex; gap: 0.6rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: all 0.3s ease;
}
.socials svg { width: 16px; height: 16px; }
.socials a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  color: var(--accent);
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text-2);
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-col a:hover { color: var(--accent); padding-left: 6px; }
.footer-muted { color: var(--text-2); font-size: 0.92rem; line-height: 1.7; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-3); font-size: 0.85rem; }
.back-top {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.back-top svg { width: 18px; height: 18px; }
.back-top:hover { transform: translateY(-4px); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Comprehensive Responsive Layer
   ============================================ */

/* Large desktops 1440+: nothing extra needed, max-width handles it */

/* Small desktops / laptops — 1200px */
@media (max-width: 1200px) {
  :root { --container: 1100px; }
  .section-title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .programs-grid { gap: 1.25rem; }
  .trainers-grid { gap: 1.25rem; }
}

/* Tablets landscape — 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }
  .nav-links { gap: 1.5rem; }
  .nav-link { font-size: 0.88rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero-inner { gap: 2.5rem; }
  .floating-card { width: 280px; padding: 1.25rem; }
  .about { padding: 6rem 0; }
  .about-grid { gap: 3rem; }
  .programs { padding: 5rem 0; }
  .trainers { padding: 5rem 0; }
  .transformations { padding: 5rem 0; }
  .pricing { padding: 5.5rem 0; }
  .testimonials { padding: 5rem 0; }
  .cta-band { padding: 5rem 0; }
  .footer { padding: 4rem 0 1.5rem; }
  .stat-num { font-size: clamp(2.5rem, 5vw, 4rem); }
  .price-card { padding: 2rem 1.5rem; }
  .price-amount { font-size: 3rem; }
}

/* Tablets — 900px */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { text-align: left; max-width: 100%; }
  .floating-card {
    margin: 0; width: 100%; max-width: 360px;
    align-self: flex-start;
  }
  .hero-title { font-size: clamp(2.8rem, 8vw, 5rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-stats { gap: 1.5rem; padding-top: 1.5rem; }
  .hero-stat .num { font-size: 1.9rem; }

  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 2.5rem; gap: 1rem; }
  .section-head.center { align-items: center; }
  .section-desc { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .about-img { aspect-ratio: 4/4; }
  .feature-list { grid-template-columns: 1fr 1fr; }

  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card { aspect-ratio: 4/4.5; }
  .program-content { padding: 1.3rem; }
  .program-content h3 { font-size: 1.45rem; }
  .program-link { width: 40px; height: 40px; top: 1.2rem; right: 1.2rem; }

  .trainers-grid { grid-template-columns: repeat(2, 1fr); }

  .transform-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .transform-card.big { grid-column: span 2; grid-row: span 1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 1.25rem; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-6px); }

  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-visual { max-width: 100%; aspect-ratio: 16/10; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
  .footer-brand p { max-width: 100%; }
}

/* Tablets portrait — 768px */
@media (max-width: 768px) {
  .container { padding: 0 1.15rem; }
  .navbar { padding: 1rem 0; }
  .navbar.scrolled { padding: 0.7rem 0; }
  .logo { font-size: 1.3rem; }
  .logo-mark { width: 28px; height: 28px; font-size: 0.95rem; }
  .nav-cta .btn-sm { display: none; }

  .hero { padding: 5.5rem 0 3rem; min-height: auto; }
  .hero-tag { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  .hero-cta { gap: 0.75rem; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.9rem; }
  .btn-lg { padding: 1rem 1.6rem; font-size: 0.95rem; }
  .scroll-indicator { display: none; }

  .marquee-track { font-size: 1.25rem; gap: 2rem; letter-spacing: 2px; }
  .marquee { padding: 0.9rem 0; }

  .testimonial-card { flex: 0 0 calc(100% - 1rem); padding: 1.8rem; }
  .testimonial-text { font-size: 0.98rem; }
  .quote-mark { font-size: 3.5rem; top: 1rem; right: 1.3rem; }

  .stat-num { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .stat-lbl { font-size: 0.78rem; letter-spacing: 1.5px; }

  .about-badge { padding: 1.1rem; bottom: -8px; left: -8px; }
  .ab-num { font-size: 2.2rem; }
  .ab-lbl { font-size: 0.7rem; }
  .about-tag { top: 1rem; right: 1rem; font-size: 0.75rem; padding: 0.45rem 0.8rem; }

  .t-info h4 { font-size: 1.3rem; }
  .t-overlay { padding: 1.4rem; }

  .price-card { padding: 2rem 1.5rem; }
  .price-amount { font-size: 2.8rem; }

  .cta-title { font-size: clamp(2rem, 7vw, 3rem); }
  .cta-buttons { gap: 0.75rem; }
}

/* Mobile landscape & small tablets — 640px */
@media (max-width: 640px) {
  :root { --radius: 14px; --radius-lg: 20px; }
  .hero { padding: 5rem 0 2.5rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: 1px; }
  .hero-sub { margin-bottom: 1.8rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 140px; }
  .hero-stats { width: 100%; justify-content: space-between; gap: 1rem; }
  .hero-stats .divider { display: none; }
  .hero-stat .num { font-size: 1.7rem; }
  .hero-stat .lbl { font-size: 0.7rem; letter-spacing: 1px; }

  .floating-card { padding: 1.1rem; }
  .fc-title { font-size: 1.2rem; }
  .fc-meta { font-size: 0.78rem; }

  .programs-grid { grid-template-columns: 1fr; gap: 1rem; }
  .program-card { aspect-ratio: 4/4; max-height: 380px; }

  .trainers-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trainer-card { aspect-ratio: 3/3.6; }
  .trainer-info { padding: 1.2rem; }
  .trainer-info h3 { font-size: 1.25rem; }
  .trainer-role { font-size: 0.65rem; letter-spacing: 1.5px; }

  .transform-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    grid-template-rows: none;
  }
  .transform-card.big { grid-column: span 1; }

  .pricing { padding: 4.5rem 0; }
  .price-card { padding: 2rem 1.4rem; border-radius: var(--radius); }
  .price-amount { font-size: 2.5rem; }

  .testimonials { padding: 4.5rem 0; }
  .testimonials-wrap .testimonial-card { padding: 1.6rem 1.4rem; }
  .testimonial-text { font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; }
  .quote-mark { font-size: 3rem; top: 0.8rem; right: 1.1rem; }
  .testimonial-foot { gap: 0.8rem; }
  .t-avatar { width: 42px; height: 42px; }
  .t-name { font-size: 0.95rem; }
  .t-role { font-size: 0.78rem; }
  .t-stars { font-size: 0.85rem; margin-left: 0; }

  .stats { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stat-item { padding: 0.5rem; }
  .stat-item::after { display: none !important; }

  .cta-band { padding: 4rem 0; }
  .cta-content p { font-size: 0.95rem; }
  .cta-buttons { width: 100%; }
  .cta-buttons .btn { flex: 1; justify-content: center; min-width: 140px; }

  .footer { padding: 3.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Small mobiles — 480px */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .navbar { padding: 0.85rem 0; }
  .navbar.scrolled { padding: 0.6rem 0; }

  .hero-title { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero-tag span:not(.dot-blink) { font-size: 0.72rem; }
  .floating-card { padding: 1rem; }
  .fc-avatars span { width: 26px; height: 26px; }

  .marquee-track { font-size: 1.05rem; gap: 1.5rem; letter-spacing: 1.5px; }
  .m-dot { font-size: 0.75rem; }

  .section-title { font-size: clamp(1.8rem, 8.5vw, 2.6rem); }
  .eyebrow { font-size: 0.78rem; letter-spacing: 2px; }

  .about { padding: 4rem 0; }
  .about-badge { padding: 1rem; }
  .ab-num { font-size: 1.9rem; }
  .feature-list { grid-template-columns: 1fr; gap: 0.6rem; }
  .feature-list li { font-size: 0.92rem; }

  .programs, .trainers, .transformations { padding: 4rem 0; }
  .trainers-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .trainer-card { aspect-ratio: 4/4.5; }

  .pricing { padding: 4rem 0; }
  .price-name { font-size: 0.9rem; letter-spacing: 2.5px; }
  .price-features li { font-size: 0.88rem; padding: 0.45rem 0; }

  .cta-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .cta-content p { font-size: 0.9rem; }

  .footer-brand p { font-size: 0.9rem; }
  .footer-col h4 { font-size: 0.72rem; }
  .footer-bottom p { font-size: 0.78rem; }

  .btn { padding: 0.8rem 1.25rem; font-size: 0.88rem; }
  .btn svg { width: 14px; height: 14px; }

  .t-controls { justify-content: center; }
  .t-arrow { width: 44px; height: 44px; }
}

/* Tiny phones / foldables — 380px */
@media (max-width: 380px) {
  :root { --container: 100%; }
  .container { padding: 0 0.85rem; }
  .logo { font-size: 1.15rem; gap: 0.4rem; }
  .logo-mark { width: 26px; height: 26px; font-size: 0.85rem; }
  .nav-toggle { width: 34px; height: 34px; }

  .hero-title { font-size: clamp(2rem, 12vw, 2.8rem); }
  .hero-tag { padding: 0.35rem 0.7rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 0.6rem; }
  .hero-stat .num { font-size: 1.45rem; }
  .hero-stat .lbl { font-size: 0.65rem; }

  .floating-card { padding: 0.9rem; }
  .fc-title { font-size: 1.1rem; }

  .marquee-track { font-size: 0.95rem; gap: 1.2rem; }

  .about-tag { font-size: 0.7rem; padding: 0.35rem 0.65rem; }
  .about-tag svg { width: 14px; height: 14px; }

  .price-amount { font-size: 2.2rem; }
  .price-amount .currency { font-size: 1.1rem; }

  .testimonial-card { padding: 1.4rem 1.2rem; }
  .quote-mark { font-size: 2.5rem; }
  .testimonial-text { font-size: 0.9rem; }

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }

  .back-top { width: 38px; height: 38px; }
}

/* Landscape orientation on short screens (phones turned sideways) */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 5rem 0 2rem; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.4rem); }
  .scroll-indicator { display: none; }
}

/* Touch device tweaks — disable hover-only transforms that look broken on touch */
@media (hover: none) {
  .program-card:hover .program-content p { max-height: 80px; opacity: 1; }
  .trainer-card .trainer-socials { opacity: 1; transform: translateY(0); }
  .trainer-card .trainer-img { filter: grayscale(0%); }
}

/* Ensure no horizontal overflow ever */
html, body { max-width: 100vw; overflow-x: hidden; }
.hero, .about, .programs, .trainers, .transformations, .pricing, .testimonials, .cta-band, .footer { max-width: 100vw; overflow-x: clip; }
