/* ==========================================================================
   Design System
   - Primary: #000 (black)
   - Background: #fff (white)
   - Secondary text: #666
   - Borders: #e5e5e5
   - No shadows, clean surfaces
   ========================================================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  padding-top: 56px;

}

footer.footer {
    background: #f9f9f9;
}

section#finalCta {
    padding-top: 0px;
    padding-bottom: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  z-index: 1000;
}

.header-logo {
  height: 16px;
  width: auto;
}

/* ==========================================================================
   Floating Header
   ========================================================================== */

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}

.floating-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.floating-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.floating-header .logo img {
  height: 18px;
  width: auto;
}

.floating-header .logo:hover {
  opacity: 0.7;
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-stars {
  color: #faaf00;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.header-clients {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
}

/* ==========================================================================
   Page Content
   ========================================================================== */

.page-content {
  background: #fff;
  min-height: 100vh;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

p {
  color: #333;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 32px 0 40px;
  border-bottom: none;
}

.trust-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
}

.trust-stars {
  color: #faaf00;
  letter-spacing: 2px;
}

.transformation {
  margin-top: 32px;
}

.transformation-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.image-card {
  flex: 1;
  max-width: 200px;
}

.image-placeholder {
  aspect-ratio: 3 / 4;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #999;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.image-placeholder.after {
  background: #000;
  color: #fff;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 8px;
}

.arrow {
  font-size: 1.5rem;
  color: #ccc;
  flex-shrink: 0;
}

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

.client-name {
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.client-stat {
  font-size: 0.875rem;
  color: #666;
}

.subheadline {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  display: none;
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */

.scroll-indicator {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.scroll-indicator-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #999;
}

/* ==========================================================================
   Stories Swiper
   ========================================================================== */

.swiper.stories-swiper.swiper-initialized.swiper-horizontal.swiper-free-mode.swiper-watch-progress.swiper-backface-hidden {
    padding: 50px;
    padding-top: 20px;
}

.swiper-wrapper {
    padding-bottom: 40px;
    padding-top: 30px;
}

.stories-swiper {
  padding: 40px 120px;
  overflow: visible;
  touch-action: pan-y pinch-zoom;
  position: relative;
}

.stories-swiper::before,
.stories-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.stories-swiper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.stories-swiper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.stories-swiper .swiper-slide {
  width: 490px;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.stories-swiper .swiper-slide-prev,
.stories-swiper .swiper-slide-next {
  opacity: 0.7;
  filter: blur(2px);
}

.story-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #0d0d0d1a;
  flex-shrink: 0;
  width: 490px;
  min-height: 420px;
}

.story-card:active {
  cursor: grabbing;
}

@media (max-width: 540px) {
  .hero {
    padding: 24px 0 16px;
  }

  .value {
    padding: 24px 16px;
  }

  .value .container {
    padding: 32px 20px;
  }

  .faq {
    padding: 24px 0;
  }

  .reviews {
    padding: 24px 0;
  }

  .stories-swiper {
    padding: 8px 0 40px;
  }

  .stories-swiper .swiper-wrapper {
    padding-top: 10px;
  }

  .stories-swiper .swiper-slide {
    width: 80vw;
  }

  .story-card {
    width: 100%;
    min-height: auto;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .stories-swiper::before,
  .stories-swiper::after {
    display: none;
  }
}

.story-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.story-image {
  flex: 1;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image .image-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  margin: 0;
  white-space: nowrap;
}

.story-image.placeholder-img {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #999;
}

.story-image.placeholder-img.after {
  background: #000;
  color: #fff;
}

.story-arrow {
  font-size: 1.25rem;
  color: #ccc;
  flex-shrink: 0;
}

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

.story-quote {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 8px;
}

.story-scroll-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 12px;
}

.story-meta {
  font-size: 0.8125rem;
  color: #666;
}

.story-meta strong {
  color: #000;
}

/* ==========================================================================
   Featured Story Section
   ========================================================================== */

.featured-story {
  padding: 0 24px 60px;
  opacity: 0;
  transform: scale(0.92) translateY(-40px);
  will-change: transform, opacity;
}

.coach-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: #f7f7f7;
  border-radius: 20px;
}

.coach-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.coach-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.coach-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.coach-card-title {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.coach-card-proof {
  font-size: 0.8rem;
  color: #000;
  margin: 0;
  font-weight: 500;
}

.coach-stars {
  color: #faaf00;
}

.coach-pill {
  background: #fff;
  color: #333;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  margin-left: auto;
}

@media (max-width: 540px) {
  .coach-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .coach-card-avatar {
    width: 80px;
    height: 80px;
  }

  .coach-card-info {
    align-items: center;
  }

  .coach-pill {
    margin-left: 0;
  }
}

.featured-story .featured-story-card {
  transition: opacity 0.2s ease;
}

.featured-story.updating .featured-story-card {
  opacity: 0.3;
}

.featured-story-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-story-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.featured-story-image {
  position: relative;
  width: 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.featured-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-story-image .image-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.featured-story-arrow {
  font-size: 1.75rem;
  color: #999;
  flex-shrink: 0;
}

.featured-story-content {
  text-align: center;
}

.featured-story-result {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.featured-story-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  font-style: italic;
}

.featured-story-quote::before {
  content: '"';
}

.featured-story-quote::after {
  content: '"';
}

.featured-story-meta {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 28px;
}

.featured-story-meta strong {
  color: #000;
}

.featured-story-cta.cta-button {
  background: #000 !important;
  color: #fff !important;
  padding: 16px 40px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-story-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.featured-story-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-story-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.featured-story-text:last-child {
  margin-bottom: 0;
}

.featured-story-content {
  text-align: center;
  padding: 24px 0;
}

.featured-story-content:first-of-type {
  padding-top: 0;
}

.featured-story-extra-images {
  margin: 8px 0;
}

.featured-story-results {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  text-align: left;
  display: inline-block;
}

.featured-story-results li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.featured-story-results li::before {
  content: none;
}

.featured-story-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #eee;
  margin-top: 24px;
}

/* Hide expanded content by default, show when expanded */
.featured-story .featured-story-content:not(:first-of-type),
.featured-story .featured-story-extra-images {
  display: none;
}

.featured-story.expanded .featured-story-content:not(:first-of-type),
.featured-story.expanded .featured-story-extra-images {
  display: block;
}

.featured-story.expanded .featured-story-extra-images {
  display: flex;
}

/* Extended story sections (hidden by default, shown via JS) */
.featured-story-extended {
  display: none;
}

.featured-story-content.featured-story-extended,
#featuredMiddle,
#featuredResults {
  text-align: left;
}

.featured-story-blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: #333;
  border-left: 3px solid #f97316;
  padding-left: 16px;
  margin: 0;
}

.featured-story-method {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.method-dont,
.method-do {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.method-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.method-dont {
  color: #666;
}

.method-dont .method-icon {
  color: #ef4444;
}

.method-do {
  color: #333;
  font-weight: 500;
}

.method-do .method-icon {
  color: #22c55e;
}

.featured-story-not-for {
  margin-top: 16px;
  color: #666;
  font-style: italic;
}

.featured-story-cta-text {
  font-weight: 500;
  color: #000;
}

.cta-button.cta-button-dark {
  background: #000 !important;
  color: #fff !important;
}

.cta-button.cta-button-dark:hover {
  background: #222 !important;
}

@media (max-width: 540px) {
  .featured-story {
    padding: 0 16px 40px;
  }

  .featured-story-card {
    padding: 24px;
    border-radius: 20px;
  }

  .featured-story-images {
    gap: 12px;
    margin-bottom: 24px;
  }

  .featured-story-image {
    width: 130px;
    height: 170px;
    border-radius: 12px;
  }

  .featured-story-arrow {
    font-size: 1.25rem;
  }

  .featured-story-result {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .featured-story-quote {
    font-size: 0.9375rem;
  }

  .featured-story-cta {
    width: 100%;
    padding: 14px 32px;
  }

  .featured-story-headline {
    font-size: 1.0625rem;
  }

  .featured-story-text {
    font-size: 0.9375rem;
  }

  .featured-story-content {
    padding: 20px 0;
  }

  .featured-story-results li {
    font-size: 0.9375rem;
  }

  .featured-story-footer {
    padding-top: 20px;
    margin-top: 20px;
  }

  .featured-story-blockquote {
    font-size: 1rem;
    padding-left: 12px;
  }

  .method-dont,
  .method-do {
    font-size: 0.9375rem;
  }
}

/* ==========================================================================
   Value Section
   ========================================================================== */

.value {
  padding: 40px 24px;
  text-align: center;
}

.value-mobile-title {
  display: none;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .value-mobile-title {
    display: block;
  }
}

.value .container {
  background: #f8f8f8;
  padding: 48px 24px;
  border-radius: 24px;
}

.urgency-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .urgency-title {
    display: none;
  }
}

.value-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}

.value-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 9999px;
}

.value-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.value-content p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.value-cta {
  margin-top: 32px;
  text-align: center;
}

.urgency-tagline {
  display: none;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 12px;
}

@media (max-width: 540px) {
  .urgency-tagline {
    display: block;
  }
}

.value-cta .cta-button {
  background: #000;
  color: #fff;
}

.urgency-stamps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.urgency-stamps span {
  font-size: 0.75rem;
  color: #666;
}

.urgency-stamps .divider {
  width: 1px;
  height: 12px;
  background: #ccc;
}

/* ==========================================================================
   As Seen In
   ========================================================================== */

.seen-in {
  padding: 32px 0;
  border-bottom: none;
}

.seen-in-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}

.seen-in-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-size: 0.875rem;
  color: #ccc;
  padding: 12px 24px;
  border: 1px solid #e5e5e5;
}

