:root {
  /* ===== PRIMARY ORANGE COLORS ===== */
  --fire: #ff4500;
  --ember: #ff6b00;
  --glow: #ff8c42;

  /* ===== ORANGE WITH TRANSPARENCY ===== */
  --fire-5: rgba(255, 69, 0, 0.05);
  --fire-8: rgba(255, 69, 0, 0.08);
  --fire-10: rgba(255, 69, 0, 0.1);
  --fire-12: rgba(255, 69, 0, 0.12);
  --fire-15: rgba(255, 69, 0, 0.15);
  --fire-20: rgba(255, 69, 0, 0.2);
  --fire-25: rgba(255, 69, 0, 0.25);
  --fire-30: rgba(255, 69, 0, 0.3);
  --fire-50: rgba(255, 69, 0, 0.5);
  --ember-5: rgba(255, 107, 0, 0.05);
  --ember-8: rgba(255, 107, 0, 0.08);
  --glow-5: rgba(255, 140, 66, 0.05);

  /* ===== PRIMARY RED COLORS ===== */
  /* --red: #ff0000;
        --red-dark: #cc0000;
        --red-light: #ff3333; */

  /* ===== RED WITH TRANSPARENCY ===== */
  /* --red-5: rgba(255, 0, 0, 0.05);
        --red-8: rgba(255, 0, 0, 0.08);
        --red-10: rgba(255, 0, 0, 0.1);
        --red-12: rgba(255, 0, 0, 0.12);
        --red-15: rgba(255, 0, 0, 0.15);
        --red-20: rgba(255, 0, 0, 0.2);
        --red-25: rgba(255, 0, 0, 0.25);
        --red-30: rgba(255, 0, 0, 0.3);
        --red-50: rgba(255, 0, 0, 0.5);
        --red-dark-5: rgba(204, 0, 0, 0.05);
        --red-light-5: rgba(255, 51, 51, 0.05); */

  /* ===== NEUTRAL COLORS ===== */
  --cream: #fff5ee;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --muted: #888;
  --text: #f0eae0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ===== DOODLE CANVAS ===== */
.doodle-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  contain: strict;
  will-change: opacity;
}

/* ===== STICKY BOTTOM CTA ===== */
.sticky-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--fire-20);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.5s ease-out;
  pointer-events: auto;
  box-shadow: 0 -4px 20px rgba(255, 69, 0, 0.1);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
}

.sticky-cta-text {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  flex: 1;
}

.sticky-cta-subtext.badge {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.22), rgba(255, 69, 0, 0.2));
  border: 1px solid rgba(255, 180, 120, 0.55);
  color: #ffd9c8;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-subtext.badge.urgency-pulse {
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.3);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.03);
    box-shadow: 0 0 0 6px rgba(255, 69, 0, 0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .sticky-cta-container {
    padding: 1rem 2rem;
    box-shadow: 0 -2px 15px rgba(255, 69, 0, 0.08);
  }

  .sticky-cta-content {
    gap: 1rem;
    max-width: 100%;
  }

  .sticky-cta-text {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
  }

  .sticky-cta-subtext.badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.68rem;
  }

  .sticky-cta-container .btn-primary {
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .sticky-cta-container {
    padding: 0.9rem 1.5rem;
    border-top: 1.5px solid var(--fire-20);
  }

  .sticky-cta-content {
    gap: 0.9rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .sticky-cta-text {
    font-size: 0.98rem;
    font-weight: 800;
    white-space: nowrap;
    text-align: left;
    flex-basis: auto;
  }

  .sticky-cta-subtext.badge {
    padding: 0.28rem 0.68rem;
    font-size: 0.66rem;
    flex-basis: auto;
  }

  .sticky-cta-container .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.85rem;
    flex-basis: 100%;
  }

  .sticky-cta {
    padding: 0.85rem 1.5rem;
    width: auto;
    max-width: none;
  }

  .cta-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .sticky-cta-container {
    padding: 0.8rem 0.9rem;
  }

  .sticky-cta-content {
    flex-direction: column;
    gap: 0.7rem;
    justify-content: center;
    align-items: center;
  }

  .sticky-cta-text {
    font-size: 1.2rem;
    font-weight: 800;
    white-space: normal;
    text-align: center;
    flex-basis: auto;
  }

  .sticky-cta-subtext.badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.62rem;
    align-self: auto;
    margin: 0;
  }

  .sticky-cta-container .btn-primary {
    padding: 0.72rem 1.2rem;
    font-size: 0.78rem;
    width: 100%;
  }

  .sticky-cta {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .cta-text {
    letter-spacing: 0.3px;
  }

  .phone-input-row {
    flex-direction: column;
  }

  .country-code-select {
    flex: 1;
    min-width: 100%;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fire-12);
  border: 1px solid var(--fire-30);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero h1 span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  background: linear-gradient(135deg, var(--fire), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 1.1em;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(240, 234, 224, 0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-video-wrap {
  width: min(100%, 760px);
  margin: 0 auto 1.8rem;
  border: 1px solid var(--fire-20);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.hero-video-wrap wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

.hero-actions-note {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: rgba(240, 234, 224, 0.6);
  margin-top: 0.2rem;
}

.btn-primary {
  background: var(--fire);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--ember);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240, 234, 224, 0.3);
  padding: 1rem 2.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-ghost:hover {
  border-color: var(--fire);
  color: var(--glow);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fire-15);
  animation: fadeSlideUp 0.8s 0.6s ease both;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 1.8rem;
  background: linear-gradient(135deg, var(--fire-8), var(--fire-5));
  border: 1px solid var(--fire-20);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--fire), transparent);
}

