/* ============================================================
   HTU MARTIAL ARTS — AWWWARDS CINEMATIC DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Anton&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --red: #C0392B;
  --red-light: #E74C3C;
  --red-dark: #96281B;
  --red-glow: rgba(192, 57, 43, 0.35);
  --red-glow-lg: rgba(192, 57, 43, 0.15);

  --gold: #D4AF37;
  --gold-light: #F0C830;
  --gold-dim: rgba(212, 175, 55, 0.4);

  --black: #0A0A0A;
  --surface: #111111;
  --surface-2: #161616;
  --surface-3: #1C1C1C;
  --surface-hover: #1E1E1E;

  --off-white: #F0EDE8;
  --text-dim: rgba(240, 237, 232, 0.55);
  --text-dimmer: rgba(240, 237, 232, 0.3);

  --border-subtle: rgba(255, 255, 255, 0.055);
  --border-mid: rgba(255, 255, 255, 0.1);
  --border-red: rgba(192, 57, 43, 0.5);

  --font-display: 'Bebas Neue', 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1200px;
  --nav-h: 80px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-red: 0 0 30px rgba(192, 57, 43, 0.3), 0 0 80px rgba(192, 57, 43, 0.1);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

/* Use default cursor when custom cursor is not loaded */
@media (hover: none) {
  body { cursor: auto; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
  font-weight: 400;
}

p { color: var(--text-dim); margin-bottom: 1.4rem; font-size: 1rem; line-height: 1.7; }

a { color: var(--off-white); text-decoration: none; transition: var(--transition); }

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderFade 0.8s ease-out 1.2s forwards;
  pointer-events: none;
}

.page-loader__logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  color: var(--off-white);
  animation: loaderText 1.0s ease-out forwards;
  opacity: 0;
}

.page-loader__logo span { color: var(--red); }

@keyframes loaderFade {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

@keyframes loaderText {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(192, 57, 43, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.cursor-dot.hover, .cursor-ring.hover {
  width: 14px;
  height: 14px;
  background: var(--gold);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  background: none;
  border-color: var(--gold-dim);
}

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

/* Narrower centred layout for FAQ / long-form content */
.narrow-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center  { text-align: center; }
.text-red     { color: var(--red) !important; }
.text-gold    { color: var(--gold) !important; }
.text-dim     { color: var(--text-dim) !important; }
.text-white   { color: var(--off-white) !important; }
.d-flex       { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.w-100 { width: 100%; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }

/* ============================================================
   SECTION STRUCTURE
   ============================================================ */
.section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '▸';
  font-size: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.08em;
  line-height: 1.0;
  margin-bottom: 3rem;
}

/* Red slash accent divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(192, 57, 43, 0.5), transparent);
}

.section-divider .slash {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 300;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid transparent;
  border-radius: 0;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

/* Hover fill slide from left */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn:hover::before { transform: scaleX(1); }

.btn > * { position: relative; z-index: 1; }
.btn > span { position: relative; z-index: 1; }

/* Primary red cut-corner button */
.btn-primary {
  background: var(--red);
  color: #fff;
  clip-path: polygon(0 0, 94% 0, 100% 30%, 100% 100%, 6% 100%, 0 70%);
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.4);
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary::before {
  background: var(--red-light);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 0 40px rgba(192, 57, 43, 0.6), 0 0 80px rgba(192, 57, 43, 0.2);
  transform: translateY(-2px);
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(192, 57, 43, 0.4); }
  50%       { box-shadow: 0 0 40px rgba(192, 57, 43, 0.7), 0 0 60px rgba(192, 57, 43, 0.25); }
}

/* Outline button — improved contrast */
.btn-outline {
  background: transparent;
  border-color: rgba(240, 237, 232, 0.55);
  color: var(--off-white);
}

.btn-outline::before { background: rgba(240, 237, 232, 0.1); }

.btn-outline:hover {
  border-color: var(--off-white);
  color: var(--off-white);
  background: rgba(240, 237, 232, 0.06);
  transform: translateY(-2px);
}

/* Solid-border outline button — high visibility ghost on dark hero */
.btn-outline-solid {
  background: transparent;
  border: 2px solid rgba(240, 237, 232, 0.8);
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn-outline-solid::before { background: rgba(240, 237, 232, 0.12); }

.btn-outline-solid:hover {
  border-color: var(--off-white);
  background: rgba(240, 237, 232, 0.1);
  color: var(--off-white);
  transform: translateY(-2px);
}

/* Red outline button — for pricing cards, nav CTA */
.btn-outline-red {
  background: transparent;
  border-color: var(--red);
  color: var(--off-white);
}

.btn-outline-red::before { background: var(--red); }
.btn-outline-red:hover { color: #fff; transform: translateY(-2px); }

/* Nav CTA — outline-red WITHOUT clip-path so it fits neatly in navbar */
.nav-cta {
  margin-left: 0.75rem;
  clip-path: none !important;
  border-radius: 0 !important;
}

/* Small button */
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

/* Large button */
.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: var(--border-subtle);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: none;
}

.nav-logo .logo-accent { color: var(--red); }

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240, 237, 232, 0.65);
  padding: 0.5rem 1rem;
  position: relative;
  cursor: none;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--off-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Nav CTA */
.nav-cta {
  margin-left: 1rem;
  font-size: 0.8rem;
  padding: 10px 24px;
  clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 8% 100%, 0 70%);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 1002;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--off-white);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  overflow: hidden;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.08), transparent 70%);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 72px);
  letter-spacing: 0.05em;
  color: var(--off-white);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
  cursor: none;
}