/* ==========================================================================
   Blockquote
   ========================================================================== */

blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 32px;
}

blockquote p {
  margin-bottom: 16px;
}

blockquote p:last-of-type {
  margin-bottom: 20px;
}

blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: #000;
}

/* ==========================================================================
   Sticky CTA Footer
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  max-width: 760px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Opacity controlled by JS scroll handler */

.sticky-cta-inner {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 12px 12px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 540px) {
  .sticky-cta {
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: none;
  }

  .sticky-cta-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .sticky-cta .cta-button {
    background: #000;
    color: #fff;
    padding: 18px 72px;
    font-size: 1.0625rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
  }
}

.sticky-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: none;
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #000;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  border-radius: 9999px;
}

.cta-button:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

section.value.aos-init.aos-animate {
    padding-top: 10px;
}

.trust {
  padding: 40px 0;
  border-bottom: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-number {
  font-size: 0.75rem;
  color: #999;
}

.step-text {
  font-size: 0.875rem;
  font-weight: 600;
}

.process-arrow {
  color: #ccc;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
  padding: 40px 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-of-type {
  border-top: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  font-family: inherit;
}

.faq-question:hover {
  color: #333;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews {
  padding: 40px 0;
  border-top: none;
}

.reviews-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.reviews-swiper {
  padding: 20px 60px;
  position: relative;
}

.reviews-swiper::before,
.reviews-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.reviews-swiper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.reviews-swiper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.reviews-swiper .swiper-slide {
  width: 300px;
}

@media (max-width: 540px) {
  .reviews-badge {
    padding: 0 24px;
    overflow: hidden;
    max-width: 100%;
  }

  .reviews-badge > div {
    transform: scale(0.85);
    transform-origin: center;
  }

  /* Hide review count in widget */
  .reviews-badge div > div > div:nth-child(7) > div:nth-child(1) {
    display: none;
  }

  .reviews-swiper {
    padding: 20px 0;
  }

  .reviews-swiper::before,
  .reviews-swiper::after {
    display: none;
  }
}

.review-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}

.review-stars {
  color: #faaf00;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

/* ==========================================================================
   Footer
   ========================================================================== */

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

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

.final-cta .container {
  background: #082336;
  color: #fff;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.final-cta-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.final-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.final-cta-text {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.6;
}

.final-cta-button {
  background: #fff !important;
  color: #000 !important;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
}

.final-cta-button:hover {
  background: #f0f0f0 !important;
}

.final-cta-urgency {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #fff;
}

.footer {
  padding: 32px 0;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: #999;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 480px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    max-width: 600px;
  }
}

@media (min-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 40px 0 36px;
    padding-top: 0px;
  }

  .transformation-images {
    gap: 32px;
  }

  .image-card {
    max-width: 240px;
  }

  .value,
  .story,
  .trust,
  .faq {
    padding: 36px 0;
  }

  .sticky-cta-text {
    display: block;
    font-size: 1.1rem;
  }

  .cta-button {
    width: auto;
    padding: 14px 40px;
    font-size: 1.1rem;
    border: nonce;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  .container {
    padding: 0 32px;
  }
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}

.modal.active {
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal.active .modal-backdrop {
  opacity: 1;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  width: calc(100% - 32px);
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px 24px 32px;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal.active .modal-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  background: #e9e9e9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  font-size: 1.25rem;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.modal-close:hover {
  color: #000;
  background: #ddd;
}

.modal-content > * + * {
  margin-top: 0.5rem;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
}

.modal-step-title {
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  text-transform: none;
}

.modal-coach-avatar {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.modal-header-text {
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.2;
}

/* ==========================================================================
   Story Modal
   ========================================================================== */

.story-modal-content {
  max-width: 560px;
  padding: 32px;
}

.story-modal-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.story-modal-image {
  position: relative;
  width: 200px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-modal-image .image-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.story-modal-arrow {
  font-size: 1.5rem;
  color: #999;
  flex-shrink: 0;
}

.story-modal-body {
  text-align: center;
  margin-bottom: 24px;
}

.story-modal-result {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.story-modal-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  font-style: italic;
}

.story-modal-quote::before {
  content: '"';
}

.story-modal-quote::after {
  content: '"';
}

.story-modal-meta {
  font-size: 0.875rem;
  color: #666;
}

.story-modal-cta {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.story-modal-cta:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.story-modal-image.placeholder-img {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  color: #999;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Story card clickable state */
.story-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 540px) {
  .story-modal-content {
    padding: 24px 16px;
  }

  .story-modal-images {
    gap: 12px;
  }

  .story-modal-image {
    width: 140px;
    height: 180px;
  }

  .story-modal-arrow {
    font-size: 1.25rem;
  }

  .story-modal-result {
    font-size: 1.125rem;
  }

  .story-modal-quote {
    font-size: 0.9375rem;
  }
}

/* ==========================================================================
   Form Progress
   ========================================================================== */

.form-progress {
  height: 4px;
  background: #e5e5e5;
  margin-top: 16px;
  margin-bottom: 32px;
}

.form-progress-bar {
  height: 100%;
  background: #000;
  transition: width 0.3s ease;
}

/* ==========================================================================
   Form Steps
   ========================================================================== */

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Honeypot - hidden from users */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Privacy text */
.form-privacy-text {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  line-height: 1.5;
}

.form-privacy-text a {
  color: #666;
  text-decoration: underline;
}

.form-privacy-text a:hover {
  color: #000;
}

.form-step h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
}

/* ==========================================================================
   Radio Options
   ========================================================================== */

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-option:hover {
  border-color: #000;
}

.radio-option input {
  display: none;
}

.radio-option input:checked + span {
  font-weight: 600;
}

.radio-option input:checked ~ span::before,
.radio-option:has(input:checked) {
  border-color: #000;
  background: #f5f5f5;
}

.radio-option span {
  font-size: 1rem;
  color: #000;
}

/* ==========================================================================
   Form Fields
   ========================================================================== */

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #000;
}

.form-field textarea {
  resize: vertical;
  min-height: 60px;
}

/* ==========================================================================
   Form Buttons
   ========================================================================== */

.form-back {
  display: block;
  background: none;
  border: none;
  font-size: 0.875rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  margin-top: 24px;
  text-align: center;
  width: 100%;
}

.form-back:hover {
  color: #000;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  background: #000;
  color: #fff;
}

/* ==========================================================================
   Form Success
   ========================================================================== */

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success h2 {
  margin-bottom: 12px;
}

.form-success p {
  color: #666;
  margin-bottom: 24px;
}

.form-success .cta-button {
  background: #000;
  color: #fff;
}

/* ==========================================================================
   Skeleton Loaders
   ========================================================================== */

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.story-image,
.featured-story-image {
  background: linear-gradient(
    90deg,
    #e8e8e8 25%,
    #f5f5f5 50%,
    #e8e8e8 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.story-image img,
.featured-story-image img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-image img.loaded,
.featured-story-image img.loaded {
  opacity: 1;
}

/* Stop shimmer when image is loaded */
.story-image:has(img.loaded),
.featured-story-image:has(img.loaded) {
  animation: none;
  background: transparent;
}
