/* ========================================
   ELEVATEPRO SOCCER TRAINING — LANDING PAGE
   Brand Colors:
   - Navy Blue:    #1B2D5B (primary)
   - Deep Navy:    #0d1a36
   - Gold:         #C9A227 (accent)
   - Light Gold:   #E6B935
   - White:        #FFFFFF
   ======================================== */

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #1B2D5B;
  line-height: 1.2;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
}

.highlight {
  color: #C9A227;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: #C9A227;
  color: #1B2D5B;
}

.btn--primary:hover {
  background: #E6B935;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.5);
}

.btn--outline {
  background: transparent;
  color: #1B2D5B;
  border: 2px solid #C9A227;
}

.btn--outline:hover {
  background: #C9A227;
  color: #1B2D5B;
  transform: translateY(-2px);
}

.btn--gold {
  background: #C9A227;
  color: #1B2D5B;
}

.btn--gold:hover {
  background: #E6B935;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.5);
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 26, 54, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-img {
  height: 55px;
  width: auto;
}

.header__cta {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    url('images/hero_image.png') center center / cover no-repeat,
    linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  overflow: hidden;
}

/* Cinematic gradient overlay — darker on right (form side), atmospheric on left */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Right-to-left dark gradient ensures form readability */
    linear-gradient(90deg, rgba(13, 26, 54, 0.55) 0%, rgba(13, 26, 54, 0.7) 45%, rgba(13, 26, 54, 0.92) 100%),
    /* Top vignette for depth */
    linear-gradient(180deg, rgba(13, 26, 54, 0.6) 0%, transparent 25%, transparent 75%, rgba(13, 26, 54, 0.7) 100%);
}

/* Subtle gold glow accent */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 85vh;
}

.hero__text {
  text-align: left;
  animation: heroFadeIn 0.9s ease-out;
}

/* Eyebrow tag above title */
.hero__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #C9A227;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 6px 14px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.08);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__title .highlight {
  color: #C9A227;
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  max-width: 560px;
}

/* Trust indicators row */
.hero__trust {
  display: flex;
  gap: 28px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: #C9A227;
  flex-shrink: 0;
}

.hero__form-wrap {
  position: relative;
  z-index: 2;
  animation: heroFadeInRight 0.9s ease-out 0.2s both;
}

.hero__form {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 36px 30px 30px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 162, 39, 0.2),
    0 0 80px rgba(201, 162, 39, 0.08);
  border-top: 4px solid #C9A227;
  position: relative;
}

.hero__form::before {
  content: 'FREE TRIAL';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C9A227;
  color: #1B2D5B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.hero__form-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 4px;
  margin-top: 6px;
}

.hero__form-sub {
  text-align: center;
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 20px;
}

.hero__form-success {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 50px 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 162, 39, 0.2);
  text-align: center;
  border-top: 4px solid #C9A227;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #1B2D5B;
}

.hero__form-success p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.form-required {
  color: #e53935;
}

.signup__success-icon {
  width: 80px;
  height: 80px;
  background: #C9A227;
  color: #1B2D5B;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Hero features bar */
.hero__features {
  position: relative;
  z-index: 2;
  background: rgba(13, 26, 54, 0.6);
  backdrop-filter: blur(6px);
  padding: 40px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.hero__features .features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero__features .feature-card {
  text-align: center;
  padding: 20px 16px;
  background: transparent;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero__features .feature-card:hover {
  background: rgba(201, 162, 39, 0.08);
}

.hero__features .feature-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  color: #C9A227;
}

.hero__features .feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.hero__features .feature-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero__features .feature-card__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ---------- FORM ---------- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1B2D5B;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
  color: #333;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
  background: #fff;
}

.form-group input::placeholder {
  color: #aaa;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- TRAINING VIDEO SECTION ---------- */
.video-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #0d1a36 0%, #1B2D5B 100%);
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.video-section__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.video-section__content {
  color: #fff;
}

.video-section__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #C9A227;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 6px 14px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.08);
}

.video-section .section-title {
  color: #fff;
  text-align: left;
}

.video-section__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.video-section__points {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.video-section__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  padding: 10px 0;
  font-weight: 500;
}

.video-section__points svg {
  width: 22px;
  height: 22px;
  color: #C9A227;
  flex-shrink: 0;
  padding: 4px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 50%;
}

.video-section__wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(201, 162, 39, 0.3),
    0 0 100px rgba(201, 162, 39, 0.2);
}

