/* ==================================
   AMK Krav Maga - Tactical Brutalism
   Design System Implementation
   ================================== */

/* CSS Variables */
:root {
  /* Typography */
  --font-heading: 'Montserrat', 'Impact', sans-serif;
  --font-body: 'Inconsolata', 'Courier New', monospace;
  --font-accent: 'Rajdhani', 'Arial Narrow', sans-serif;

  /* Colors - Backgrounds */
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --bg-elevated: #262626;

  /* Colors - Brand */
  --red-primary: #FF2020;
  --red-dark: #CC0000;
  --gold-primary: #FFB800;
  --gold-bright: #FFD700;

  /* Colors - Text */
  --text-primary: #FFFFFF;
  --text-secondary: #E0E0E0;
  --text-muted: #A0A0A0;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 4rem;

  /* Container */
  --container-max: 1200px;
  --container-padding: 2rem;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
}

/* Global Box Sizing Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Global Link Reset */
a {
  text-decoration: none;
  color: inherit;
}

/* Noise Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Skip to Content */
/* Skip Navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0.5rem;
}

/* Focus Visible */
.keyboard-nav *:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* SVG Sprite */
.svg-sprites {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.btn-icon {
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  overflow-x: clip;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: clip;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--spacing-md);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
  color: var(--text-secondary);
}

.section-objection-buster {
  text-align: center;
  font-size: 1.25rem;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--gold-bright);
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
  letter-spacing: 0.03em;
}

.category-title {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin: var(--spacing-lg) 0 var(--spacing-md);
  color: var(--gold-bright);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--red-dark);
  color: var(--text-primary);
  border: 2px solid var(--red-dark);
  box-shadow: 0 0 20px rgba(255, 32, 32, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--red-primary);
  box-shadow: 0 0 30px rgba(255, 32, 32, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 184, 0, 0.1);
  border-color: var(--gold-bright);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bg-elevated);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--container-padding);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-bright);
}

.nav-cta {
  margin-right: 0;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* CTA text switching */
.cta-short {
  display: none;
}

.cta-full {
  display: inline;
}

/* Body scroll lock when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* When menu is open, force nav to stay fixed at top (sticky becomes unreliable
   once body.menu-open sets overflow:hidden). Keeps AMK logo + close button visible. */
body.menu-open .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-backdrop {
  display: none;
}

.nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  transition: all var(--transition-normal);
  position: absolute;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before,
.hamburger::after {
  content: '';
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Hamburger animation when active */
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  z-index: 0;
}

/* Mobile: hero video has dark ceiling baked in — zoom into the action area
   and shorten the section so there's less dead vertical space */
@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
  }
  .hero-video {
    transform: scale(1.3);
    transform-origin: center 70%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.71);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.hero-title-frame {
  font-size: 0.75em;
  color: var(--text-secondary);
}

.hero-title-main {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-accent);
  color: var(--gold-bright);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-subtitle-secondary {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: var(--font-accent);
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-md);
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.hero-trust-badges {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-badge a,
.footer-rating a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}

.trust-stars {
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  transform: translateY(-0.1em);
}

.triangle-accent {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.1;
}

.hero-triangle {
  bottom: -50px;
  right: -50px;
  border-width: 0 200px 200px 0;
  border-color: transparent var(--red-primary) transparent transparent;
}

/* What is Krav Maga Section */
.what-is {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-elevated);
}

.comparison-box {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
  padding: var(--spacing-lg);
  background: var(--bg-secondary);
  border-left: 4px solid var(--gold-primary);
}

.comparison-box h3 {
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.comparison-box p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.pillar-card {
  background: var(--bg-secondary);
  padding: var(--spacing-lg);
  border: 1px solid var(--bg-elevated);
  transition: all var(--transition-normal);
  text-align: center;
}

.pillar-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
  transform: translateY(-5px);
}

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--red-primary);
  text-transform: uppercase;
}