.mobile-menu.open .mobile-nav-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: 0.50s; }

.mobile-menu .mobile-nav-link:hover { color: var(--red); }

.mobile-menu .mobile-cta {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.6s, transform 0.4s ease 0.6s;
}

.mobile-menu.open .mobile-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Background image with parallax hint */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.92) 100%),
    linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Radial red glow on hero */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Red scanning line animation */
.hero-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  z-index: 2;
  animation: scanLine 2.5s ease-in-out 1.5s forwards;
  opacity: 0;
  box-shadow: 0 0 20px var(--red), 0 0 40px rgba(192, 57, 43, 0.4);
}

@keyframes scanLine {
  0%   { left: 0; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding-top: 2rem;
}

/* Eyebrow tag */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 1.8s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--red);
}

/* Main headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 148px);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 2.0s both;
}

.hero-title .accent { color: var(--red); }

/* Glitch effect on tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
  margin-bottom: 2.5rem;
  position: relative;
  animation: fadeUp 0.9s ease 2.2s both;
}

.hero-tagline:hover {
  animation: glitch 0.4s ease forwards;
}

@keyframes glitch {
  0%   { clip-path: inset(0 0 100% 0); transform: translate(-2px, 0); color: var(--red); }
  20%  { clip-path: inset(20% 0 50% 0); transform: translate(2px, 0); }
  40%  { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 0); }
  60%  { clip-path: inset(30% 0 40% 0); transform: translate(0, 0); }
  80%  { clip-path: inset(80% 0 5% 0); transform: translate(2px, 0); color: var(--off-white); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); color: rgba(240, 237, 232, 0.6); }
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 2.4s both;
}

/* Hero trust strip (replaces duplicate stats) */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  animation: fadeUp 0.9s ease 2.6s both;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(240, 237, 232, 0.75);
  white-space: nowrap;
}

.hero-trust-item i {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-trust-sep { display: none; }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1s ease 3s both;
}

.hero-scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  font-weight: 500;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%       { transform-origin: bottom; }
  99%       { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

/* Pause on hover — already pauses in CSS, ensure it also does so on the strip itself */
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.7;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  transition: opacity 0.3s, color 0.3s;
}

.marquee-item::after {
  content: '▸';
  color: var(--red);
  font-size: 0.9rem;
  opacity: 1;
}

.marquee-item:hover { opacity: 1; color: var(--off-white); }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border-subtle);
}

.why-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--red);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  background: var(--surface-hover);
  box-shadow: var(--shadow-red);
}

/* Decorative large number */
.why-card__number {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--off-white);
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.02em;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--off-white);
  position: relative;
}

.why-card__text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0;
  position: relative;
}

/* Large card variant */
.why-card--large {
  grid-row: span 2;
  padding: 4rem 3rem;
}

.why-card--large .why-card__number { font-size: 12rem; }
.why-card--large .why-card__title { font-size: 2rem; }

/* ============================================================
   DISCIPLINES MARQUEE STRIP (between sections)
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, #1a0000 0%, var(--black) 100%);
  border-top: 1px solid rgba(192, 57, 43, 0.2);
  border-bottom: 1px solid rgba(192, 57, 43, 0.2);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.06) 0%, transparent 70%);
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--off-white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num .accent { color: var(--red); }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  flex-shrink: 0;
}

/* ============================================================
   COACHES SECTION
   ============================================================ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.coach-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: none;
}

.coach-card__image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
  display: block;
}

.coach-card:hover .coach-card__image {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Red gradient overlay on hover */
.coach-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.5) 60%, transparent 100%);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.coach-card:hover .coach-card__overlay { transform: translateY(0); }