.video-section__player {
  width: 100%;
  height: 100%;
  display: block;
  background: #0d1a36;
  object-fit: cover;
}

.video-section__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
  .video-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .video-section .section-title {
    text-align: center;
  }

  .video-section__points {
    display: inline-block;
    text-align: left;
  }

  .video-section__wrap {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .video-section {
    padding: 70px 0;
  }

  .video-section__wrap {
    max-width: 280px;
    border-radius: 20px;
  }

  .video-section__glow {
    border-radius: 20px;
  }
}

/* ---------- WHY CHOOSE US ---------- */
.why {
  padding: 100px 0;
  background: #f8f9fa;
}

.why__intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.why__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why__card {
  text-align: center;
  padding: 20px 16px;
}

.why__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.why__card-icon svg {
  width: 100%;
  height: 100%;
}

.why__card h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 8px;
  font-style: italic;
}

.why__card p {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---------- PROGRAMS ---------- */
.programs {
  padding: 100px 0;
}

.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #C9A227;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.program-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  display: block;
}

.program-card__body {
  padding: 32px;
}

.program-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1B2D5B;
}

.program-card__text {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  border-left: 4px solid #C9A227;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #C9A227;
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__author strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1B2D5B;
  font-size: 0.9375rem;
}

.testimonial-card__author span {
  font-size: 0.8125rem;
  color: #888;
}

/* ---------- COACH ---------- */
.coach {
  padding: 100px 0;
}

.coach__card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
}

.coach__headshot {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #C9A227;
}

.coach__name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1B2D5B;
  margin-bottom: 4px;
}

.coach__role {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #C9A227;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.coach__bio {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 54, 0.85);
  z-index: 1;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.final-cta__benefits {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__benefit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 22px 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}

.final-cta__benefit:hover {
  transform: translateY(-4px);
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.6);
}

.final-cta__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A227 0%, #E6B935 100%);
  color: #1B2D5B;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.final-cta__benefit-icon svg {
  width: 16px;
  height: 16px;
}

.final-cta__benefit:hover .final-cta__benefit-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0d1a36;
  padding: 40px 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 60px;
  width: auto;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero {
    background:
      url('images/hero_image_mobile.jpg') center 25% / cover no-repeat,
      linear-gradient(135deg, #1B2D5B 0%, #0d1a36 100%);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(13, 26, 54, 0.55) 0%, rgba(13, 26, 54, 0.75) 45%, rgba(13, 26, 54, 0.95) 100%);
  }

  .hero::before {
    display: none;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 110px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero__text {
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__form {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

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

  .coach__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coach__image {
    display: flex;
    justify-content: center;
  }

  .coach__headshot {
    width: 280px;
    height: 280px;
  }

  .final-cta__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero__container {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .hero__eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 2px;
    padding: 5px 10px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__trust {
    gap: 14px;
    margin-top: 1.5rem;
  }

  .hero__trust-item {
    font-size: 0.75rem;
  }

  .hero__form {
    padding: 28px 20px 24px;
  }

  .hero__features .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero__features .feature-card {
    padding: 14px 10px;
  }

  .hero__features .feature-card__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .hero__features .feature-card__title {
    font-size: 0.8125rem;
  }

  .hero__features .feature-card__text {
    font-size: 0.75rem;
  }

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

  .final-cta__benefits {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 16px;
  }

  .final-cta__benefit {
    justify-content: flex-start;
    font-size: 0.875rem;
    padding: 10px 18px 10px 12px;
  }

  .final-cta__title {
    font-size: 1.5rem;
  }

  .header__logo-img {
    height: 42px;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .coach__card {
    gap: 30px;
  }

  .coach__headshot {
    width: 220px;
    height: 220px;
  }
}

/* ========================================
   ANIMATION SYSTEM
   ======================================== */

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #C9A227 0%, #E6B935 50%, #C9A227 100%);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
  transition: width 0.05s linear;
}

/* ---------- BASE REVEAL ---------- */
.reveal-ready {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Lateral reveals based on layout */
.video-section__content.reveal-ready {
  transform: translateX(-40px);
}
.video-section__content.reveal-in {
  transform: translateX(0);
}

.video-section__wrap.reveal-ready {
  transform: translateX(40px) scale(0.96);
}
.video-section__wrap.reveal-in {
  transform: translateX(0) scale(1);
}

/* Cards scale + lift in */
.feature-card.reveal-ready,
.program-card.reveal-ready,
.testimonial-card.reveal-ready,
.why__card.reveal-ready {
  transform: translateY(40px) scale(0.96);
}
.feature-card.reveal-in,
.program-card.reveal-in,
.testimonial-card.reveal-in,
.why__card.reveal-in {
  transform: translateY(0) scale(1);
}

/* ---------- POP-IN (form success) ---------- */
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85); }
  60% { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.animate-in-pop {
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- HERO GOLD HIGHLIGHT SHIMMER ---------- */
.hero__title .highlight {
  background: linear-gradient(120deg, #C9A227 0%, #E6B935 30%, #FFF1C2 50%, #E6B935 70%, #C9A227 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- HERO EYEBROW FLOAT ---------- */
@keyframes eyebrowGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 162, 39, 0); }
  50% { box-shadow: 0 0 24px rgba(201, 162, 39, 0.25); }
}
.hero__eyebrow {
  animation: eyebrowGlow 3s ease-in-out infinite;
}

/* ---------- HERO FORM BADGE PULSE ---------- */
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4), 0 0 0 0 rgba(201, 162, 39, 0.5);
  }
  50% {
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4), 0 0 0 12px rgba(201, 162, 39, 0);
  }
}
.hero__form::before {
  animation: badgePulse 2.5s ease-out infinite;
}

