/* === BRAND PAGE (brand-landing.html) SPECIFIC STYLES === */

/* Athlete page wrapper with glass overlay */
.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.page-wrapper.visible {
  opacity: 1;
}

.page-wrapper.glass-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 141, 64, 0.02) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(230, 103, 54, 0.01) 0%,
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.008) 0%,
      transparent 20%,
      transparent 80%,
      rgba(255, 255, 255, 0.004) 100%
    );
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  opacity: 0.6;
}

/* === MINIMALIST HEADER === */
.athlete-header {
  padding: 30px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  height: 100px;
}

/* === ATHLETE HERO SECTION === */
.athlete-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
}

.athlete-headline {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(52px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffb366;
  text-shadow:
    0 0 30px rgba(255, 179, 102, 0.3),
    0 0 60px rgba(255, 179, 102, 0.1);

  /* Add the sunrise animation */
  animation:
    fadeInUp 0.8s var(--smooth-easing) forwards,
    sunriseGlow 2.5s 0.3s ease-out forwards;

  /* Ensure the final state persists after animation */
  animation-fill-mode: forwards;
}

.athlete-subheadline {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Inline Explorer Container */
.inline-explorer {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0 20px;
}

/* Bridge Layer Container */
.bridge-layer {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
  animation: bridgeFadeIn 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}

/* Subtle Divider with Glow */
.bridge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0.6;
}

.divider-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,141,64,0.3) 20%,
    rgba(255,141,64,0.6) 50%,
    rgba(255,141,64,0.3) 80%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(255,141,64,0.2);
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: #FF8D40;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,141,64,0.5);
}

/* Bridge Heading - Action-Oriented */
.bridge-heading {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

/* Bridge Subtext - Framing Sentence */
.bridge-subtext {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin: 0 0 36px 0;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* Skip button */
.skip-container {
  text-align: center;
  margin: 24px 0 32px 0;
  padding: 0 20px;
}

.skip-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
  position: relative;
  display: inline-block;
}

.skip-link:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03);
}

.skip-link:active {
  transform: scale(0.98);
}

.skip-arrow {
  color: #FF8D40;
  font-weight: 700;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.skip-link:hover .skip-arrow {
  transform: translateX(4px);
}

.skip-container.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Card Grid - Mobile First */
.journey-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0;
}

/* Desktop card adjustments */
@media (min-width: 768px) {
  .journey-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .info-card .card-icon {
    font-size: 56px;
  }

  .info-card .card-label {
    font-size: 22px;
  }
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

.step-num {
  font-size: 28px;
  font-weight: 900;
  color: #FF8D40;
  line-height: 1;
  flex-shrink: 0;
}

.step-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.step-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.metric {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #FF8D40;
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

.benefit-emoji {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

/* CTA Container */
.cta-container {
  text-align: center;
  padding: 32px 20px;
  animation: fadeInUp 0.5s cubic-bezier(0.4,0,0.2,1);
}

.completion-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(16,185,129,0.3);
}

.cta-heading {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #fff;
}

.cta-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #000;
  font-weight: 800;
  font-size: 20px;
  padding: 20px 56px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16,185,129,0.5);
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 0;
}

/* === MINIMAL FOOTER === */
.athlete-footer {
  padding: 60px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--brand);
}

.footer-link:hover::after {
  width: 100%;
}

.copyright {
  color: var(--text-dim);
  font-size: 14px;
}

/* === DOWN ARROW NAVIGATION === */
.scroll-down-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 141, 64, 0.1);
  border: 1px solid rgba(255, 141, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
  cursor: pointer;
  transition: all 0.3s var(--smooth-easing);
  position: relative;
  z-index: 10;
}

.scroll-down-btn:hover {
  background: rgba(255, 141, 64, 0.2);
  border-color: var(--brand);
  transform: translateY(5px) scale(1.05);
}

.scroll-down-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
  transition: transform 0.3s ease;
}

.scroll-down-btn:hover svg {
  transform: translateY(3px);
}

/* === RESPONSIVE DESIGN - ATHLETE PAGE === */

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