.stat-card:hover {
  background: linear-gradient(135deg, var(--fire-12), var(--fire-8));
  border-color: var(--fire-30);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 69, 0, 0.15);
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fire);
  line-height: 1;
  letter-spacing: 0.5px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(240, 234, 224, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* Fire orb decoration */
.hero-orb {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      var(--fire-12) 0%,
      var(--ember-5) 40%,
      transparent 70%);
  border-radius: 50%;
  animation: orbPulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
  contain: paint;
}

.hero-ring {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid var(--fire-10);
  border-radius: 50%;
  animation: spin 30s linear infinite;
  will-change: transform;
  contain: paint;
}

.hero-ring::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px dashed var(--ember-8);
  border-radius: 50%;
}

/* ===== SECTION BASE ===== */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: rgba(240, 234, 224, 0.6);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--dark3);
  border: 1px solid var(--fire-15);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--fire), transparent);
}

.about-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--fire), transparent);
}

.coach-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--fire), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coach-title {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(240, 234, 224, 0.75);
}

.about-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--fire-12), var(--fire-8));
  border: 1.5px solid var(--fire-25);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0 2rem 0;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.about-tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.about-tagline p {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--fire), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.tagline-icon {
  font-size: 1.8rem;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--fire-30);
  font-size: 0.75rem;
  color: var(--glow);
  letter-spacing: 0.5px;
  background: var(--fire-5);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.accent-box {
  background: linear-gradient(135deg, var(--fire-10), var(--glow-5));
  border: 1px solid var(--fire-20);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.accent-box p {
  font-size: 0.9rem;
  color: rgba(240, 234, 224, 0.8);
  line-height: 1.7;
  font-style: italic;
}

/* ===== PROGRAM ===== */
.program-section {
  background: var(--dark2);
}

.program-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.program-hero {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

.price-card {
  background: var(--dark3);
  border: 1px solid var(--fire-20);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.price-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--fire-15), transparent 70%);
  border-radius: 50%;
}

.price-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.5rem;
}

.price-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
}

.price-value span {
  font-size: 2rem;
  color: var(--fire);
}

.price-duration {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08) 0%, rgba(255, 69, 0, 0.02) 100%);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  border-color: var(--fire);
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 69, 0, 0.05) 100%);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 69, 0, 0.2);
}

.program-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  /* background: linear-gradient(135deg, var(--fire) 0%, #ff6b00 100%); */
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .program-feature-icon {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
}

.program-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.program-feature-name {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
}