/* ---------- BUTTON ENHANCEMENTS ---------- */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, background 0.3s;
}

.btn--primary::after,
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover::after,
.btn--gold:hover::after {
  left: 100%;
}

.btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ---------- HEADER ENHANCEMENTS ---------- */
.header {
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  padding: 8px 0;
  background: rgba(13, 26, 54, 0.97);
}

/* ---------- FEATURE CARD HOVER ---------- */
.hero__features .feature-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

.hero__features .feature-card:hover {
  transform: translateY(-6px);
}

.hero__features .feature-card__icon {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}

.hero__features .feature-card:hover .feature-card__icon {
  transform: scale(1.15) rotate(-6deg);
  color: #E6B935;
}

/* ---------- WHY CARD HOVER ---------- */
.why__card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why__card:hover {
  transform: translateY(-8px);
}

.why__card-icon {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why__card:hover .why__card-icon {
  transform: scale(1.12) rotate(5deg);
}

/* ---------- PROGRAM CARD HOVER (image zoom) ---------- */
.program-card {
  position: relative;
}

.program-card > img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.program-card__body {
  position: relative;
}

.program-card__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #C9A227, #E6B935);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-card__body::before {
  width: 100%;
}

/* ---------- TESTIMONIAL CARD HOVER ---------- */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card__stars {
  transition: transform 0.3s;
}

.testimonial-card:hover .testimonial-card__stars {
  transform: scale(1.08);
}

/* ---------- COACH IMAGE EFFECT ---------- */
.coach__headshot {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.coach__headshot:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.3);
}

/* ---------- FORM ENHANCEMENTS ---------- */
.form-group {
  position: relative;
  transition: transform 0.3s;
}

.form-group--focused label {
  color: #C9A227;
}

.form-group input,
.form-group select {
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  transform: translateY(-1px);
}

/* ---------- LINK HOVER ---------- */
.header__logo {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__logo:hover {
  transform: scale(1.05);
}

/* ---------- VIDEO SECTION GLOW ---------- */
@keyframes videoGlow {
  0%, 100% {
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(201, 162, 39, 0.3),
      0 0 100px rgba(201, 162, 39, 0.2);
  }
  50% {
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(201, 162, 39, 0.5),
      0 0 140px rgba(201, 162, 39, 0.35);
  }
}

.video-section__wrap {
  animation: videoGlow 4s ease-in-out infinite;
}

/* ---------- FLOATING DECORATIVE GLOWS ---------- */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero::before,
.video-section::before {
  animation: floatBlob 12s ease-in-out infinite;
}

/* ---------- FINAL CTA UNDERLINE ANIM ---------- */
@keyframes ctaAccent {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(1.05); opacity: 1; }
}

.final-cta__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C9A227, #E6B935);
  margin: 1.5rem auto 0;
  border-radius: 2px;
  animation: ctaAccent 2.5s ease-in-out infinite;
}

/* ---------- BOUNCE-IN CHECKMARKS ---------- */
.hero__trust-item svg,
.video-section__points svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__trust-item:hover svg,
.video-section__points li:hover svg {
  transform: scale(1.25) rotate(8deg);
}

/* ---------- SCROLL DOWN INDICATOR (hero) ---------- */
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0) translateX(-50%); opacity: 0.6; }
  50% { transform: translateY(10px) translateX(-50%); opacity: 1; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }
}