@media (max-width: 767px) {
  .athlete-header {
    padding: 20px 24px;
    height: 80px;
  }

  .header-logo {
    height: 50px;
  }

  .athlete-hero {
    padding: 120px 20px 60px;
  }

  .athlete-headline {
    font-size: clamp(42px, 8vw, 56px);
  }

  .hero-cta {
    padding: 20px 30px;
    min-width: auto;
  }

  .journey-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-cta-evolution {
    gap: 15px;
  }

  .cta-btn {
    min-width: 280px;
    padding: 18px 36px;
    font-size: 16px;
  }

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

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

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }

  .footer-link {
    padding: 12px 0;
  }
}

@media (min-width: 768px) {
  .athlete-subheadline {
    font-size: 19px;
    max-width: 750px;
    line-height: 1.6;
  }

  .bridge-layer {
    margin-bottom: 48px;
  }

  .divider-line {
    width: 180px;
  }

  .bridge-heading {
    font-size: 40px;
    margin-bottom: 14px;
  }

  .bridge-subtext {
    font-size: 18px;
    margin-bottom: 44px;
  }

  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1200px) {
  .athlete-subheadline {
    font-size: 20px;
    max-width: 820px;
  }
}

/* === ACCESSIBILITY - ATHLETE PAGE === */

@media (prefers-reduced-motion: reduce) {
  .athlete-headline {
    animation: fadeInUp 0.8s var(--smooth-easing) forwards;
    /* Skip the sunrise glow for reduced motion */
    color: #ffb366;
    text-shadow:
      0 0 30px rgba(255, 179, 102, 0.3),
      0 0 60px rgba(255, 179, 102, 0.1);
  }
}

/* Smooth section transitions */
.bridge-layer,
.journey-cards,
.skip-container {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bridge-layer[style*="display: none"],
.journey-cards[style*="display: none"] {
  opacity: 0;
  transform: translateY(-10px);
}

/* Hero CTA Evolution */
.hero-cta-evolution {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 250px;
  justify-content: center;
}

.cta-btn.primary {
  background: var(--brand-gradient);
  color: #000;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 141, 64, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.cta-btn.secondary:hover {
  background: var(--brand);
  color: #000;
  transform: translateY(-2px);
}

.progress-tracker {
  margin-top: 30px;
  text-align: center;
}

#progress-text {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
}

.progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s ease;
}

/* === HOW IT WORKS SECTION === */

.how-it-works-section {
  padding: 100px 24px 80px;
  position: relative;
  z-index: 2;
}

.how-it-works-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-subheading {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* === STEPS CONTAINER === */

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.08) 0%,
    rgba(255, 141, 64, 0.04) 100%
  );
  border: 1px solid rgba(255, 141, 64, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--smooth-easing);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.05) 0%,
    rgba(255, 141, 64, 0.02) 100%
  );
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s var(--smooth-easing);
  z-index: -1;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 141, 64, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(255, 141, 64, 0.1);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8d40 0%, #e66736 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 24px;
  position: relative;
  box-shadow: 0 8px 20px rgba(255, 141, 64, 0.3);
  transition: all 0.3s var(--smooth-easing);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 141, 64, 0.4);
}

.step-title {
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--smooth-easing);
}

.step-card:hover .step-title {
  color: var(--brand);
}

.step-description {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s var(--smooth-easing);
}

.step-card:hover .step-description {
  color: rgba(255, 255, 255, 0.8);
}

/* === VALUE PROPOSITIONS SECTION === */

.value-props-section {
  padding: 100px 24px 80px;
  position: relative;
  z-index: 2;
}

.value-props-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.06) 0%,
    rgba(255, 141, 64, 0.03) 100%
  );
  border: 1px solid rgba(255, 141, 64, 0.08);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--smooth-easing);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.04) 0%,
    rgba(255, 141, 64, 0.02) 100%
  );
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s var(--smooth-easing);
  z-index: -1;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 141, 64, 0.2);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 25px rgba(255, 141, 64, 0.15);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.3s var(--smooth-easing);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-title {
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--smooth-easing);
}

.value-card:hover .value-title {
  color: var(--brand);
}

.value-description {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s var(--smooth-easing);
}

.value-card:hover .value-description {
  color: rgba(255, 255, 255, 0.9);
}

/* === CUSTOMERS SECTION === */

