:root {
  color-scheme: light;
  --site-font: "Barlow", sans-serif;
  --brand-yellow: #d9a21b;
  --bg: #f7faff;
  --bg-soft: #eef4ff;
  --surface: #ffffff;
  --text: #121926;
  --muted: #4f5d75;
  --accent: #2f6df6;
  --accent-soft: #2459cc;
  --highlight: #d9a21b;
  --border: #d9e4f5;
  --shadow: rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  background-color: #ffffff !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--site-font);
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

.site-top-logo {
  padding: 0.72rem 1rem 0.32rem;
}

.efford-logo {
  display: block;
  width: clamp(140px, 16vw, 220px);
  height: auto;
}

h1,
h2,
h3,
p,
li,
span,
a,
button,
summary,
blockquote,
.quote-credit,
.feature-tab,
.trusted-meta span {
  font-family: var(--site-font);
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.spring-sale-hidden {
  display: none !important;
}

.hero-sale-block {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 0.34rem clamp(0.76rem, 2vw, 1.34rem) 0.38rem;
  border-radius: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.62rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(
      118deg,
      #ff57c4 0%,
      #62d6ff 19%,
      #7bffac 36%,
      #ffe364 54%,
      #8cc5ff 71%,
      #bc8bff 86%,
      #ff87c3 100%
    ),
    radial-gradient(circle at 14% 30%, rgba(255, 144, 228, 0.52) 0%, rgba(255, 144, 228, 0) 52%),
    radial-gradient(circle at 80% 26%, rgba(164, 235, 255, 0.48) 0%, rgba(164, 235, 255, 0) 54%),
    radial-gradient(circle at 70% 80%, rgba(188, 255, 178, 0.4) 0%, rgba(188, 255, 178, 0) 60%),
    linear-gradient(166deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  background-size:
    100% 100%,
    210% 210%,
    150% 150%,
    145% 145%,
    155% 155%,
    100% 100%;
  background-position:
    50% 0%,
    0% 52%,
    14% 30%,
    80% 26%,
    70% 80%,
    50% 50%;
  box-shadow:
    0 10px 24px rgba(31, 20, 4, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 26px rgba(164, 232, 255, 0.2);
  text-align: center;
  animation: heroBannerColorDrift 18s ease-in-out infinite;
}

.hero-sale-block > * {
  position: relative;
  z-index: 1;
}

.hero-sale-block::before {
  content: "";
  position: absolute;
  inset: -12% -8% -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 52%, rgba(255, 212, 244, 0.28) 0%, rgba(255, 212, 244, 0) 52%),
    radial-gradient(ellipse at 32% 30%, rgba(205, 247, 255, 0.26) 0%, rgba(205, 247, 255, 0) 54%),
    radial-gradient(ellipse at 58% 62%, rgba(221, 255, 211, 0.24) 0%, rgba(221, 255, 211, 0) 52%),
    radial-gradient(ellipse at 86% 36%, rgba(237, 205, 255, 0.24) 0%, rgba(237, 205, 255, 0) 54%);
  filter: blur(12px);
  opacity: 0.92;
  transform: translate3d(-5%, 0, 0);
  animation: heroBannerCloudDrift 16s linear infinite alternate;
}

.hero-sale-block::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 146, 227, 0.9) 0%,
    rgba(164, 232, 255, 0.9) 18%,
    rgba(188, 255, 176, 0.88) 34%,
    rgba(255, 234, 163, 0.9) 50%,
    rgba(155, 217, 255, 0.88) 66%,
    rgba(214, 171, 255, 0.88) 82%,
    rgba(255, 178, 211, 0.9) 100%
  );
  box-shadow:
    0 0 10px rgba(255, 146, 227, 0.3),
    0 0 12px rgba(164, 232, 255, 0.26);
  pointer-events: none;
}

@keyframes heroBannerColorDrift {
  0% {
    background-position:
      50% 0%,
      0% 50%,
      14% 30%,
      80% 26%,
      70% 80%,
      50% 50%;
  }
  50% {
    background-position:
      50% 0%,
      100% 50%,
      24% 38%,
      66% 22%,
      58% 72%,
      50% 50%;
  }
  100% {
    background-position:
      50% 0%,
      0% 50%,
      14% 30%,
      80% 26%,
      70% 80%,
      50% 50%;
  }
}

@keyframes heroBannerCloudDrift {
  0% {
    transform: translate3d(-5%, 0, 0);
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0);
  }
  100% {
    transform: translate3d(6%, 0.5%, 0);
  }
}