/* Red accent left border on name */
.coach-card__name-wrap {
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}

.coach-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--off-white);
  margin-bottom: 0.25rem;
}

.coach-card__discipline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem 2.5rem;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-card);
}

/* Popular card */
.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 50px rgba(192, 57, 43, 0.2), 0 0 100px rgba(192, 57, 43, 0.06);
  background: rgba(192, 57, 43, 0.04);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 60px rgba(192, 57, 43, 0.3), 0 0 120px rgba(192, 57, 43, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 0 0 4px 4px;
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-plan { color: var(--red); }

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.pricing-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

.pricing-number {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dimmer);
  align-self: flex-end;
  padding-bottom: 0.8rem;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 2.5rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.pricing-feature:last-child { border-bottom: none; }

.pricing-feature::before {
  content: '▸';
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-feature::before { color: var(--red); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 2rem;
  position: relative;
}

/* Giant quote mark */
.testimonial-quote-mark {
  position: absolute;
  top: -2rem;
  left: 0;
  font-family: Georgia, serif;
  font-size: 200px;
  color: var(--red);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
  max-width: 800px;
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--off-white);
  margin-bottom: 0.25rem;
}

.testimonial-author-role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-stars .star {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Progress bar */
.testimonial-progress {
  height: 2px;
  background: var(--border-subtle);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: none;
}

.testimonial-progress-bar.animating {
  width: 100%;
  transition: width 5s linear;
}

/* Slider controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border-mid);
  background: transparent;
  color: var(--off-white);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.testimonial-btn:hover {
  border-color: var(--red);
  background: rgba(192, 57, 43, 0.1);
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-header {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease;
}

.faq-header:hover { color: var(--red); }
.faq-header.active { color: var(--red); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-header.active .faq-icon { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.95rem;
  color: rgba(240, 237, 232, 0.72); /* WCAG AA compliant on #111 bg */
  line-height: 1.8;
}

.faq-body.active {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(192, 57, 43, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(192, 57, 43, 0.07) 0%, transparent 60%),
    linear-gradient(to bottom, #130005 0%, var(--black) 100%);
  border-top: 1px solid rgba(192, 57, 43, 0.25);
  border-bottom: 1px solid rgba(192, 57, 43, 0.25);
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand-name .accent { color: var(--red); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

.footer-contact-item i { color: var(--red); flex-shrink: 0; }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.35rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: none;
}

.footer-link:hover {
  color: var(--off-white);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: none;
}

.footer-social-link:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-dimmer);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--red); cursor: none; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-hero {
  background:
    linear-gradient(135deg, var(--black) 0%, #120008 50%, var(--black) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.07), transparent 70%);
  pointer-events: none;
}

.inner-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.inner-hero__eyebrow::before { content: '▸'; }

.inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.inner-hero__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 0;
}

/* ============================================================
   SCHEDULE / CLASS CARDS
   ============================================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.class-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.class-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.class-card:hover { border-color: rgba(192, 57, 43, 0.2); box-shadow: var(--shadow-red); }
.class-card:hover::before { transform: scaleX(1); }

.class-card__day {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.class-card__badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: var(--red);
  border-radius: 2px;
}

.class-card__badge.kids {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--gold);
}

.class-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 0.35rem;
}

.class-card__time {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* Schedule filters */
.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text-dim);
  cursor: none;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red);
  color: var(--off-white);
  background: rgba(192, 57, 43, 0.1);
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-container {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background:
    radial-gradient(circle at 15% 80%, rgba(192, 57, 43, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
    var(--black);
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(16px);
  padding: 3.5rem;
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.auth-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  display: block;
  margin-bottom: 0.5rem;
  cursor: none;
}

.auth-logo .accent { color: var(--red); }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-control::placeholder { color: rgba(240, 237, 232, 0.2); }

.form-control:focus {
  border-color: rgba(192, 57, 43, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F0EDE8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--surface-2);
  color: var(--off-white);
}

.form-alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid;
}

.form-alert-error {
  background: rgba(192, 57, 43, 0.08);
  border-color: var(--red);
  color: #ff7b6b;
}

.form-alert-success {
  background: rgba(34, 197, 94, 0.08);
  border-color: #22c55e;
  color: #4ade80;
}

/* ============================================================
   DASHBOARD STYLES
   ============================================================ */
.dash-container {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  min-height: 100svh;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Bootstrap table in dark theme */
.table {
  color: var(--text-dim);
  border-color: var(--border-subtle);
}

.table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-dimmer);
  font-weight: 400;
  border-color: var(--border-subtle);
  padding: 0.75rem 1rem;
  background: var(--surface);
}