.program-feature-desc {
  font-size: 0.84rem;
  color: rgba(240, 234, 224, 0.76);
  line-height: 1.55;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.8rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--fire-30);
  transform: translateY(-4px);
}

.feature-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fire);
  transition: width 0.4s ease;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== FOR WHO ===== */
.forwho-section {
  max-width: 1100px;
  margin: 0 auto;
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.forwho-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--fire-8), var(--fire-5));
  border: 1.5px solid var(--fire-20);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.forwho-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--fire), transparent);
}

.forwho-item:hover {
  background: linear-gradient(135deg, var(--fire-12), var(--fire-8));
  border-color: var(--fire-30);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 69, 0, 0.2);
}

.forwho-item:hover .forwho-icon {
  transform: scale(1.2) rotate(10deg);
}

.forwho-item:hover .forwho-num {
  color: var(--glow);
}

.forwho-icon {
  font-size: 2.8rem;
  transition: all 0.3s ease;
  line-height: 1;
}

.forwho-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--fire);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  line-height: 1;
}

.forwho-text {
  font-size: 0.95rem;
  color: rgba(240, 234, 224, 0.8);
  line-height: 1.6;
  font-weight: 500;
}

/* ===== APPROACH ===== */
.approach-section {
  background: var(--dark2);
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--fire), transparent);
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.step-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--fire);
  flex-shrink: 0;
  background: var(--dark2);
  position: relative;
  z-index: 1;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.step-body h4 {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.step-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== RESULTS ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.result-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--fire), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.result-card:hover::before {
  transform: scaleX(1);
}

.result-card:hover {
  border-color: var(--fire-20);
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.result-text {
  font-size: 0.85rem;
  color: rgba(240, 234, 224, 0.7);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--dark2);
}

/* ===== VIDEO TESTIMONIALS (UNIFORM GRID) ===== */
.video-testimonials-section {
  background: var(--dark2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  align-items: start;
}

.video-item {
  background: var(--dark3);
  border: 1px solid var(--fire-15);
  padding: 0.6rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wistia-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

/* Desktop: 4 per row; Tablet & Mobile: 2 per row */
@media (max-width: 1199px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 1000px;
  }
}

@media (max-width: 599px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
}

.testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  height: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: var(--fire-30);
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: var(--fire);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--fire-20);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--fire-8);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: #FFD700;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.85rem;
  color: rgba(240, 234, 224, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-weight: 500;
  font-size: 0.85rem;
}

.author-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 69, 0, 0.03) 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 69, 0, 0.02) 100%);
  border: 1px solid rgba(255, 69, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--fire);
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(255, 69, 0, 0.05) 100%);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: left;
}

.faq-question:hover {
  background: rgba(255, 69, 0, 0.05);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--fire) 0%, #ff6b00 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-question:hover .faq-icon {
  transform: scale(1.1);
}

.faq-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fire);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.8rem 1.8rem;
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 69, 0, 0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--fire-8) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-item span {
  color: var(--fire);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--fire-10);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1001;
  margin-bottom: 80px;
}



.footer-copy {
  font-size: 0.75rem;
  color: rgba(248, 245, 240, 0.3);
  letter-spacing: 0.5px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal {
  background: var(--dark3);
  border: 1px solid var(--fire-25);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: slideUp 0.4s ease both;
  max-height: 90vh;
  overflow-y: auto;
}

.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--fire), var(--glow), transparent);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--fire);
}

.modal-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, var(--fire), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240, 234, 224, 0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fire-50);
}

.form-group select option {
  background: var(--dark3);
}

.phone-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.country-code-select {
  flex: 0 0 120px;
  min-width: 120px;
  text-align: left;
  padding-left: 0.9rem;
  padding-right: 2rem;
}