.customers-section {
  padding: 100px 24px 80px;
  position: relative;
  z-index: 2;
}

.customers-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.customer-card {
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.04) 0%,
    rgba(255, 141, 64, 0.02) 100%
  );
  border: 1px solid rgba(255, 141, 64, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--smooth-easing);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.customer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.03) 0%,
    rgba(255, 141, 64, 0.01) 100%
  );
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s var(--smooth-easing);
  z-index: -1;
}

.customer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 141, 64, 0.15);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 0 15px rgba(255, 141, 64, 0.08);
}

.customer-card:hover::before {
  opacity: 1;
}

.customer-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s var(--smooth-easing);
}

.customer-card:hover .customer-icon {
  transform: scale(1.05);
}

.customer-title {
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  transition: color 0.3s var(--smooth-easing);
}

.customer-card:hover .customer-title {
  color: var(--brand);
}

.customer-description {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s var(--smooth-easing);
}

.customer-card:hover .customer-description {
  color: rgba(255, 255, 255, 0.85);
}

/* === SECTION SPACING === */

/* Major content sections */
.how-it-works-section,
.value-props-section,
.customers-section,
.final-cta-section {
  padding: 80px 24px;
}

@media (max-width: 767px) {
  .how-it-works-section,
  .value-props-section,
  .customers-section,
  .final-cta-section {
    padding: 48px 20px;
  }
}

/* Hero section has reduced bottom padding */
.athlete-hero {
  padding: 120px 24px 60px;
}

@media (max-width: 767px) {
  .athlete-hero {
    padding: 80px 20px 40px;
  }
}

/* === SECTION DIVIDERS === */

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 179, 102, 0.2) 50%,
    transparent
  );
  margin: 80px 0;
}

@media (max-width: 767px) {
  .section-divider {
    margin: 48px 0;
  }
}

.section-divider-thick {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 141, 64, 0.3) 20%,
    rgba(255, 141, 64, 0.5) 50%,
    rgba(255, 141, 64, 0.3) 80%,
    transparent 100%
  );
  margin: 80px 0;
  opacity: 0.7;
}

/* === FINAL CTA SECTION === */

.final-cta-section {
  padding: 120px 24px 100px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.05) 0%,
    rgba(255, 141, 64, 0.02) 100%
  );
  margin-top: 40px;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-subheading {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-button-container {
  margin-bottom: 40px;
}

.cta-primary-btn {
  background: linear-gradient(135deg, #ff8d40 0%, #e66736 100%);
  color: white;
  padding: 20px 48px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--smooth-easing);
  box-shadow: 0 8px 25px rgba(255, 141, 64, 0.3);
  display: inline-block;
  min-width: 250px;
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 141, 64, 0.4);
  color: white;
}

.trust-indicators {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.trust-indicators::before {
  content: '';
  display: block;
  margin-bottom: 10px;
}

/* === STATS BAR SECTION === */

.stats-bar-section {
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.stats-bar-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-bar-section .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 100%;
}

.stats-bar-section .metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 141, 64, 0.08);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s var(--smooth-easing);
  backdrop-filter: blur(4px);
}

.stats-bar-section .metric:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 141, 64, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.stats-bar-section .metric strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #FF8D40;
  margin-bottom: 8px;
  line-height: 1;
}

.stats-bar-section .metric p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

/* === HERO CTA SECTION === */

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.hero-cta-primary {
  background: linear-gradient(135deg, #ff8d40 0%, #e66736 100%);
  color: white;
  padding: 20px 48px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--smooth-easing);
  box-shadow: 0 8px 25px rgba(255, 141, 64, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  text-align: center;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 141, 64, 0.4);
  color: white;
}

