/* =============================================
   PUMPCLUB — CSS Design System
   Colors: White (#fff), Orange (#FF5C1A), Dark (#0D0D0D)
   Font: Outfit (Google Fonts)
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

a, button, input, select, textarea {
  outline: none;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

:root {
  --orange: #FF5C1A;
  --orange-dark: #E04710;
  --orange-light: #FF7A45;
  --orange-pale: #FFF0E9;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #2A2A2A;
  --gray-1: #F4F4F4;
  --gray-2: #E8E8E8;
  --gray-3: #9A9A9A;
  --gray-4: #666666;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   UTILITIES
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section-title.white {
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-4);
  line-height: 1.65;
  max-width: 52ch;
  margin-top: 1rem;
}

.section-sub.white {
  color: rgba(255,255,255,0.75);
}

.section-header {
  margin-bottom: 3rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 92, 26, 0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid var(--dark);
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 2rem;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  margin-top: 2rem;
}

.btn-primary-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 92, 26, 0.35);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: none;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.85);
}

.navbar .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar .logo {
  color: var(--white);
}

.navbar .burger span {
  background: var(--white);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  transition: color var(--transition);
}

.logo-icon {
  display: flex;
  align-items: center;
  color: var(--orange);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: inherit;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link:hover {
  color: var(--dark);
  background: var(--gray-1);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .burger span {
  background: var(--dark);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 99;
  border-bottom: 1px solid var(--gray-2);
  transform: translateY(-110%);
  transition: transform var(--transition);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

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

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-2);
  transition: color var(--transition);
}

.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link:hover {
  color: var(--orange);
}

.mobile-cta {
  color: var(--orange) !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  margin-top: 0.5rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 5rem;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hero-left {
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* =============================================
   ABOUT / BENTO
   ============================================= */
.about {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.about-text-cell {
  background: var(--gray-1);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image-cell {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-cell:hover .about-img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(255, 92, 26, 0.35);
}

.about-feature-cell {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.about-feature-orange {
  background: var(--orange);
  color: var(--white);
}

.about-feature-orange h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--white);
}

.about-feature-orange p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.about-feature-dark {
  background: var(--dark-2);
  color: var(--white);
}

.about-feature-dark h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--white);
}

.about-feature-dark p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.about-feature-light {
  background: var(--gray-1);
}

.about-feature-light h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--dark);
}

.about-feature-light p {
  font-size: 0.9rem;
  color: var(--gray-4);
  line-height: 1.6;
}

.feature-icon {
  color: rgba(255,255,255,0.9);
}

.feature-icon-orange {
  color: var(--orange);
}

/* =============================================
   PROGRAMS
   ============================================= */
.programs {
  padding: 7rem 0;
  background: var(--off-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.program-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .program-img {
  transform: scale(1.07);
}

.program-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.program-info {
  padding: 1.5rem;
}

.program-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.program-info p {
  font-size: 0.87rem;
  color: var(--gray-4);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.program-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-3);
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
  background: var(--dark);
  overflow: hidden;
  padding: 7rem 0;
}

.video-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.video-section-text {
  display: flex;
  flex-direction: column;
}

.video-section-text .section-title em {
  color: var(--orange);
  font-style: italic;
}

.video-section-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-section-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 92, 26, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: blobPulse 4s ease-in-out infinite;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.video-phone-frame {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 480px;
  border-radius: 36px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05);
}

.video-phone-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   TRAINERS
   ============================================= */
.trainers {
  padding: 7rem 0;
  background: var(--white);
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trainer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-1);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.trainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.trainer-img-wrap {
  height: 300px;
  overflow: hidden;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trainer-card:hover .trainer-img {
  transform: scale(1.05);
}

.trainer-info {
  padding: 1.75rem;
}

.trainer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.trainer-spec {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.trainer-exp {
  font-size: 0.85rem;
  color: var(--gray-3);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 7rem 0;
  background: var(--off-white);
}

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid var(--gray-2);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.pricing-card-featured {
  background: var(--dark);
  border-color: var(--orange);
  transform: translateY(-8px);
}

.pricing-card-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(255, 92, 26, 0.2);
}

.plan-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.plan-header {
  margin-bottom: 1.75rem;
}

.plan-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.pricing-card-featured .plan-name {
  color: rgba(255,255,255,0.75);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.plan-amount {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
}

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

.plan-period {
  font-size: 0.9rem;
  color: var(--gray-3);
  font-weight: 500;
}

.pricing-card-featured .plan-period {
  color: rgba(255,255,255,0.5);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.5;
}

.pricing-card-featured .plan-features li {
  color: rgba(255,255,255,0.85);
}

.plan-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.plan-feature-off {
  opacity: 0.4;
}

.plan-feature-off svg {
  color: var(--gray-3) !important;
}

.btn-plan {
  display: block;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--dark);
  color: var(--dark);
  transition: all var(--transition);
}

.btn-plan:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-plan-featured {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-plan-featured:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 92, 26, 0.35);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   ANIMATIONS / REVEAL
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .video-section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .video-section-media {
    order: -1;
  }

  .video-phone-frame {
    width: 220px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }

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

  .about-text-cell {
    padding: 2.5rem;
  }

  .about-image-cell {
    min-height: 260px;
  }

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

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

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

  .pricing-card-featured {
    transform: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .scroll-indicator {
    display: none;
  }
}

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

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