.pillar-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Value Proposition */
.value-prop {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.value-card {
  background: var(--bg-secondary);
  padding: var(--spacing-lg);
  border: 1px solid var(--bg-elevated);
  transition: all var(--transition-normal);
}

.value-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
  transform: translateY(-5px);
}

.value-icon {
  margin-bottom: var(--spacing-md);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-bright);
}

.cta-center {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* Programs Section */
.programs {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
}

.program-category {
  margin-bottom: var(--spacing-lg);
  scroll-margin-top: 120px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.program-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-elevated);
  padding: var(--spacing-lg) var(--spacing-md);
  position: relative;
  transition: all var(--transition-normal);
}

.program-card:hover {
  border-color: var(--red-primary);
  box-shadow: 0 0 25px rgba(255, 32, 32, 0.3);
  transform: translateY(-5px);
}

.program-card.popular {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gold-primary);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.card-header {
  margin-bottom: var(--spacing-md);
}

.card-header h4 {
  font-size: 1.75rem;
  color: var(--text-primary);
}

.age-badge {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--gold-bright);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.card-description {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.card-features {
  margin: var(--spacing-md) 0;
  padding-left: 1.5rem;
}

.card-features li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.card-schedule {
  margin: var(--spacing-md) 0;
  padding: var(--spacing-sm);
  background: var(--bg-primary);
  border-left: 3px solid var(--gold-primary);
  font-size: 0.875rem;
}

/* Instructors Section */
.instructors {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
}

.instructor-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.instructor-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-elevated);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.instructor-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.instructor-image {
  width: 280px;
  min-width: 280px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.instructor-info {
  flex: 1;
  padding: var(--spacing-lg);
}

.instructor-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
}

.instructor-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: var(--spacing-md);
}

.instructor-bio {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credential {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  border-left: 3px solid var(--gold-primary);
}

/* Testimonials Section */
.testimonials {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  background: var(--bg-secondary);
}

.testimonial-rating {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.stars {
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: var(--spacing-xs);
}

.rating-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.rating-text .reviews-link {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-primary);
  transition: all var(--transition-fast);
}

.rating-text .reviews-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--gold-bright);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.testimonial-card {
  background: var(--bg-primary);
  padding: var(--spacing-lg);
  border: 1px solid var(--bg-elevated);
  border-left: 4px solid var(--gold-primary);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: 0.15em;
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 1;
  color: var(--red-primary);
  opacity: 0.2;
  pointer-events: none;
}

.testimonial-card:hover {
  border-left-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  transform: translateX(5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border: 2px solid var(--gold-primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-header cite {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.875rem;
  display: block;
}

.testimonial-category {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.05em;
}

.testimonial-card blockquote {
  font-style: normal;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
}

.testimonial-cta-text {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

/* ============================================================
   CAROUSELS (shared base — used by testimonials + video reviews)
   ============================================================ */

.carousel-wrapper {
  position: relative;
  margin-bottom: var(--spacing-md);
  /* leave room for the absolute-positioned arrow buttons */
  padding: 0 64px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--spacing-md);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* 3 cards visible on desktop */
.carousel > * {
  flex: 0 0 calc((100% - 2 * var(--spacing-md)) / 3);
  scroll-snap-align: start;
  min-width: 0; /* prevent flex blowout */
}

@media (max-width: 899px) {
  .carousel > * {
    flex: 0 0 calc((100% - var(--spacing-md)) / 2);
  }
}

@media (max-width: 599px) {
  .carousel > * {
    flex: 0 0 100%;
  }
}

/* Testimonial cards are wider (text + avatar + name) — switch to 2 columns sooner */
@media (max-width: 1100px) {
  #testimonial-carousel > * {
    flex: 0 0 calc((100% - var(--spacing-md)) / 2);
  }
}

@media (max-width: 599px) {
  #testimonial-carousel > * {
    flex: 0 0 100%;
  }
}

/* Prev / Next arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--red-dark);
  color: var(--text-primary);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.carousel-btn--prev {
  left: 0;
}

.carousel-btn--next {
  right: 0;
}

.carousel-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.carousel-dot.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.carousel-dot:hover:not(.active) {
  background: var(--text-muted);
}

/* ============================================================
   VIDEO REVIEWS SECTION
   ============================================================ */

.video-reviews {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-xl);
  background: var(--bg-secondary);
}

.video-card {
  /* sizing handled by .carousel > * */
}

.video-facade {
  position: relative;
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
  background-color: #000;
  cursor: pointer;
  overflow: hidden;
}

/* Dark overlay to make play button pop */
.video-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background var(--transition-fast);
  pointer-events: none;
}