.btn-explore {
  background: transparent;
  border: 2px solid #ffb366;
  color: #ffb366;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

.btn-explore:hover {
  background: rgba(255, 179, 102, 0.1);
  transform: translateY(-2px);
}

.btn-explore svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-explore:hover svg {
  transform: translateY(3px);
}

.hero-description {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

/* === FINAL CTA SECTION === */

.cta-section {
  padding: 120px 24px 100px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 141, 64, 0.03) 0%,
    rgba(255, 141, 64, 0.01) 100%
  );
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-subheading {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8d40 0%, #e66736 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--smooth-easing);
  box-shadow: 0 8px 25px rgba(255, 141, 64, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 141, 64, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  padding: 18px 40px;
  border: 2px solid var(--brand);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--smooth-easing);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 141, 64, 0.2);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge::before {
  content: '✓';
  color: var(--brand);
  font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .section-heading {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .section-subheading {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .scroll-down-btn {
    width: 50px;
    height: 50px;
    margin: 40px auto 0;
  }

  .scroll-down-btn svg {
    width: 20px;
    height: 20px;
  }

  .athlete-benefits .scroll-down-btn {
    display: none;
  }

  .how-it-works-section {
    padding: 80px 24px 60px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-card {
    padding: 32px 24px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 15px;
  }

  .value-props-section {
    padding: 80px 24px 60px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .value-card {
    padding: 40px 24px;
  }

  .value-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .value-title {
    font-size: 20px;
  }

  .value-description {
    font-size: 15px;
  }

  .customers-section {
    padding: 80px 24px 60px;
  }

  .customer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .customer-card {
    padding: 28px 20px;
  }

  .customer-icon {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .customer-title {
    font-size: 16px;
  }

  .customer-description {
    font-size: 13px;
  }

  .final-cta-section {
    padding: 80px 24px 60px;
  }

  .cta-heading {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .cta-subheading {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .cta-primary-btn {
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
    font-size: 18px;
  }

  .trust-indicators {
    font-size: 14px;
    padding: 0 20px;
  }

  .stats-bar-section {
    padding: 40px 24px;
  }

  .stats-bar-section .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-bar-section .metric {
    padding: 20px 12px;
  }

  .stats-bar-section .metric strong {
    font-size: 24px;
  }

  .stats-bar-section .metric p {
    font-size: 13px;
  }

  .hero-cta-container {
    margin-top: 40px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
    font-size: 18px;
  }

  .cta-section {
    padding: 80px 24px 60px;
  }

  .cta-heading {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .cta-subheading {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .trust-badges {
    gap: 20px;
  }

  .trust-badge {
    font-size: 14px;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1199px) {
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .customer-card {
    padding: 30px 22px;
  }

  .stats-bar-section .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-bar-section .metric {
    padding: 22px 14px;
  }

  .stats-bar-section .metric strong {
    font-size: 26px;
  }
}

/* Large Desktop Enhancements */
@media (min-width: 1200px) {
  .section-heading {
    font-size: 56px;
    margin-bottom: 18px;
  }

  .section-subheading {
    font-size: 22px;
    margin-bottom: 70px;
  }

  .value-grid {
    gap: 50px;
  }

  .value-card {
    padding: 56px 40px;
  }

  .value-icon {
    font-size: 52px;
    margin-bottom: 28px;
  }

  .value-title {
    font-size: 24px;
  }

  .customer-grid {
    gap: 40px;
  }

  .customer-card {
    padding: 36px 28px;
  }

  .customer-icon {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .customer-title {
    font-size: 20px;
  }

  .customer-description {
    font-size: 15px;
  }

  .cta-heading {
    font-size: 52px;
    margin-bottom: 24px;
  }

  .cta-subheading {
    font-size: 22px;
    margin-bottom: 60px;
  }

  .cta-primary-btn {
    padding: 22px 56px;
    font-size: 22px;
    min-width: 280px;
  }

  .trust-indicators {
    font-size: 18px;
  }

  .stats-bar-section .metrics-grid {
    gap: 32px;
  }

  .stats-bar-section .metric {
    padding: 28px 20px;
  }

  .stats-bar-section .metric strong {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .stats-bar-section .metric p {
    font-size: 15px;
  }

  .hero-description {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .hero-buttons {
    gap: 20px;
  }

  .hero-cta-primary,
  .btn-explore {
    padding: 18px 36px;
    font-size: 20px;
  }

  .cta-heading {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .cta-subheading {
    font-size: 22px;
    margin-bottom: 60px;
  }

  .cta-buttons {
    gap: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 20px 48px;
    font-size: 20px;
  }

  .trust-badges {
    gap: 40px;
  }

  .trust-badge {
    font-size: 18px;
  }
}
}