.table td {
  border-color: var(--border-subtle);
  padding: 0.75rem 1rem;
  vertical-align: middle;
  color: var(--text-dim);
}

.table tbody tr:hover td { background: rgba(255,255,255,0.02); }

.table-light { --bs-table-bg: var(--surface-2) !important; }

/* Bootstrap badge overrides */
.badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 2px;
}

.badge.bg-success { background: rgba(34, 197, 94, 0.15) !important; color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.25); }
.badge.bg-warning { background: rgba(251, 191, 36, 0.15) !important; color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.25); }
.badge.bg-danger  { background: rgba(192, 57, 43, 0.15) !important; color: var(--red); border: 1px solid var(--border-red); }

/* form-select for bootstrap selects */
.form-select {
  background-color: rgba(255, 255, 255, 0.04) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F0EDE8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  border: 1px solid var(--border-mid) !important;
  color: var(--off-white) !important;
  border-radius: 0 !important;
  padding: 12px 16px;
}

.form-select option { background: var(--surface-2); color: var(--off-white); }

/* Bootstrap button overrides in dark context */
.btn-light {
  background: var(--surface-2) !important;
  border-color: var(--border-mid) !important;
  color: var(--off-white) !important;
  cursor: none;
  border-radius: 0 !important;
}

.btn-light:hover {
  background: var(--surface-hover) !important;
  border-color: var(--border-mid) !important;
  color: var(--off-white) !important;
}

.btn-link { color: var(--red) !important; cursor: none; }
.btn-link:hover { color: var(--red-light) !important; }

.no-underline { text-decoration: none !important; }

.page-section { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 4rem; }

.narrow-container { max-width: 760px; margin: 0 auto; }

/* divider for admin */
.divider { height: 2px; background: linear-gradient(to right, var(--red), transparent); }

/* text-deep-dark (used in dashboards) */
.text-deep-dark { color: var(--off-white) !important; }
.text-primary { color: var(--red) !important; }
.fw-600 { font-weight: 600; }
.fw-bold { font-weight: 700; }
.small { font-size: 0.875rem; }

/* Bootstrap row/col for dashboard */
.row { --bs-gutter-x: 1.5rem; }

/* Toast overrides */
.toast-container { z-index: 9999 !important; }
.text-bg-success { background: rgba(34, 197, 94, 0.15) !important; color: #4ade80 !important; border: 1px solid rgba(34, 197, 94, 0.25) !important; }
.text-bg-danger  { background: rgba(192, 57, 43, 0.15) !important; color: var(--red) !important; border: 1px solid rgba(192, 57, 43, 0.25) !important; }
.text-bg-info    { background: rgba(59, 130, 246, 0.15) !important; color: #60a5fa !important; border: 1px solid rgba(59, 130, 246, 0.25) !important; }

/* btn-success / btn-danger (admin forms) */
.btn-danger  { background: var(--red) !important; border-color: var(--red) !important; color: #fff !important; cursor: none; border-radius: 0 !important; }
.btn-danger:hover { background: var(--red-light) !important; }
.btn-secondary { background: var(--surface-2) !important; border-color: var(--border-mid) !important; color: var(--off-white) !important; cursor: none; border-radius: 0 !important; }
.btn-warning { background: rgba(212, 175, 55, 0.15) !important; border-color: var(--gold-dim) !important; color: var(--gold) !important; cursor: none; border-radius: 0 !important; }
.btn-outline-primary { border-color: var(--red) !important; color: var(--red) !important; cursor: none; border-radius: 0 !important; background: transparent !important; }
.btn-outline-primary:hover { background: var(--red) !important; color: #fff !important; }

/* table-dark */
.table-dark { --bs-table-bg: var(--surface-2) !important; color: var(--text-dim) !important; }
.table-striped > tbody > tr:nth-of-type(odd) > * { --bs-table-accent-bg: rgba(255,255,255,0.02) !important; }
.table-hover > tbody > tr:hover > * { --bs-table-accent-bg: rgba(255,255,255,0.04) !important; }

/* ============================================================
   ANIMATIONS UTILITIES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Noise texture on hero */
.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(192, 57, 43, 0.5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Selection */
::selection { background: rgba(192, 57, 43, 0.3); color: var(--off-white); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card--large { grid-row: span 1; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .site-nav { height: var(--nav-h); }

  .nav-links-wrapper { display: none; }

  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(52px, 14vw, 100px); }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .section { padding: 5rem 0; }

  .section-title { font-size: clamp(32px, 8vw, 52px); }

  .why-grid { grid-template-columns: 1fr; gap: 1.5px; }

  .coaches-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .coach-card__image { height: 260px; }

  .coach-card__overlay { transform: translateY(0) !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .schedule-grid { grid-template-columns: 1fr; }

  .testimonial-slide { padding: 0; }

  .stats-bar-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--red), transparent); }

  .auth-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn-lg { padding: 18px 36px; }
  .coaches-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .section { padding: 4rem 0; }
}

/* ============================================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .marquee-track { animation: none; }
  .hero-scan-line { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LEGACY COMPATIBILITY — inner pages that haven't been migrated
   ============================================================ */

/* Section eyebrow (old: section-label) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 1.25rem;
  padding-left: 0;
}

/* Grid system (old: .grid .grid-3 .grid-4) */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Generic card (old: .card) — maps to surface panel */
.card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: rgba(192, 57, 43, 0.25);
  box-shadow: var(--shadow-red);
}

.card-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 0;
}

/* Price card (old: .price-card) */
.price-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { border-color: rgba(255, 255, 255, 0.15); }
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 50px rgba(192, 57, 43, 0.2);
  background: rgba(192, 57, 43, 0.04);
}