.video-facade:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.92;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  z-index: 1; /* above ::after overlay */
  padding: 0;
}

.play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 4px;
}

/* Iframe fills the facade after click */
.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FEATURED VIDEO SECTION
   ============================================================ */

.featured-video {
  padding-top: 0;
  padding-bottom: var(--spacing-md);
  background: var(--bg-primary);
}

/* Tighten gap between instructors and the featured video */
.instructors:has(+ .featured-video) {
  padding-bottom: var(--spacing-md);
}

.featured-video-wrapper {
  max-width: 960px;
  margin: var(--spacing-lg) auto 0;
}

/* Wide (16:9) variant — overrides the default 9:16 facade */
.video-facade--wide {
  aspect-ratio: 16 / 9;
}

/* How It Works */
.how-it-works {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.step-card {
  background: var(--bg-primary);
  padding: var(--spacing-md);
  border: 1px solid var(--bg-elevated);
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  border-color: var(--red-primary);
  box-shadow: 0 0 20px rgba(255, 32, 32, 0.2);
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--red-dark);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  box-shadow: 0 0 20px rgba(255, 32, 32, 0.3);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.step-arrow {
  font-size: 2rem;
  color: var(--gold-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* What to Expect (standalone section) */
.what-to-expect-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

@media (max-width: 768px) {
  .expect-grid {
    grid-template-columns: 1fr;
  }
}

.expect-item {
  padding: var(--spacing-md);
  border-left: 3px solid var(--gold-primary);
  background: var(--bg-secondary);
}

.expect-item strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
}

/* Schedule Section */
.schedule {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
}

.schedule-note {
  background: var(--bg-secondary);
  padding: var(--spacing-md);
  text-align: center;
}

.schedule-disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.schedule-channels {
  justify-content: center;
}

/* Schedule Legend */
.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm) 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.legend-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
}

/* Schedule Timetable */
.schedule-timetable-wrapper {
  overflow-x: auto;
  margin-bottom: var(--spacing-md);
  -webkit-overflow-scrolling: touch;
}

.schedule-timetable {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--bg-secondary);
}

.schedule-timetable thead th {
  background: var(--bg-elevated);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 0.5rem;
  border: 1px solid #333;
  text-align: center;
}

.schedule-timetable td {
  padding: 0.625rem;
  border: 1px solid #333;
  text-align: center;
  vertical-align: top;
}

.cell-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.375rem;
}

.time-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: var(--bg-primary);
  min-width: 80px;
  border: 1px solid #333;
  padding: 0.75rem 0.5rem;
  text-align: center;
  position: sticky;
  left: 0;
  z-index: 1;
}

.schedule-timetable thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}

.class-tag {
  display: block;
  padding: 0.375rem 0.625rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
  color: var(--bg-primary);
  text-align: center;
}

.class-adults {
  background: var(--red-primary);
}

.class-warriors {
  background: #8BC34A;
}

.class-teens {
  background: #42A5F5;
}

.class-ladies {
  background: #E91E63;
}

.class-fitness {
  background: #4CAF50;
}

.class-fundamentals {
  background: var(--gold-primary);
}

.class-advanced {
  background: #9E9E9E;
}