.hero-sale-title {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(0.95rem, 1.45vw, 1.22rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow:
    0 1px 0 rgba(78, 50, 0, 0.28),
    0 6px 14px rgba(54, 36, 4, 0.18);
}

.hero-sale-support {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(0.96rem, 1.52vw, 1.22rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0.016em;
  text-shadow:
    0 1px 0 rgba(78, 50, 0, 0.28),
    0 6px 14px rgba(54, 36, 4, 0.18);
}

.sale-spots-pill {
  width: fit-content;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  margin: 0;
  padding: 0.24rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 241, 189, 0.58);
  background: linear-gradient(145deg, rgba(14, 23, 38, 0.88) 0%, rgba(17, 33, 56, 0.86) 100%);
  color: #ffffff;
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.sale-spots-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #c8f8ff 0%, #6cd6ff 62%, #36a9ff 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 10px rgba(108, 214, 255, 0.58);
}

.sale-spots-label {
  font-size: clamp(0.62rem, 0.88vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.86;
  white-space: nowrap;
}

.sale-spots-value {
  font-size: clamp(0.76rem, 1.04vw, 0.92rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.sale-spots-pill.is-updating {
  transform: translateY(-1px);
  box-shadow:
    0 14px 24px rgba(15, 23, 42, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 14px rgba(108, 214, 255, 0.38);
}

.hero {
  min-height: 88vh;
  background: var(--brand-yellow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 0 5rem;
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
  box-shadow:
    0 18px 36px rgba(102, 76, 8, 0.2),
    0 6px 14px rgba(15, 23, 42, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(255, 243, 196, 0.55) 0%,
    rgba(255, 226, 136, 0.35) 28%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(16px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(217, 162, 27, 0) 52%,
    rgba(245, 232, 178, 0.36) 70%,
    rgba(255, 255, 255, 0.78) 86%,
    #ffffff 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-top: 2.2rem;
  max-width: 100%;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 3.9rem);
  line-height: 1.06;
  margin: 0;
  max-width: 100%;
  color: #f8fbff;
  text-wrap: balance;
}

.hero-mobile-break {
  display: none;
}

.hero-highlight {
  color: #805800;
  font-weight: 800;
}

.hero h1 .hero-highlight {
  color: #ffffff;
}

.hero-subtitle {
  margin: 0.74rem 0 0;
  display: inline-block;
  width: fit-content;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(17, 24, 39, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 30px rgba(95, 66, 8, 0.16),
    0 0 18px rgba(255, 231, 166, 0.2);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: #f7fbff;
  line-height: 1.28;
  letter-spacing: 0.01em;
  animation: subtitleFloat 5s ease-in-out infinite;
}

@keyframes subtitleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes trustedImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  font-size: 1.1rem;
  margin: 1.2rem 0 2rem;
}

.hero-note {
  max-width: none;
  margin: 0.8rem auto 0;
  font-size: clamp(0.82rem, 1.1vw, 1.04rem);
  text-align: center;
  color: rgba(65, 44, 0, 0.88);
  font-weight: 600;
}

@media (min-width: 761px) {
  .site-top-logo {
    padding: 0.9rem 1.35rem 0.38rem;
  }

  .hero {
    min-height: 100vh;
  }

  h1 {
    font-size: clamp(1.85rem, 3.7vw, 3.18rem);
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    transform: translateY(0);
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .keep-line {
    white-space: nowrap;
  }

  .hero-subtitle {
    white-space: nowrap;
  }

  .features-title {
    margin: 0 auto 1.8rem;
    font-size: 194pt;
    line-height: 0.76;
    letter-spacing: 0.055em;
  }

  .features-line {
    white-space: nowrap;
  }

  .program-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 9.36rem;
    padding-bottom: 8.1rem;
  }

  .features-title,
  .feature-tabs-wrap,
  .feature-panels {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-tabs {
    gap: 0.99rem;
  }

  .feature-tab {
    font-size: 1.71rem;
    padding: 1.48rem 1.8rem 1.4rem;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }

  .feature-panels {
    width: min(1180px, 100%);
    padding-top: 1.8rem;
  }

  .feature-panel > p:not(.feature-panel-subheading) {
    width: min(1120px, 100%);
    font-size: 1.8rem;
  }

  .hero-actions {
    margin-top: 1.24rem;
  }

  .video-placeholder {
    margin-top: 0.34rem;
  }
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.74rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 24px rgba(109, 80, 7, 0.2);
}

.btn-solid:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-claim-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-claim-btn::after {
  content: "";
  position: absolute;
  top: -120%;
  bottom: -120%;
  left: -42%;
  width: 44%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 32%,
    rgba(255, 255, 255, 0.56) 50%,
    rgba(255, 255, 255, 0.12) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-22deg) translateX(-240%);
  animation: heroBtnSweep 3.8s ease-in-out infinite;
}

@keyframes heroBtnSweep {
  0%,
  16% {
    transform: skewX(-22deg) translateX(-240%);
  }
  44% {
    transform: skewX(-22deg) translateX(360%);
  }
  100% {
    transform: skewX(-22deg) translateX(360%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-claim-btn::after,
  .feature-tab-bonuses::after,
  .hero-sale-block,
  .hero-sale-block::before,
  .hero-sale-block::after {
    animation: none;
  }
}

.btn-secondary {
  background: rgba(17, 24, 39, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(109, 80, 7, 0.18);
}

.btn-secondary:hover {
  background: rgba(17, 24, 39, 0.3);
}

.hero-actions {
  width: min(620px, 100%);
  margin: 1.28rem auto 0;
  padding-inline: clamp(0.2rem, 1vw, 0.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 3vw, 2.3rem);
}

.video-placeholder {
  display: block;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0.42rem auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  overflow: hidden;
  box-shadow:
    0 14px 30px rgba(87, 62, 7, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.video-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.section {
  padding: 4.5rem 0;
}

.program-features {
  padding-top: 5.2rem;
}

.features-title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  font-family: var(--site-font);
  width: 100%;
  max-width: 1180px;
}

.features-line {
  display: block;
}

.feature-tabs-wrap {
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 1px 0 #e1e8f3;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  overflow: visible;
  padding: 0 0 0.02rem;
}

.feature-tab {
  appearance: none;
  border: 1px solid #d6e1f0;
  border-bottom: none;
  background: #f3f4f6;
  color: #425372;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  padding: 0.82rem 1rem 0.78rem;
  position: relative;
  top: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 16px rgba(15, 23, 42, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  flex: 0 0 auto;
}

.feature-tab:hover {
  background: #eceff3;
}

.feature-tab.is-active {
  background: var(--brand-yellow);
  color: #ffffff;
  border-color: rgba(133, 97, 6, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 20px rgba(102, 76, 8, 0.24);
}

.feature-tab-bonuses {
  border-color: rgba(198, 208, 221, 0.92);
  color: #172845;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(9, 16, 30, 0.14) 0%, rgba(9, 16, 30, 0.04) 52%, rgba(9, 16, 30, 0) 100%),
    linear-gradient(
      124deg,
      rgba(255, 146, 227, 0.48) 0%,
      rgba(164, 232, 255, 0.48) 18%,
      rgba(188, 255, 176, 0.44) 34%,
      rgba(255, 234, 163, 0.48) 50%,
      rgba(155, 217, 255, 0.44) 66%,
      rgba(214, 171, 255, 0.44) 82%,
      rgba(255, 178, 211, 0.48) 100%
    ),
    linear-gradient(166deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 20px rgba(49, 35, 6, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 14px rgba(179, 214, 255, 0.2);
}

.feature-tab-bonuses:hover {
  filter: brightness(1.04);
}

.feature-tab-bonuses::after {
  content: "";
  position: absolute;
  top: -120%;
  bottom: -120%;
  left: -42%;
  width: 44%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 32%,
    rgba(255, 255, 255, 0.56) 50%,
    rgba(255, 255, 255, 0.12) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-22deg) translateX(-240%);
  animation: bonusesTabSweep 4.4s ease-in-out infinite;
}

.feature-tab.feature-tab-bonuses.is-active {
  color: #13233b;
  border-color: rgba(189, 201, 216, 0.95);
  background:
    linear-gradient(180deg, rgba(9, 16, 30, 0.16) 0%, rgba(9, 16, 30, 0.06) 52%, rgba(9, 16, 30, 0) 100%),
    linear-gradient(
      124deg,
      rgba(255, 146, 227, 0.6) 0%,
      rgba(164, 232, 255, 0.6) 18%,
      rgba(188, 255, 176, 0.56) 34%,
      rgba(255, 234, 163, 0.6) 50%,
      rgba(155, 217, 255, 0.56) 66%,
      rgba(214, 171, 255, 0.56) 82%,
      rgba(255, 178, 211, 0.6) 100%
    ),
    linear-gradient(166deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(49, 35, 6, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 16px rgba(179, 214, 255, 0.24);
}

.feature-panels {
  width: min(900px, 100%);
  margin: 0 auto;
  padding-top: 1rem;
}

.feature-panel {
  display: none;
}

.feature-panel.is-active {
  display: block;
}

.feature-panel-subheading {
  width: min(820px, 100%);
  margin: 0 auto 0;
  text-align: left;
  color: #3f546f;
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.45;
  font-weight: 600;
}

.feature-panel-subheading-centered {
  text-align: center;
}

.feature-training-layout {
  width: min(980px, 100%);
  margin: 0.8rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.feature-training-block {
  width: 100%;
}

.feature-subsection-title {
  width: 100%;
  margin: 0 0 0.38rem;
  text-align: center;
  color: #1a2f4c;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.feature-iridescent-highlight,
.faq-answer strong {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(110deg, #d9a21b 0%, #ff8a3d 38%, #79c4ff 70%, #77d8ab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(255, 154, 66, 0.2);
}

.feature-panel-list {
  width: 100%;
  margin: 0.48rem 0 0;
  padding-left: 1.18rem;
  text-align: left;
  color: #465b79;
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
  line-height: 1.46;
}

.feature-panel-list-subsection {
  margin-top: 0.22rem;
}

.feature-training-block .feature-panel-list-subsection {
  width: fit-content;
  max-width: min(100%, 460px);
  margin: 0.48rem auto 0;
  padding-left: 1.12rem;
}

.feature-panel-list li + li {
  margin-top: 0.46rem;
}

.feature-panel-list strong {
  color: #1a2f4c;
  font-weight: 800;
}

.feature-panel-streamlined .feature-panel-subheading {
  width: min(760px, 100%);
  margin: 0 auto 0.78rem;
  text-align: center;
}

.feature-panel-streamlined .feature-panel-list {
  width: min(760px, 100%);
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.feature-panel-streamlined .feature-panel-list li {
  position: relative;
  margin: 0;
  padding: 0.56rem 0.72rem 0.56rem 1.42rem;
  border-radius: 10px;
  color: #314a69;
  border: 1px solid rgba(194, 208, 228, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(245, 250, 255, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 18px rgba(15, 23, 42, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-panel-streamlined .feature-panel-list li:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 22px rgba(15, 23, 42, 0.14);
}

.feature-panel-streamlined .feature-panel-list li::before {
  content: "\2022";
  position: absolute;
  left: 0.58rem;
  top: 50%;
  transform: translateY(-50%);
  color: #264265;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}

.feature-panel-streamlined .feature-panel-list li + li {
  margin-top: 0;
}

.feature-panel > p:not(.feature-panel-subheading) {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
  color: #4f617e;
  font-size: 1rem;
}

.feature-panel-bridge {
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  max-width: min(820px, 92%);
  margin: 0.32rem auto 0 !important;
  padding: 0.38rem 0.86rem;
  text-align: center !important;
  color: #183154 !important;
  font-size: clamp(0.94rem, 1.4vw, 1.06rem) !important;
  font-weight: 800;
  line-height: 1.32;
  border-radius: 999px;
  border: 1px solid rgba(149, 171, 201, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(241, 246, 254, 0.86) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 7px 16px rgba(15, 23, 42, 0.1);
}

.feature-panel-sale-disclaimer {
  margin-top: 0.94rem !important;
}

.feature-panel-bonuses {
  border-radius: 16px;
  padding: 1rem 1rem 1.06rem;
  border: 1px solid rgba(200, 214, 232, 0.9);
  background:
    linear-gradient(180deg, rgba(9, 16, 30, 0.14) 0%, rgba(9, 16, 30, 0.04) 52%, rgba(9, 16, 30, 0) 100%),
    linear-gradient(
      124deg,
      rgba(255, 146, 227, 0.44) 0%,
      rgba(164, 232, 255, 0.42) 18%,
      rgba(188, 255, 176, 0.4) 34%,
      rgba(255, 234, 163, 0.44) 50%,
      rgba(155, 217, 255, 0.4) 66%,
      rgba(214, 171, 255, 0.4) 82%,
      rgba(255, 178, 211, 0.44) 100%
    ),
    linear-gradient(166deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 22px rgba(37, 28, 7, 0.12),
    0 0 18px rgba(178, 141, 255, 0.14),
    0 0 22px rgba(133, 221, 255, 0.12);
}

@keyframes bonusesTabSweep {
  0%,
  16% {
    transform: skewX(-22deg) translateX(-240%);
  }
  44% {
    transform: skewX(-22deg) translateX(360%);
  }
  100% {
    transform: skewX(-22deg) translateX(360%);
  }
}

.credibility-strip {
  padding: 2.6rem 0 2.2rem;
}

.credibility-title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1f2b40;
}

.logo-carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
  background: #ffffff;
  padding: 0.95rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(34px, 6vw, 84px);
  pointer-events: none;
  z-index: 2;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: logoMarquee 24s linear infinite;
}

.logo-group {
  display: flex;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 92px;
  border-radius: 12px;
  border: 1px solid #e5ebf4;
  background: #f2f3f5;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.logo-card img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.425rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.trusted-section {
  padding-top: 3.2rem;
  padding-bottom: 0;
}

.player-reviews {
  position: relative;
  isolation: isolate;
  margin-top: 2.8rem;
  border: 4.6px solid transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) padding-box,
    linear-gradient(
      125deg,
      #ff92e3 0%,
      #a4e8ff 18%,
      #bcffb0 34%,
      #ffeaa3 50%,
      #9bd9ff 66%,
      #d6abff 82%,
      #ffb2d3 100%
    )
    border-box;
  border-radius: 22px;
  padding: 2.4rem clamp(0.95rem, 2.3vw, 2rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 16px 34px rgba(20, 14, 37, 0.12),
    0 0 20px rgba(178, 141, 255, 0.12),
    0 0 30px rgba(133, 221, 255, 0.1);
}

.section-success {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 2rem 0 0;
  background: #060606;
  padding: 5rem 0 5.8rem;
  border-radius: 42px;
}

.section-success::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 194, 70, 0.18) 0%, rgba(255, 194, 70, 0) 42%),
    radial-gradient(circle at 86% 82%, rgba(87, 180, 255, 0.12) 0%, rgba(87, 180, 255, 0) 48%);
}

.section-success::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.16) 62%, rgba(255, 255, 255, 0.26) 100%),
    radial-gradient(120% 62% at 50% 100%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

.section-success > .container {
  position: relative;
  z-index: 1;
}

.success-head {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.success-title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-family: var(--site-font);
  font-size: clamp(2.8rem, 8.4vw, 6.4rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.048em;
  text-transform: uppercase;
}

.section-success .success-title {
  color: #ffffff;
}

.success-subtitle {
  display: block;
  width: min(760px, 100%);
  margin: 0.8rem 0 0;
  max-width: none;
  text-align: center !important;
  color: rgba(245, 249, 255, 0.94) !important;
  font-size: clamp(0.95rem, 1.7vw, 1.12rem);
  line-height: 1.45;
  letter-spacing: 0.012em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  justify-self: center;
}

.success-mobile-break {
  display: none;
}

.success-stories-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(0.82rem, 1.9vw, 1.15rem);
  row-gap: clamp(0.82rem, 2.1vw, 1.15rem);
  align-items: stretch;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.success-story-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(0.82rem, 1.8vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  grid-column: span 1;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 54%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.success-story-image {
  display: block;
  width: 100%;
  height: clamp(162px, 18vw, 207px);
  object-fit: contain;
  object-position: center center;
  background: rgba(9, 14, 22, 0.24);
  padding: 0.28rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.success-story-phase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.82rem;
  color: #ffffff;
  font-family: var(--site-font);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.012em;
}

.success-story-phase.has-copy {
  grid-template-columns: 1fr;
  gap: 0.82rem;
}

.success-story-before-block {
  display: grid;
  gap: 0.48rem;
  padding: clamp(0.68rem, 1.8vw, 0.9rem) clamp(0.74rem, 1.7vw, 0.96rem);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 195, 77, 0.16) 0%, rgba(255, 255, 255, 0.04) 72%);
  border: 1px solid rgba(255, 199, 84, 0.4);
}

.success-story-after-block {
  display: grid;
  justify-items: start;
  gap: 0.48rem;
  padding: clamp(0.68rem, 1.8vw, 0.9rem) clamp(0.74rem, 1.7vw, 0.96rem);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(121, 219, 170, 0.16) 0%, rgba(255, 255, 255, 0.04) 72%);
  border: 1px solid rgba(132, 228, 183, 0.42);
}

.success-story-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  border: 1px solid transparent;
  line-height: 1.1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-story-tag-before {
  color: #ffefc2;
  border-color: rgba(255, 200, 82, 0.72);
  background: rgba(255, 177, 46, 0.2);
}

.success-story-tag-after {
  color: #ddf8ec;
  border-color: rgba(132, 228, 183, 0.7);
  background: rgba(58, 181, 125, 0.22);
}

.success-story-copy {
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.15vw, 0.98rem);
  color: rgba(248, 251, 255, 0.94);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.section-how-it-works {
  position: relative;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 205, 92, 0.14) 0%, rgba(255, 205, 92, 0) 46%),
    radial-gradient(circle at 92% 84%, rgba(108, 192, 255, 0.12) 0%, rgba(108, 192, 255, 0) 50%),
    #ffffff;
  margin-top: -0.14rem;
  padding: 4.8rem 0 4.3rem;
}

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

.how-it-works-title {
  margin: 0;
  color: #0f172a;
  font-family: var(--site-font);
  font-size: clamp(2rem, 5.4vw, 3.7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.how-it-works-subtitle {
  margin: 0.66rem 0 0;
  color: #4b5f7d;
  font-size: clamp(1rem, 1.75vw, 1.2rem);
  line-height: 1.5;
}

.how-it-works-grid {
  margin: 1.5rem auto 0;
  width: min(1020px, 100%);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.72rem, 1.9vw, 1rem);
}

.how-it-works-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: 1.4px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(245, 250, 255, 0.86) 100%) padding-box,
    linear-gradient(
      124deg,
      rgba(255, 132, 219, 0.72) 0%,
      rgba(146, 224, 255, 0.72) 18%,
      rgba(176, 255, 162, 0.66) 34%,
      rgba(255, 226, 140, 0.74) 50%,
      rgba(132, 208, 255, 0.66) 66%,
      rgba(204, 156, 255, 0.7) 82%,
      rgba(255, 162, 202, 0.72) 100%
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 30px rgba(169, 212, 255, 0.24),
    0 0 16px rgba(255, 185, 86, 0.14);
  padding: 1.12rem 1.04rem 1.2rem;
  text-align: center;
}

.how-it-works-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.how-it-works-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.how-it-works-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(171, 188, 212, 0.9);
  background: rgba(255, 255, 255, 0.84);
  color: #1b365b;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.how-it-works-card h3 {
  margin: 0.74rem 0 0;
  color: #132742;
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  font-weight: 800;
  line-height: 1.28;
  text-transform: none;
}

.how-it-works-card p {
  margin: 0.72rem 0 0;
  color: #465c7a;
  font-size: clamp(0.98rem, 1.36vw, 1.1rem);
  line-height: 1.58;
}

.player-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.player-review-meta {
  width: fit-content;
  min-width: 124px;
  margin: 0.52rem auto 0.4rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 206, 224, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.player-review-meta span {
  color: #30445f;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.player-review-meta span:not(:first-child) {
  padding-left: 0.5rem;
  border-left: 1px solid rgba(180, 194, 214, 0.7);
}

.trusted-title {
  margin: 0 0 1.35rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.9;
  font-family: var(--site-font);
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
}

.trusted-subtitle {
  margin: -0.3rem auto 1.2rem;
  width: min(760px, 100%);
  text-align: center;
  color: #4b5f7b;
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.trusted-by-section {
  position: relative;
  isolation: isolate;
  margin-top: 2.8rem;
  border-radius: 22px;
  padding: 2.35rem clamp(0.95rem, 2.3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.3) 100%),
    radial-gradient(circle at 15% 12%, rgba(217, 162, 27, 0.18) 0%, rgba(217, 162, 27, 0) 46%),
    radial-gradient(circle at 84% 82%, rgba(47, 109, 246, 0.13) 0%, rgba(47, 109, 246, 0) 46%);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.14),
    0 34px 58px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.trusted-by-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 197, 92, 0.16) 0%, rgba(121, 196, 255, 0.16) 100%);
  opacity: 0.42;
  mix-blend-mode: screen;
}

.trusted-by-section::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -18px;
  height: 26px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0) 74%);
  filter: blur(4px);
}

.trusted-by-section > * {
  position: relative;
  z-index: 1;
}

.trusted-by-section .trusted-title {
  margin-bottom: 0.85rem;
}

.trusted-by-section .trusted-subtitle {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 1.35rem;
  text-align: center !important;
  color: #415876;
}

.trusted-by-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.trusted-by-section .trusted-by-grid {
  max-width: 620px;
  gap: 1.1rem;
  padding-top: 0.35rem;
}

.trusted-by-section .trusted-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding-top: 0;
  border: 1px solid rgba(174, 193, 218, 0.5);
  background: linear-gradient(165deg, rgba(247, 251, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 100%);
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.trusted-thumb {
  position: relative;
  background: #000000;
  margin-top: -1px;
}

.trusted-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15%;
  border-radius: 0 0 14px 14px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0) 0%, rgba(7, 10, 16, 0.52) 100%);
  z-index: 1;
}

.trusted-by-section .review-embed {
  border-radius: 0;
}

.trusted-by-credit {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.08rem;
  margin: 0.6rem 0 0.66rem;
  padding-inline: 0.4rem;
  line-height: 1.18;
}

.trusted-by-credit strong {
  margin: 0;
  color: #0f172a;
  font-size: clamp(0.92rem, 1.3vw, 1.04rem);
  font-weight: 800;
  letter-spacing: 0.008em;
}

.trusted-by-credit span {
  margin: 0;
  color: #5f6f89;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 500;
}

.trusted-by-section .included-trusted-mini-meta {
  background: linear-gradient(165deg, rgba(245, 247, 250, 0.96) 0%, rgba(233, 237, 243, 0.94) 100%);
  border-color: rgba(174, 184, 199, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 12px rgba(15, 23, 42, 0.08);
}

.trusted-between-brand {
  padding: 0;
  margin: -0.29rem auto 0.25rem;
}

.trusted-between-brand .trusted-bottom-image {
  margin: 0 auto;
}

.trusted-between-brand + .player-reviews {
  margin-top: 0.98rem;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.trusted-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde6f2;
  background: #f4f6fa;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.trusted-card img {
  display: block;
  width: 100%;
  height: auto;
}

.trusted-meta {
  margin: 0.55rem 0.35rem 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 206, 224, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.trusted-meta span {
  color: #30445f;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.trusted-meta span:not(:first-child) {
  padding-left: 0.45rem;
  border-left: 1px solid rgba(180, 194, 214, 0.7);
}

.included-trusted-mini {
  padding-top: 1.2rem;
}

.included-trusted-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.review-embed {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #000000;
}

.included-trusted-mini-meta {
  width: fit-content;
  min-width: 84px;
  margin: 0.52rem auto 0.4rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 206, 224, 0.9);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.included-trusted-mini-meta span {
  color: #30445f;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.whop-reviews-section {
  padding-top: 3.2rem;
}

.whop-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.whop-reviews-title {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.012em;
  line-height: 1.08;
  font-size: clamp(1.45rem, 3.4vw, 2.45rem);
  max-width: 860px;
}

.whop-reviews-badge {
  margin: 0;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 204, 225, 0.9);
  background: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  white-space: nowrap;
  color: #2f4665;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 6px 14px rgba(15, 23, 42, 0.08);
}

.whop-badge-word {
  color: #e18f00;
  font-weight: 800;
}

.whop-badge-logo {
  width: 3.1em;
  height: 3.1em;
  display: inline-block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.18));
}

.whop-reviews-intro {
  margin: 0.65rem 0 1rem;
  color: #445a79;
  font-size: 0.99rem;
  max-width: 680px;
}

.whop-reviews-empty {
  margin: 0.2rem 0 0;
  color: #5b6f8c;
  font-size: 0.95rem;
}

.whop-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.whop-review-card {
  border-radius: 16px;
  border: 1px solid #dbe6f4;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fe 100%);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.1),
    0 4px 10px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-2px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .whop-review-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 18px 34px rgba(15, 23, 42, 0.12),
      0 6px 14px rgba(15, 23, 42, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }
}

.whop-review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.whop-review-rating.has-subject {
  justify-content: flex-start;
  gap: 0.35rem;
}

.whop-review-author {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.whop-review-author-image {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(210, 222, 238, 0.95);
  box-shadow:
    0 6px 12px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.whop-review-author-name {
  color: #7a5600;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.whop-review-stars {
  color: #d9a21b;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  line-height: 1;
}

.whop-review-score {
  color: #4b617f;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.whop-review-subject {
  margin: 0;
  color: #1a2e4a;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whop-review-title {
  margin: 0.05rem 0 0;
  font-size: 1.04rem;
  line-height: 1.24;
  color: #15253d;
}

.whop-review-text {
  margin: 0;
  color: #536886;
  font-size: 0.94rem;
  line-height: 1.45;
}

.whop-review-verified {
  margin: 0;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border-radius: 10px;
  padding: 0.22rem 0.52rem;
  border: 1px solid rgba(63, 123, 221, 0.26);
  background: linear-gradient(150deg, #f2f8ff 0%, #e6f1ff 100%);
  box-shadow:
    0 6px 14px rgba(26, 74, 158, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  color: #2152ad;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.whop-review-verified::before {
  content: "\2713";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(165deg, #2f6df6 0%, #2459cc 100%);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  box-shadow:
    0 4px 10px rgba(35, 84, 190, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.founder-title {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 0.95;
  font-family: var(--site-font);
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

#founder p {
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
  color: rgba(255, 255, 255, 0.92);
}

#founder {
  position: relative;
  isolation: isolate;
  border: 4.6px solid transparent;
  background:
    linear-gradient(180deg, #0b0b0b 0%, #080808 100%) padding-box,
    linear-gradient(
      125deg,
      #ffc34c 0%,
      #ffb44a 18%,
      #ff9636 36%,
      #ffd97a 52%,
      #58c4ff 70%,
      #82e6ad 86%,
      #fff2cf 100%
    )
    border-box;
  border-radius: 22px;
  padding: 3rem clamp(1rem, 2.5vw, 2.2rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(20, 14, 37, 0.42),
    0 0 24px rgba(255, 166, 64, 0.2),
    0 0 36px rgba(88, 196, 255, 0.14),
    0 0 44px rgba(130, 230, 173, 0.1);
}

#founder .founder-title {
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#founder .founder-layout {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

#founder .founder-copy p {
  margin: 0 0 1rem;
}

.founder-image {
  width: min(100%, 430px);
  justify-self: center;
  border-radius: 18px;
  border: 1px solid #dbe3ef;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@media (min-width: 761px) {
  #founder .founder-layout {
    grid-template-columns: minmax(0, 430px) minmax(0, 430px);
    justify-content: center;
    gap: clamp(3.2rem, 8vw, 5.6rem);
  }

  #founder .founder-copy {
    width: 100%;
    max-width: 430px;
  }

  #founder .founder-copy p {
    line-height: 1.38;
  }

  #founder .founder-image {
    width: 100%;
    max-width: 430px;
    justify-self: end;
    position: sticky;
    top: 1.3rem;
  }
}

.final-cta-section {
  padding: 2.8rem 0 4rem;
}

.final-cta-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  border-radius: 24px;
  padding: clamp(1.6rem, 3.4vw, 2.6rem) clamp(1rem, 3vw, 2.2rem);
  border: 1px solid rgba(201, 216, 238, 0.72);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 204, 93, 0.16) 0%, rgba(255, 204, 93, 0) 44%),
    radial-gradient(circle at 88% 84%, rgba(102, 181, 255, 0.16) 0%, rgba(102, 181, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow:
    0 20px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.final-cta-title {
  margin: 0;
  text-align: center !important;
  color: #101a2c;
  font-family: var(--site-font);
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.final-cta-subtitle {
  margin: 0.9rem auto 0;
  width: min(760px, 100%);
  text-align: center !important;
  color: #4d5f7b;
  font-size: clamp(0.98rem, 1.55vw, 1.16rem);
  line-height: 1.44;
  letter-spacing: 0.01em;
}

.final-cta-button {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  min-width: clamp(260px, 42vw, 410px);
  justify-content: center;
  border-radius: 11px;
  border: 1px solid rgba(132, 98, 16, 0.42);
  background: linear-gradient(165deg, #f3bb33 0%, #d9a21b 100%);
  color: #111827 !important;
  box-shadow:
    0 10px 22px rgba(142, 104, 13, 0.24),
    inset 0 1px 0 rgba(255, 245, 209, 0.72);
}

.final-cta-button:hover {
  background: linear-gradient(165deg, #f8c74e 0%, #e1ad2a 100%);
  color: #111827 !important;
}

.final-cta-footnote {
  margin: 0.6rem 0 0;
  text-align: center;
  color: #6f819f;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.final-cta-line {
  display: inline;
}

.faq-section {
  padding-top: 4.8rem;
}

.faq-title {
  text-align: center;
  margin-bottom: 1.35rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #f5f6f8;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-size: clamp(1.04rem, 2.2vw, 1.32rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1b2740;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  font-family: var(--site-font);
}

.faq-question::after {
  content: "+";
  color: #516381;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
}

.faq-item.is-open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.24s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 0;
  overflow: hidden;
  color: #526482;
  transition: padding 0.32s ease;
}

.faq-item.is-open .faq-answer p {
  padding: 0 1rem 0.95rem;
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 1rem;
  color: #0f172a;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 760px;
}

.section-alt {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

#included {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
}

#included::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 195, 76, 0.54) 0%, rgba(255, 195, 76, 0) 46%),
    radial-gradient(circle at 84% 18%, rgba(255, 150, 54, 0.42) 0%, rgba(255, 150, 54, 0) 44%),
    radial-gradient(circle at 80% 82%, rgba(88, 196, 255, 0.3) 0%, rgba(88, 196, 255, 0) 48%),
    radial-gradient(circle at 18% 84%, rgba(130, 230, 173, 0.27) 0%, rgba(130, 230, 173, 0) 50%),
    linear-gradient(132deg, #fff9e9 0%, #fff2cf 34%, #ffe4bf 62%, #ecf7ff 82%, #f3fff3 100%);
  filter: saturate(1.14) contrast(1.08);
}

#included > .container {
  position: relative;
  z-index: 1;
}

.included-checklist-box {
  position: relative;
  overflow: hidden;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 2.6vw, 1.5rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  box-shadow:
    0 8px 18px rgba(255, 255, 255, 0.22),
    0 24px 46px rgba(15, 23, 42, 0.2),
    0 42px 72px rgba(15, 23, 42, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.24);
}

.included-checklist-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 44%);
}

.included-checklist-box::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -22px;
  height: 28px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.24) 0%, rgba(15, 23, 42, 0) 72%);
  filter: blur(5px);
}

.included-checklist-box > * {
  position: relative;
  z-index: 1;
}

.trusted-bottom-image {
  display: block;
  width: clamp(220px, 30vw, 410px);
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 0.9rem auto 0;
  animation: trustedImageFloat 5.2s ease-in-out infinite;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.15));
  will-change: transform;
}

.included-title {
  margin: 0 0 1.05rem;
  text-align: center;
  font-family: var(--site-font);
  font-size: clamp(1.65rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.included-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 1.05rem;
}

.whop-checkout-shell {
  width: min(760px, 100%);
  margin: 0 auto;
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease,
    transform 0.34s ease,
    margin 0.34s ease;
}

.whop-checkout-shell.is-open {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin: 0 auto 1.15rem;
}

.whop-checkout-shell.is-collapsed .whop-checkout-wrapper {
  visibility: hidden;
}

.whop-checkout-shell.is-open .whop-checkout-wrapper {
  visibility: visible;
}

.whop-checkout-wrapper {
  width: 100%;
  min-height: 640px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(194, 206, 223, 0.9);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(15, 23, 42, 0.1);
}

.whop-checkout-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
  background: transparent;
}

.included-price {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.included-price-original {
  margin: 0 0 0.22rem;
  color: #3b4f70;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  padding: 0 0.06em;
  opacity: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.included-price-original::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  top: 53%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4d4f 0%, #dc2626 100%);
  transform: rotate(-6deg);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.45);
}

.included-price-discount {
  margin: 0.24rem 0 0;
  padding: 0.2rem 0.58rem;
  border-radius: 8px;
  border: 1px solid rgba(206, 219, 238, 0.92);
  background: rgba(255, 255, 255, 0.68);
  color: #314966;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.included-price-note {
  margin: 0.2rem 0 0;
  color: #425372;
  font-size: clamp(0.92rem, 1.45vw, 1.04rem);
  font-weight: 600;
  text-transform: lowercase;
}

.included-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.78rem;
  padding: 0.66rem 1.7rem;
  border-radius: 999px;
  border: 1px solid #0f172a;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.included-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
  background: #1c2a44;
}

.included-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(0.8rem, 2.2vw, 1.8rem);
  gap: 0.52rem;
}

.included-checklist li {
  position: relative;
  margin: 0;
  padding-left: 1.75rem;
  color: #20304c;
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 600;
  line-height: 1.34;
}

.included-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #49bcff 0%, #1d9bf0 55%, #0b80e6 100%);
  box-shadow:
    0 5px 12px rgba(11, 128, 230, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.included-checklist li::after {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.08rem;
  height: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.included-checklist li.is-spotlight {
  font-weight: 700;
}

.included-checklist li.is-spotlight::before {
  background: linear-gradient(145deg, #ffd56a 0%, #f4af17 54%, #e18f00 100%);
  box-shadow:
    0 5px 12px rgba(196, 123, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.included-checklist li.is-bonus {
  grid-column: auto;
  padding-left: 1.75rem;
  color: #20304c;
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 600;
  line-height: 1.34;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.included-checklist li.is-bonus::before {
  top: 0.18em;
  background: linear-gradient(
    124deg,
    #ff57c4 0%,
    #62d6ff 19%,
    #7bffac 36%,
    #ffe364 54%,
    #8cc5ff 71%,
    #bc8bff 86%,
    #ff87c3 100%
  );
  box-shadow:
    0 5px 12px rgba(116, 149, 244, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.included-checklist li.is-bonus::after {
  top: 0.18em;
}

.included-bonus-disclaimer {
  display: block;
  margin: 0.54rem 0 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #253853;
  font-size: clamp(0.66rem, 0.98vw, 0.8rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-align: right;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-left: 4px solid rgba(47, 109, 246, 0.65);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(145, 167, 211, 0.14);
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #17233a;
}

.card p {
  margin: 0;
  color: #58657e;
  font-size: 0.96rem;
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  line-height: 1.45;
  font-weight: 500;
  max-width: 840px;
  color: #15233d;
}

.quote-credit {
  color: #5d6a83;
  font-weight: 600;
  margin-top: 1rem;
}

.included-guarantee {
  display: flex;
  justify-content: center;
  margin-top: 0.85rem;
}

.guarantee-image {
  display: block;
  width: clamp(180px, 25vw, 320px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.footer {
  border-top: 1px solid rgba(185, 202, 233, 0.65);
  padding: 1.1rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: #4b5d7a;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand p {
  margin: 0;
}

.footer-logo {
  display: block;
  width: clamp(44px, 4vw, 60px);
  height: auto;
}

.footer a {
  color: var(--highlight);
}

@media (min-width: 1024px) {
  .program-features {
    padding-top: 7.4rem;
    padding-bottom: 6.2rem;
  }

  .features-title {
    margin: 0 auto 2.45rem;
    max-width: min(1800px, 96vw);
    font-size: clamp(16rem, 23vw, 23rem);
    line-height: 0.72;
    letter-spacing: 0.028em;
  }

  .feature-tabs-wrap {
    margin-top: 0.45rem;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding: 0;
  }

  /* Spring Sale bundle (mobile): first-line sale text + bonus spots pill. */
  body.spring-sale-active .hero-sale-block {
    width: 100%;
    margin: 0;
    padding: 0.44rem 0.32rem 0.54rem;
    border-radius: 0;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "title offer"
      "spots spots";
    justify-content: center;
    align-items: center;
    row-gap: 0.26rem;
    column-gap: 0.18rem;
  }

  body.spring-sale-active .hero-sale-title {
    display: block;
    grid-area: title;
    font-size: clamp(0.68rem, 2.95vw, 0.88rem);
    line-height: 1.04;
    letter-spacing: -0.006em;
    white-space: nowrap;
    text-transform: none;
  }

  body.spring-sale-active .hero-sale-support {
    grid-area: offer;
    font-size: clamp(0.68rem, 2.95vw, 0.88rem);
    line-height: 1.04;
    letter-spacing: -0.006em;
    white-space: nowrap;
    justify-self: center;
    text-shadow:
      0 1px 0 rgba(78, 50, 0, 0.28),
      0 4px 10px rgba(54, 36, 4, 0.16);
  }

  body.spring-sale-active .hero-sale-block .sale-spots-pill {
    grid-area: spots;
    margin-top: 0;
    padding: 0.26rem 0.62rem;
    gap: 0.3rem;
    justify-self: center;
  }

  body.spring-sale-active .hero-sale-block .sale-spots-label {
    font-size: 0.58rem;
  }

  body.spring-sale-active .hero-sale-block .sale-spots-value {
    font-size: 0.94rem;
  }

  body.spring-sale-active .hero-sale-block .sale-spots-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .site-top-logo {
    padding: 0.62rem 0.8rem 0.3rem;
  }

  .efford-logo {
    width: 145px;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 1rem;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    box-shadow:
      0 12px 24px rgba(102, 76, 8, 0.18),
      0 4px 10px rgba(15, 23, 42, 0.07);
  }

  .hero-content {
    padding-top: 1.25rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: clamp(1.56rem, 6.8vw, 2rem);
    line-height: 1.08;
    text-align: center;
    width: min(100%, 26ch);
    margin-inline: auto;
  }

  .hero-mobile-break {
    display: block;
  }

  .hero-subtitle {
    width: auto;
    max-width: none;
    padding: 0.5rem 0.62rem;
    text-align: center;
    line-height: 1.24;
    white-space: nowrap;
    font-size: clamp(0.64rem, 3.1vw, 0.82rem);
  }

  .hero-actions {
    width: 100%;
    max-width: 520px;
    margin-top: 1.04rem;
    padding-inline: 0;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    padding: 0.6rem 0.96rem;
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.2;
  }

  .video-placeholder {
    width: 100%;
    max-width: 100%;
    margin-top: 0.3rem;
    margin-left: 0;
    margin-right: 0;
  }

  .program-features {
    padding-top: 2.35rem;
  }

  .feature-tabs-wrap {
    width: 100%;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0.05rem;
    justify-content: stretch;
  }

  .feature-tab {
    top: 0;
    min-height: 2.85rem;
    white-space: normal;
    text-align: center;
    border-radius: 10px;
    border-bottom: 1px solid #d6e1f0;
    font-size: 0.86rem;
    padding: 0.68rem 0.66rem 0.64rem;
    line-height: 1.15;
    flex: 1 1 auto;
  }

  .feature-tab-bonuses {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(82%, 260px);
  }

  .feature-panels {
    padding-top: 0.58rem;
    overflow: hidden;
    overflow-anchor: none;
    transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .feature-panels.is-animating {
    will-change: height;
  }

  .feature-panel-subheading {
    font-size: 0.88rem;
  }

  .feature-training-layout {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 0.42rem;
  }

  .feature-subsection-title {
    font-size: 0.98rem;
    margin-top: 0;
  }

  .feature-panel-list {
    font-size: 0.84rem;
    line-height: 1.3;
    padding-left: 0.96rem;
  }

  .feature-panel-streamlined .feature-panel-subheading {
    margin-bottom: 0.5rem;
  }

  .feature-panel-streamlined .feature-panel-list {
    width: min(100%, 760px);
    gap: 0.36rem;
    padding-left: 0;
  }

  .feature-panel-streamlined .feature-panel-list li {
    padding: 0.43rem 0.56rem 0.43rem 1.2rem;
  }

  .feature-panel-streamlined .feature-panel-list li:hover {
    transform: none;
  }

  .feature-panel-streamlined .feature-panel-list li::before {
    left: 0.52rem;
    font-size: 0.95rem;
  }

  .feature-training-block .feature-panel-list-subsection {
    width: 100%;
    max-width: 100%;
    margin: 0.34rem 0 0;
    padding-left: 0.96rem;
  }

  .feature-panel-bridge {
    font-size: 0.8rem !important;
    max-width: 96%;
    margin: 0.12rem auto 0.04rem !important;
    padding: 0.28rem 0.52rem;
  }

  .feature-panel > p:not(.feature-panel-subheading) {
    font-size: 0.95rem;
  }

  .feature-panel-sale-disclaimer {
    margin-top: 1.08rem !important;
    font-size: clamp(0.48rem, 2.25vw, 0.66rem) !important;
    line-height: 1.08;
    white-space: nowrap;
    letter-spacing: 0;
  }

  .credibility-strip {
    padding: 2.2rem 0 2rem;
  }

  .logo-card {
    width: 114px;
    height: 80px;
    border-radius: 10px;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 28px;
  }

  .trusted-section {
    padding-top: 2.4rem;
  }

  .trusted-title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    margin-bottom: 1rem;
  }

  .trusted-subtitle {
    margin-top: -0.12rem;
    margin-bottom: 0.88rem;
    font-size: 0.88rem;
  }

  .trusted-by-section {
    margin-top: 2.4rem;
    padding: 2rem 0.78rem 1.95rem;
  }

  .trusted-by-section .trusted-subtitle {
    margin: 0 auto 0.92rem;
    width: min(100%, 33ch);
    max-width: 33ch;
    font-size: 0.88rem;
    line-height: 1.32;
  }

  .trusted-by-grid {
    max-width: 100%;
    gap: 0.75rem;
  }

  .trusted-between-brand {
    margin: -0.12rem auto 0.17rem;
  }

  .trusted-between-brand + .player-reviews {
    margin-top: 0.7rem;
  }

  .trusted-by-credit {
    margin-top: 0.54rem;
    margin-bottom: 0.56rem;
  }

  .trusted-by-credit strong {
    font-size: 0.88rem;
  }

  .trusted-by-credit span {
    font-size: 0.72rem;
  }

  .trusted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .player-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .section-success {
    width: 100%;
    margin: 1rem 0 0;
    padding: 3.5rem 0 3.9rem;
    border-radius: 24px;
  }

  .success-head {
    max-width: 100%;
  }

  .success-title {
    font-size: clamp(2.25rem, 13vw, 3.85rem);
    line-height: 0.95;
  }

  .success-subtitle {
    margin-top: 0.6rem;
    font-size: 0.93rem;
    line-height: 1.4;
  }

  .success-mobile-break {
    display: block;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.3rem;
  }

  .section-how-it-works {
    margin-top: -0.1rem;
    padding: 2.9rem 0 2.75rem;
  }

  .section-how-it-works > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }

  .how-it-works-title {
    font-size: clamp(1.8rem, 10.4vw, 2.45rem);
    line-height: 0.96;
  }

  .how-it-works-subtitle {
    margin-top: 0.55rem;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .how-it-works-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.08rem;
  }

  .how-it-works-card {
    display: block;
    grid-column: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 13px;
    padding: 0.98rem 0.88rem 1.06rem;
    text-align: center;
    align-items: stretch;
  }

  .how-it-works-card:nth-child(4),
  .how-it-works-card:nth-child(5) {
    grid-column: auto !important;
  }

  .how-it-works-step {
    align-self: center;
    min-width: 1.92rem;
    font-size: 0.7rem;
  }

  .how-it-works-card h3 {
    margin-top: 0.62rem;
    font-size: 1.06rem;
    text-align: center;
  }

  .how-it-works-card p {
    margin-top: 0.56rem;
    font-size: 0.94rem;
    line-height: 1.5;
    text-align: center;
  }

  .success-story-card,
  .success-story-card:nth-child(1),
  .success-story-card:nth-child(2),
  .success-story-card:nth-child(3) {
    grid-column: 1;
    border-radius: 18px;
    padding: 0.74rem;
  }

  .success-story-image {
    height: clamp(137px, 40vw, 178px);
    border-radius: 12px;
  }

  .success-story-phase {
    font-size: 0.9rem;
  }

  .success-story-before-block,
  .success-story-after-block {
    padding: 0.62rem 0.66rem;
  }

  .included-trusted-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .included-trusted-mini-grid > .trusted-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - 0.75rem) / 2));
  }

  .trusted-meta {
    margin: 0.48rem 0.3rem 0.3rem;
    padding: 0.32rem 0.52rem;
  }

  .included-trusted-mini-meta {
    margin: 0.48rem auto 0.3rem;
    padding: 0.22rem 0.58rem;
  }

  .player-review-meta {
    margin: 0.48rem auto 0.3rem;
    padding: 0.22rem 0.58rem;
  }

  .whop-reviews-section {
    padding-top: 2.5rem;
  }

  .whop-reviews-head {
    justify-content: center;
    text-align: center;
    gap: 0.42rem;
  }

  .whop-reviews-title {
    width: 100%;
    text-align: center;
  }

  .whop-reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.78rem;
    margin-top: 0.8rem;
    padding-top: 0.24rem;
    padding-bottom: 0.5rem;
  }

  .whop-review-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: start;
    border-radius: 14px;
    padding: 0.88rem;
    transform: none;
  }

  .whop-review-title {
    font-size: 0.98rem;
  }

  .whop-review-text {
    font-size: 0.9rem;
  }

  .whop-reviews-badge {
    margin-inline: auto;
    font-size: 0.7rem;
    padding: 0.32rem 0.62rem;
  }

  .whop-reviews-intro {
    width: min(680px, 100%);
    margin: 0.65rem auto 1rem;
    text-align: center;
    white-space: normal;
    font-size: 0.99rem;
    line-height: 1.4;
  }

  .whop-reviews-grid::-webkit-scrollbar {
    height: 6px;
  }

  .whop-reviews-grid::-webkit-scrollbar-thumb {
    background: rgba(141, 160, 189, 0.65);
    border-radius: 999px;
  }

  .whop-reviews-grid::-webkit-scrollbar-track {
    background: rgba(228, 236, 247, 0.8);
    border-radius: 999px;
  }

  .faq-section {
    padding-top: 3.6rem;
  }

  .faq-title {
    margin-bottom: 1rem;
    font-size: clamp(1.95rem, 7.5vw, 3.68rem);
  }

  .faq-list {
    max-width: 100%;
    gap: 0.56rem;
  }

  .faq-item {
    border-radius: 9px;
  }

  .faq-question {
    padding: 0.68rem 0.75rem;
    font-size: clamp(0.78rem, 3.2vw, 0.99rem);
    gap: 0.58rem;
  }

  .faq-question::after {
    font-size: 0.86rem;
  }

  .faq-answer p {
    padding: 0 0.75rem 0;
    font-size: 0.82rem;
  }

  .faq-item.is-open .faq-answer p {
    padding: 0 0.75rem 0.72rem;
  }

  .included-title {
    font-size: clamp(1.2rem, 5.8vw, 1.72rem);
    letter-spacing: 0.02em;
  }

  .trusted-bottom-image {
    width: min(70vw, 312px);
    margin: 0.7rem auto 0;
  }

  .trusted-meta span {
    font-size: 0.68rem;
  }

  .included-trusted-mini-meta span {
    font-size: 0.68rem;
  }

  .player-review-meta span {
    font-size: 0.68rem;
  }

  #founder .founder-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .founder-image {
    width: min(100%, 520px);
    justify-self: center;
    position: static;
  }

  .final-cta-section {
    padding: 2.2rem 0 3.2rem;
  }

  .final-cta-panel {
    border-radius: 18px;
    padding: 1.34rem 0.55rem 1.44rem;
    overflow: hidden;
  }

  .final-cta-title {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center !important;
    font-size: clamp(0.74rem, 4vw, 0.96rem);
    line-height: 1.02;
    letter-spacing: 0.004em;
  }

  .final-cta-subtitle {
    margin-top: 0.72rem;
    max-width: 100%;
    font-size: clamp(0.44rem, 2.2vw, 0.56rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .final-cta-title .final-cta-line,
  .final-cta-subtitle .final-cta-line {
    display: block;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .final-cta-button {
    margin-top: 1.02rem;
    min-width: min(100%, 340px);
  }

  .final-cta-footnote {
    margin-top: 0.52rem;
    font-size: 0.72rem;
  }

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

  .included-checklist-box {
    border-radius: 14px;
    padding: 0.95rem;
  }

  .whop-checkout-wrapper,
  .whop-checkout-wrapper iframe {
    min-height: 760px;
    border-radius: 12px;
  }

  .whop-checkout-shell.is-open {
    max-height: 2600px;
    margin: 0 auto 1rem;
  }

  #included {
    border-radius: 20px;
  }

  .included-checklist {
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }

  .included-guarantee {
    margin-top: 0.7rem;
  }

  .guarantee-image {
    width: min(62vw, 250px);
  }

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

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    width: 46px;
  }
}

@media (min-width: 761px) {
  .program-features {
    padding-top: 8rem;
    padding-bottom: 6.8rem;
  }

  .features-title {
    margin: 0 auto 2.6rem;
    max-width: min(1900px, 98vw);
    font-size: clamp(19rem, 34vw, 24rem);
    line-height: 0.7;
    letter-spacing: 0.02em;
  }

  .feature-tabs-wrap {
    margin-top: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-bottom-image {
    animation: none;
  }
}

/* Final desktop lock for Program Features prominence */
@media (min-width: 761px) {
  #program-features {
    padding-top: 3.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  #program-features .features-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2.8rem !important;
    text-align: center !important;
    font-size: clamp(9rem, 16vw, 12.5rem) !important;
    line-height: 0.68 !important;
    letter-spacing: 0.018em !important;
  }

  #program-features .features-line {
    display: block !important;
    white-space: nowrap !important;
  }

  #program-features .feature-tabs-wrap {
    margin-top: 1rem !important;
  }

  #program-features .feature-panel-subheading {
    width: min(980px, 100%) !important;
    margin: 0 auto 0.4rem !important;
    text-align: center !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  .hero {
    min-height: 0 !important;
    grid-template-rows: auto !important;
    padding-bottom: 1.15rem;
  }

  .hero-content {
    justify-content: flex-start;
    transform: none;
    padding-top: 0.9rem;
  }
}