/* Price amount (old: .price) */
.price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 1rem;
}
.price span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0;
}

/* Price features list */
.price-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-dim);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '▸';
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Popular badge (old: .popular-badge) */
.popular-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 0 0 4px 4px;
}

/* Testimonial card (old: .testimonial-card, .testimonial-author, .testimonial-avatar) */
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

/* Coach img (old: .coach-img) */
.coach-img {
  width: 100%;
  height: 280px;
  background: var(--surface-2);
  background-size: cover;
  background-position: top center;
  margin-bottom: 1rem;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}
.card:hover .coach-img { filter: grayscale(0%); }

.coach-discipline {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Accordion (old: .accordion .accordion-item .accordion-header etc.) */
.accordion { display: flex; flex-direction: column; }
.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}
.accordion-header {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease;
}
.accordion-header:hover { color: var(--red); }
.accordion-item.active .accordion-header { color: var(--red); }
.accordion-icon { transition: transform 0.3s ease; font-size: 1rem; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.accordion-item.active .accordion-body { max-height: 200px; padding-bottom: 1.5rem; }

/* Text color helpers (old names) */
.text-accent { color: var(--red) !important; }
.text-muted   { color: var(--text-dim) !important; }
.text-primary-brand { color: var(--red) !important; }

/* Link hover accent (old: .hover-accent) */
.hover-accent {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.25s ease;
}
.hover-accent:hover { color: var(--off-white); }

/* Old footer class */
.footer { background: var(--black); border-top: 1px solid var(--border-subtle); padding: 5rem 0 2.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-dimmer);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-socials { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-socials a {
  display: flex;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  gap: 0.5rem;
  transition: color 0.25s ease;
}
.footer-socials a:hover { color: var(--red); }

/* CTA band (if used standalone) */
.cta-band {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(192, 57, 43, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(192, 57, 43, 0.07) 0%, transparent 60%),
    linear-gradient(to bottom, #130005 0%, var(--black) 100%);
  border-top: 1px solid rgba(192, 57, 43, 0.25);
  border-bottom: 1px solid rgba(192, 57, 43, 0.25);
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Glow pulse (old: .glow-pulse) */
.glow-pulse { animation: btnPulse 3s ease-in-out infinite; }

/* Animate in (old: .animate-in) */
.animate-in { opacity: 0; animation: fadeUp 0.9s ease 0.3s forwards; }

/* Scroll-reveal (old: .fade-in-up) */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in-up.visible,
.fade-in-up.show { opacity: 1; transform: translateY(0); }

/* Stagger children delay */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.55s; }

/* Border helpers */
.border-top    { border-top: 1px solid var(--border-subtle) !important; }
.border-bottom { border-bottom: 1px solid var(--border-subtle) !important; }
.border-subtle { border-color: var(--border-subtle) !important; }

/* Navbar glass legacy (Bootstrap nav fallback) */
.navbar-glass {
  background: rgba(10, 10, 10, 0.9) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.navbar-brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--off-white) !important;
}
.navbar-dark .navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240, 237, 232, 0.65) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--off-white) !important;
}
.join-btn {
  background: var(--red) !important;
  color: #fff !important;
  clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 8% 100%, 0 70%);
}