.timetable-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

/* FAQ Section */
.faq {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-primary);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--bg-elevated);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--gold-primary);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: left;
  padding: 1rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  line-height: 1.2;
}

.faq-toggle {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 400ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 2rem 1rem 2rem;
}

.faq-answer > * {
  margin-top: 0;
}

.faq-answer > *:last-child {
  margin-bottom: 0;
}

.faq-answer > div {
  padding: var(--spacing-md) var(--spacing-lg);
}

.faq-answer p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.faq-answer ul {
  margin: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-md);
}

.faq-answer li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.contact-info {
  background: var(--bg-primary);
  padding: var(--spacing-lg);
  border: 1px solid var(--bg-elevated);
}

.contact-info h3 {
  font-size: 1.75rem;
  color: var(--gold-bright);
  margin-bottom: var(--spacing-md);
}

.contact-info h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: var(--spacing-md) 0 var(--spacing-sm);
}

.contact-info address {
  font-style: normal;
  line-height: 1.7;
}

.contact-details p {
  margin-bottom: var(--spacing-sm);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-details a {
  color: var(--gold-bright);
  transition: color var(--transition-fast);
}

.contact-details a:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: #25D366;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.whatsapp-icon:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.parking-info p {
  line-height: 1.7;
}

.social-links {
  margin-top: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.social-links h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 2px solid var(--gold-primary);
  color: var(--gold-bright);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-primary);
  padding: var(--spacing-lg);
  border: 1px solid var(--bg-elevated);
}

.contact-form-container h3 {
  font-size: 1.75rem;
  color: var(--gold-bright);
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--spacing-md);
}

/* Form Messages */
.error-message {
  color: var(--red-primary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-family: var(--font-body);
}

.form-error-message {
  padding: 1rem;
  background: rgba(255, 32, 32, 0.1);
  border: 1px solid var(--red-primary);
  color: var(--red-primary);
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-body);
}

.success-message {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 2px solid var(--gold-primary);
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-body);
}

.success-title {
  color: var(--gold-bright);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-body {
  color: var(--text-secondary);
}

/* Map */
.map-embed {
  border: 1px solid var(--bg-elevated);
  filter: grayscale(0.5) brightness(0.9);
  transition: filter var(--transition-normal);
}

.map-embed:hover {
  filter: grayscale(0.2) brightness(1);
}

.map-embed iframe {
  display: block;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-elevated);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand img {
  width: 60px;
  height: 60px;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-rating {
  color: var(--gold-bright);
  font-size: 0.875rem;
}

.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
  font-size: 1.125rem;
  color: var(--gold-bright);
  margin-bottom: var(--spacing-sm);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-contact p {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--gold-bright);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--gold-primary);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Program Category Navigation */
.program-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.program-nav-link {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  background: var(--bg-secondary);
  border: 2px solid var(--bg-elevated);
  transition: all var(--transition-fast);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.program-nav-link:hover,
.program-nav-link:focus {
  color: var(--text-primary);
  border-color: var(--gold-primary);
  background: rgba(255, 184, 0, 0.1);
}

.program-nav-link.active {
  color: var(--bg-primary);
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

/* Pricing Paragraph */
.pricing-paragraph {
  font-size: 1.25rem;
  line-height: 1.7;
}

.price-highlight {
  color: var(--gold-bright);
  font-weight: 700;
  font-family: var(--font-accent);
}

/* Schedule Image */
/* Onboarding Section */
.onboarding {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-elevated);
}


/* Alternatives strip below the grid */
.onboarding-alternatives {
  text-align: center;
}

.alternatives-channels {
  justify-content: center;
}

.alternatives-divider {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.alternatives-divider::before,
.alternatives-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bg-elevated);
}

.alternatives-divider span {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.channel-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.onboarding-calendly {
  position: relative;
  margin-bottom: var(--spacing-md);
  min-height: 730px;
}

.calendly-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.calendly-loading::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--bg-elevated);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
  animation: calendly-spin 0.8s linear infinite;
}