.phone-input-row input[type="tel"] {
  flex: 1;
  min-width: 0;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-submit {
  width: 100%;
  background: var(--fire);
  color: white;
  border: none;
  padding: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.form-submit:hover {
  background: var(--ember);
}

.form-error {
  min-height: 1.1rem;
  margin: 0.25rem 0 0.65rem;
  color: #ff8a6b;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

.modal-note {
  font-size: 0.72rem;
  color: rgba(240, 234, 224, 0.35);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--fire-10);
  border: 1px solid var(--fire-30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes orbPulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(-52%) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(var(--rot, 0deg));
  }
}

@keyframes comparisonSweep {
  from {
    width: 22%;
  }

  to {
    width: 78%;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DOODLES ===== */
.doodle-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
  contain: paint;
}

/* ===== RESULTS GRID ===== */
.results-header {
  text-align: center;
  margin-bottom: 3rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.result-item {
  width: 100%;
}

.comparison-container {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  background: var(--dark4);
  border: 1px solid rgba(255, 69, 0, 0.15);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  cursor: pointer;
  contain: content;
  will-change: transform, box-shadow;
}

.comparison-container:hover {
  border-color: rgba(255, 69, 0, 0.35);
  box-shadow: 0 20px 60px rgba(255, 69, 0, 0.15);
  transform: translateY(-6px);
}

.comparison-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}

.comparison-before-wrapper {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  overflow: hidden;
  z-index: 2;
  animation: autoComparisonSlide 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.comparison-img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.comparison-before-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(255, 140, 66, 0.3) 20%,
      rgba(255, 140, 66, 0.8) 50%,
      rgba(255, 140, 66, 0.3) 80%,
      transparent 100%);
  box-shadow:
    0 0 20px rgba(255, 140, 66, 0.8),
    0 0 40px rgba(255, 69, 0, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  animation: sliderGlow 2s ease-in-out infinite;
}

.comparison-slider-handle {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--fire);
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--glow);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow:
    0 0 0 8px rgba(255, 69, 0, 0.1),
    0 0 20px rgba(255, 140, 66, 0.6),
    inset 0 0 10px rgba(255, 69, 0, 0.2);
  z-index: 3;
  animation: handlePulse 1.5s ease-in-out infinite;
}

.comparison-slider-handle span {
  display: inline-block;
  width: 8px;
  text-align: center;
  font-size: 1.2rem;
}

@keyframes autoComparisonSlide {
  0% {
    width: 0%;
  }

  20% {
    width: 100%;
  }

  80% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

@keyframes sliderGlow {

  0%,
  100% {
    opacity: 0.6;
    box-shadow:
      0 0 20px rgba(255, 140, 66, 0.8),
      0 0 40px rgba(255, 69, 0, 0.5),
      inset 0 0 10px rgba(255, 255, 255, 0.3);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 30px rgba(255, 140, 66, 1),
      0 0 60px rgba(255, 69, 0, 0.8),
      inset 0 0 15px rgba(255, 255, 255, 0.5);
  }
}

@keyframes handlePulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 0 8px rgba(255, 69, 0, 0.1),
      0 0 20px rgba(255, 140, 66, 0.6),
      inset 0 0 10px rgba(255, 69, 0, 0.2);
  }

  50% {
    transform: translateY(-50%) scale(1.1);
    box-shadow:
      0 0 0 12px rgba(255, 69, 0, 0.15),
      0 0 30px rgba(255, 140, 66, 0.9),
      inset 0 0 15px rgba(255, 69, 0, 0.4);
  }
}

/* ===== WORKOUT CAROUSEL ===== */
.carousel-container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  background: var(--dark3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: inherit;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      rgba(10, 10, 10, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1rem 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.carousel-slide:hover .slide-overlay {
  opacity: 1;
}

.slide-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--fire);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--fire);
  background: rgba(10, 10, 10, 0.8);
  color: var(--glow);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: var(--glow);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.6);
  transform: translateY(-50%) scale(1.15);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--fire);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 69, 0, 0.3);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--fire);
  box-shadow: 0 0 12px rgba(255, 69, 0, 0.6);
  width: 32px;
  border-radius: 6px;
}

.loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem !important;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-video-wrap {
    margin-bottom: 1.4rem;
    border-radius: 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .forwho-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .result-card {
    padding: 1rem 0.5rem;
  }

  .results-grid {
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .results-intro .results-grid {
    gap: 0.75rem;
  }

  .transformation-section .results-grid {
    gap: 1rem 0.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .transformation-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-body {
    display: block !important;
    /* grid-template-columns: 1fr; */
    /* gap: 2.5rem; */
  }

  .features-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .program-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1.05rem;
  }

  .program-feature-name {
    font-size: 0.95rem;
  }

  .program-feature-desc {
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .feature-card {
    padding: 1rem;
  }


  .steps-container {
    margin-top: 2.5rem;
  }

  .approach-header {
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-card {
    padding: 1.2rem 1.5rem;
  }

  .hero-ring,
  .hero-orb {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }



  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

  .slide-label {
    font-size: 0.95rem;
  }

  .carousel-wrapper {
    aspect-ratio: 3 / 4;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 0;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .faq-accordion {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .transformation-section .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .results-grid {
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .features-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem !important;
  }

  .feature-item {
    padding: 0.6rem;
  }

  .program-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.95rem;
  }

  .program-feature-name {
    font-size: 0.88rem;
  }

  .program-feature-desc {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  nav {
    padding: 0.8rem 1rem !important;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .forwho-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex: 0 0 85%;
  }



  .comparison-card {
    padding: 0.75rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1rem 1.2rem;
  }

  .stat-num {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

  .slide-label {
    font-size: 0.85rem;
    padding: 1rem;
  }

  .carousel-wrapper {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-question {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .faq-text {
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .faq-answer-content {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.85rem;
  }

  .faq-accordion {
    gap: 0.8rem;
  }
}

/* ===== UTILITY & COMPONENT STYLES ===== */
.doodle-custom {
  width: 80px;
  top: 20%;
  right: 20%;
  --rot: 15deg;
  --dur: 7s;
  --delay: 0.5s;
}

.bg-dark2 {
  background: var(--dark2);
}

.mt-1 {
  margin-top: 1rem;
}

.about-card {
  padding: 1.5rem;
}

.features-list {
  display: grid;
  gap: 1rem;
}

.feature-item-fire,
.feature-item-ember,
.feature-item-glow {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark3);
}

.feature-item-fire {
  border-left: 2px solid var(--fire);
}

.feature-item-ember {
  border-left: 2px solid var(--ember);
}

.feature-item-glow {
  border-left: 2px solid var(--glow);
}

.feature-icon-lg {
  font-size: 1.3rem;
}

.feature-title-sm {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.feature-desc-sm {
  font-size: 0.78rem;
  color: var(--muted);
}

.text-highlight {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--fire);
}

.investment-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.approach-container {
  /* legacy – kept for JS compatibility */
}

/* Approach section 3-zone layout */
.approach-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.approach-header .section-sub {
  margin: 0 auto;
}

.approach-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.approach-carousel-col {
  /* fills left column */
}

.approach-footer {
  text-align: center;
  margin-top: 3rem;
}

.results-intro {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.transformation-section {
  background: radial-gradient(circle at top left, var(--fire-8), transparent 45%),
    var(--dark2);
}

.transformation-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.transformation-copy .section-sub {
  margin-bottom: 1.8rem;
}

.transformation-points {
  display: grid;
  gap: 1rem;
}

.transformation-point {
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
  border-top: 1px solid var(--fire-10);
}

.transformation-point span {
  min-width: 34px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--fire);
  letter-spacing: 1px;
}

.transformation-point p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(240, 234, 224, 0.75);
}

.comparison-card {
  background: linear-gradient(180deg, rgba(255, 69, 0, 0.06), transparent 30%),
    var(--dark3);
  border: 1px solid var(--fire-20);
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.comparison-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: var(--dark4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
}

.comparison-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.comparison-before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  overflow: hidden;
  animation: comparisonSweep 7s ease-in-out infinite alternate;
}

.comparison-before-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--glow), transparent);
  box-shadow: 0 0 14px rgba(255, 140, 66, 0.55);
}

.comparison-divider {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--fire-30);
  background: rgba(10, 10, 10, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glow);
  font-size: 0.9rem;
  box-shadow: 0 0 0 8px rgba(255, 69, 0, 0.08);
}

.comparison-foot {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.comparison-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--fire-20);
  background: var(--fire-5);
  color: var(--glow);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.text-center {
  text-align: center;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(240, 234, 224, 0.6);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-large {
  font-size: 1rem;
  padding: 1.1rem 3rem;
}

.contact-link {
  color: inherit;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-link-fire {
  color: var(--fire);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.1);
}

.footer-link-muted {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.success-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  color: var(--fire);
}

.success-desc {
  font-size: 0.9rem;
  color: rgba(240, 234, 224, 0.7);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

.success-contact-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--fire-8);
  border: 1px solid var(--fire-20);
}

.success-contact-phone {
  font-size: 0.8rem;
  color: var(--glow);
}

.success-contact-email {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.about-image-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 69, 0, 0.15);
}

.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-about {
  width: 100%;
  max-width: 420px;
  font-size: 1.05rem;
}

@media (prefers-reduced-motion: reduce) {

  .comparison-before-wrap,
  .hero-badge,
  .hero h1,
  .hero-sub,
  .hero-actions,
  .hero-stats,
  .hero-orb,
  .hero-ring,
  .nav-logo,
  .coach-name,
  .nav-cta::after,
  .btn-primary::after,
  .stat-num,
  .price-value span,
  .forwho-num,
  .success-title,
  .section-tag,
  .price-label,
  .coach-title,
  .step-num,
  .feature-card,
  .about-card,
  .result-card,
  .testimonial-card,
  .footer-link-fire {
    animation: none !important;
  }
}

/* ===== PREMIUM SHINY ANIMATIONS ===== */
@keyframes premiumTextShine {
  to {
    background-position: 200% center;
  }
}

@keyframes premiumButtonShine {
  0% {
    left: -200%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes premiumBorderShine {

  0%,
  100% {
    border-color: var(--fire);
    box-shadow: 0 0 0 transparent;
  }

  50% {
    border-color: var(--glow);
    box-shadow: 0 0 15px var(--fire-20);
  }
}

/* 1. Gradient Text Elements */
.nav-logo,
.hero h1 span,
.coach-name,
.stat-num,
.price-value span,
.forwho-num,
.success-title {
  background: linear-gradient(135deg, var(--fire) 0%, var(--glow) 40%, #ffffff 50%, var(--glow) 60%, var(--fire) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: premiumTextShine 3s linear infinite;
}

/* 2. Primary Buttons */
.nav-cta,
.btn-primary,
.form-submit {
  position: relative;
  overflow: hidden;
}

.nav-cta::after,
.btn-primary::after,
.form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: premiumButtonShine 4s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  pointer-events: none;
}

/* 3. Orange Badges & Tags */
.hero-badge,
.section-tag,
.price-label,
.coach-title,
.footer-link-fire {
  background: linear-gradient(135deg, var(--fire) 0%, var(--glow) 40%, #ffcda8 50%, var(--glow) 60%, var(--fire) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: premiumTextShine 3s linear infinite;
  display: inline-block;
}

/* 4. Orange Borders & Boxes */
.step-num,
.feature-card:hover,
.about-card:hover,
.result-card:hover,
.testimonial-card:hover,
.success-icon {
  animation: premiumBorderShine 3s infinite;
}

/* Tablet-specific improvements for better responsiveness and layout */
@media (min-width: 700px) and (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .result-item {
    display: flex;
    align-items: stretch;
  }

  .comparison-container {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    border-radius: 12px;
  }

  .comparison-img-after {
    object-position: center center;
  }

  /* Reduce heavy shadows on tablet for clarity */
  .comparison-container {
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  }

  /* Improve spacing around the results section */
  .transformation-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Small tablet / large phone fallback */
@media (min-width: 520px) and (max-width: 699px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .comparison-container {
    aspect-ratio: 3 / 4;
    min-height: 300px;
  }
}

/* Very small devices: make results images stack and reduce heights */
@media (max-width: 425px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .comparison-container {
    aspect-ratio: auto;
    min-height: 180px;
    padding: 0;
  }

  .comparison-img-after,
  .comparison-img-before,
  .comparison-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .result-item,
  .result-card {
    padding: 0.4rem;
  }
}