@keyframes calendly-spin {
  to { transform: rotate(360deg); }
}

/* Fallback Contact Form */
.fallback-form-container {
  max-width: 700px;
  margin: 0 auto;
  padding-top: var(--spacing-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.fallback-form .btn {
  margin-top: var(--spacing-sm);
}


/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--bg-elevated);
  padding: 0.75rem var(--container-padding);
  gap: 0.75rem;
  align-items: center;
}

.mobile-cta-btn {
  flex: 1;
  min-width: 0;
  display: block;
  text-align: center;
  padding: 0.875rem 1rem;
  background: var(--red-dark);
  color: var(--text-primary);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 32, 32, 0.3);
  transition: all var(--transition-fast);
}

.mobile-cta-btn:hover {
  background: var(--red-primary);
  box-shadow: 0 0 30px rgba(255, 32, 32, 0.6);
}

.mobile-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  text-decoration: none;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.mobile-cta-whatsapp:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* Responsive Design */
/* Hamburger menu triggers at 1100px */
@media (max-width: 1100px) {
  :root {
    --container-padding: 1rem;
    --spacing-lg: 3rem;
    --spacing-xl: 3rem;
  }

  /* Navigation */
  .nav {
    backdrop-filter: none;
    background: #0D0D0D;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .brand-text {
    font-size: 1.125rem;
  }

  .nav-container {
    position: relative;
    gap: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999; /* below .nav's 1000 so sticky nav + close button stay visible on top */
    transform: translateX(100%);
    visibility: hidden;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem var(--container-padding) var(--spacing-lg);
    gap: 1.5rem;
    transition: transform var(--transition-normal), visibility var(--transition-normal);
    border-left: 1px solid var(--bg-elevated);
    margin: 0;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    position: relative;
    z-index: 1001; /* above .nav-menu so close X stays clickable when menu is open */
  }

  .nav-cta {
    display: none;
  }

  /* Nav backdrop overlay */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    z-index: -1;
  }

  .nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  /* Show CTA inside mobile menu */
  .nav-cta-mobile {
    display: block;
    margin-top: var(--spacing-sm);
    list-style: none;
  }

  .nav-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Grids */
  .program-grid,
  .testimonial-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .step-arrow {
    transform: rotate(90deg);
  }

  /* Program nav */
  .program-nav {
    gap: 0.5rem;
  }

  .program-nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
  }

  /* Add bottom padding to body so sticky bar doesn't overlap footer */
  body {
    padding-bottom: 70px;
  }

  /* Typography */
  .section-title {
    font-size: 1.75rem;
  }

  .category-title {
    font-size: 1.25rem;
  }

  /* Instructor cards — stack on mobile */
  .instructor-card {
    flex-direction: column;
  }

  .instructor-image {
    width: 100%;
    max-width: 260px;
    min-width: unset;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
  }

  /* Testimonial quote mark — smaller on mobile */
  .testimonial-card::before {
    font-size: 80px;
    left: 0.1em;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    padding: 0 48px;
  }

  /* Navigation - extra small screens */
  .logo {
    width: 50px;
    height: 50px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .nav-container {
    gap: 0.4rem;
  }

  /* Hero */
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .btn-large {
    padding: 1rem 1.75rem;
    font-size: 1.125rem;
  }

  /* Channel buttons + program nav */
  .channel-buttons {
    flex-direction: column;
  }

  .channel-btn {
    width: 100%;
    justify-content: center;
  }

  .program-nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
}

/* Print Styles */
@media print {
  .nav,
  .footer,
  .btn,
  .cta-center {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .value-prop,
  .programs,
  .instructors,
  .testimonials,
  .how-it-works,
  .pricing,
  .schedule,
  .faq,
  .onboarding,
  .contact {
    background: white;
    page-break-inside: avoid;
  }
}