/* ============================================================
   NEWKIND FERTILITY — SPERM LANDING — WEB / DESKTOP VERSION
   Brand palette and typography per knowledge base.
   Responsive: mobile (≤640px), tablet (641–959px), desktop (≥960px)
   ============================================================ */

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

:root {
  /* Brand palette */
  --bg: #6B2E6B;
  /* purple primary */
  --bg-d: #5B2A5B;
  /* purple rich */
  --bg-darker: #3D1E3D;
  /* deep aubergine */
  --bg-lt: #FCE4EC;
  /* pink pale */
  --bg-mid: #E8D5DD;
  /* rule pink */
  --or: #D9268A;
  /* magenta accent */
  --or-lt: #FDF2F5;
  /* blush */
  --warm: #FFF9F5;
  /* cream */
  --warm-d: #FDF2F5;
  /* blush */
  --tx: #2A1A2A;
  /* ink */
  --mu: #5A4A5A;
  /* ink light */
  --li: #8A7A8A;
  /* tertiary */
  --bd: rgba(42, 26, 42, 0.08);
  --wh: #FFFFFF;
  /* Typography */
  --ff: 'Fraunces', serif;
  --fb: 'DM Sans', sans-serif;
  /* Tokens */
  --r: 14px;
  --rl: 20px;
  --rxl: 28px;
  --sh: 0 2px 12px rgba(61, 30, 61, 0.07);
  --sh-md: 0 8px 28px rgba(61, 30, 61, 0.10);
  --sh-lg: 0 18px 50px rgba(61, 30, 61, 0.14);
  --max: 1240px;
  --gutter: 32px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--fb);
  background: var(--warm);
  color: var(--tx);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden
}

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

a {
  color: inherit
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255, 255, 255, .92)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px
}

.nav-logo img {
  height: 38px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500
}

.nav-links a {
  text-decoration: none;
  color: var(--tx);
  transition: color .15s
}

.nav-links a:hover {
  color: var(--bg)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-tel {
  font-size: 14px;
  color: var(--mu);
  text-decoration: none;
  font-weight: 500;
  display: none
}

.nav-tel strong {
  color: var(--bg);
  font-weight: 600
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap
}

.btn-primary {
  background: #c168a0;
  color: var(--wh);
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  letter-spacing: .1px;
  box-shadow: 0 4px 14px rgba(107, 46, 107, .22)
}

.btn-primary:hover {
  background: var(--bg-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(107, 46, 107, .28)
}

.btn-primary.lg {
  font-size: 16.5px;
  padding: 18px 36px
}

.btn-secondary {
  background: transparent;
  color: var(--bg);
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--bg-mid)
}

.btn-secondary:hover {
  background: var(--bg-lt);
  border-color: var(--bg)
}

.btn-talk {
  background: #c168a0;
  color: var(--wh);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none
}

.btn-talk:hover {
  background: var(--bg-d)
}

/* ============================================================
   URGENCY BAR
   ============================================================ */

.urgency-bar {
  background: #c168a0;
  color: var(--wh);
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5
}

.urgency-bar strong {
  font-weight: 700
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--wh);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--bd);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, var(--bg-lt), transparent 70%);
  pointer-events: none;
  z-index: 0
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(closest-side, var(--or-lt), transparent 70%);
  pointer-events: none;
  z-index: 0
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center
}

.hero-left {}

.hero-right {
  position: relative
}

.eyebrow {
  display: inline-block;
  background: var(--bg-lt);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px
}

.hero h1 {
  font-family: var(--ff);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--tx);
  margin-bottom: 22px;
  letter-spacing: -1.4px
}

.hero h1 em {
  font-style: italic;
  color: var(--bg);
  font-weight: 700
}

.hero p {
  color: var(--mu);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  max-width: 560px
}

.stat-box {
  background: var(--bg-lt);
  border-radius: var(--rl);
  padding: 20px 16px;
  border: 1px solid var(--bg-mid);
  text-align: left
}

.stat-num {
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 700;
  color: var(--bg);
  line-height: 1.05;
  display: block;
  letter-spacing: -1px
}

.stat-label {
  font-size: 12px;
  color: var(--mu);
  line-height: 1.35;
  margin-top: 8px;
  display: block
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--li);
  flex-wrap: wrap
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--bg-mid);
  border-radius: 50%;
  flex-shrink: 0
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-lt);
  border: 1px solid var(--bg-mid);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--bg);
  font-weight: 500
}

/* Hero right: stacked image card */

.hero-card {
  background: var(--wh);
  border: 1px solid var(--bg-mid);
  border-radius: var(--rxl);
  padding: 24px;
  box-shadow: var(--sh-lg);
  position: relative
}

.hero-card-img {
  aspect-ratio: 4/5;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--bg-lt)
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-card-cap {
  margin-top: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 12px
}

.hero-card-num {
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  letter-spacing: -.8px
}

.hero-card-txt {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.45
}

.hero-card-txt strong {
  color: var(--tx);
  font-weight: 600
}

.hero-float {
  position: absolute;
  background: var(--wh);
  border: 1px solid var(--bg-mid);
  border-radius: var(--rl);
  box-shadow: var(--sh-md);
  font-size: 13px;
  z-index: 2
}

/* Social-proof badge (top-left): avatar stack + count */

.hero-float-1 {
  top: 20px;
  left: -28px;
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px
}

.hf-avs {
  display: flex
}

.hf-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--wh);
  background: var(--bg-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 11px;
  color: var(--bg);
  margin-left: -8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08)
}

.hf-av:first-child {
  margin-left: 0
}

.hf-av-1 {
  background: #F4D1E2;
  color: #8B2A6F
}

.hf-av-2 {
  background: #E8D5DD;
  color: #5B2A5B
}

.hf-av-3 {
  background: #FCE4EC;
  color: #6B2E6B
}

.hf-av-4 {
  background: var(--bg);
  color: var(--wh);
  font-size: 10px;
  letter-spacing: -.3px
}

.hf-lbl {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 1px
}

.hf-lbl-strong {
  font-family: var(--ff);
  font-weight: 700;
  color: var(--tx);
  font-size: 14.5px;
  letter-spacing: -.2px
}

.hf-lbl-mu {
  font-size: 11.5px;
  color: var(--mu)
}

/* Testimonial card (bottom-right): stars + quote + named attribution */

.hero-float-2 {
  bottom: 90px;
  right: -32px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 248px
}

.hero-float-2 .stars {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1
}

.hero-float-2 .qtxt {
  color: var(--tx);
  font-family: var(--ff);
  font-style: italic;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0
}

.hf-attr {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--bd);
  margin-top: 2px
}

.hf-attr-av {
  width: 28px;
  height: 28px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh);
  font-weight: 700;
  font-size: 10.5px;
  flex-shrink: 0
}

.hf-attr-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--tx);
  line-height: 1.2
}

.hf-attr-det {
  font-size: 10.5px;
  color: var(--li);
  line-height: 1.3;
  margin-top: 1px
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */

.section {
  padding: 90px 0
}

.section-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px
}

.section h2 {
  font-family: var(--ff);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--tx);
  margin-bottom: 20px;
  letter-spacing: -1px
}

.section h2 em {
  font-style: italic;
  color: var(--bg);
  font-weight: 700
}

.section-lede {
  color: var(--mu);
  font-size: 17px;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 48px
}

.section-head {
  margin-bottom: 48px
}

.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.section-head.center .section-lede {
  margin-left: auto;
  margin-right: auto
}

/* ============================================================
   SOUND FAMILIAR
   ============================================================ */

.problem-section {
  background: var(--wh);
  padding: 90px 0;
  border-top: 1px solid var(--bd)
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--warm);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  font-size: 15px;
  color: var(--mu);
  line-height: 1.55;
  transition: transform .15s, box-shadow .15s
}

.problem-list li:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh)
}

.p-icon {
  width: 30px;
  height: 30px;
  background: #FDE8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 2px
}

.p-icon-text {
  color: var(--tx);
  font-weight: 600;
  display: block;
  margin-bottom: 2px
}

.sperm-window {
  background: var(--or-lt);
  border-radius: var(--rl);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--bg-mid);
  margin-top: 24px
}

.sw-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px
}

.sw-text {
  font-size: 15px;
  color: var(--or);
  font-weight: 500;
  line-height: 1.55
}

.sw-text strong {
  font-weight: 700
}

/* ============================================================
   REAL RESULTS
   ============================================================ */

.results-section {
  background: var(--warm);
  padding: 90px 0
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px
}

.result-card {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 28px;
  border: 1px solid var(--bg-mid);
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.days-badge {
  display: inline-block;
  background: #c168a0;
  color: var(--wh);
  font-family: var(--ff);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px
}

.result-card h3 {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 10px;
  letter-spacing: -.3px
}

.result-card p {
  font-size: 14.5px;
  color: var(--mu);
  line-height: 1.6
}

.photo-strip-label {
  font-size: 12px;
  color: var(--li);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 8px
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--bg-mid);
  background: var(--bg-lt)
}

/* ============================================================
   PROGRAM SNAPSHOT
   ============================================================ */

.prog-snap {
  /* background: var(--bg-darker); */
  background: #c168a0;
  color: var(--wh);
  padding: 90px 0;
  position: relative;
  overflow: hidden
}

.prog-snap::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(217, 38, 138, .16), transparent 70%);
  pointer-events: none
}

.prog-snap-inner {
  position: relative;
  z-index: 1
}

.prog-snap .section-label {
  color: var(--bg-mid)
}

.prog-snap h2 {
  color: var(--wh)
}

.prog-snap h2 em {
  color: #ffe2f1
}

.prog-snap-lede {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 48px
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 24px
}

.prog-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--rl);
  padding: 28px 18px;
  text-align: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px)
}

.prog-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px)
}

.prog-card .pe {
  font-size: 36px;
  display: block;
  margin-bottom: 12px
}

.prog-card .pl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .92);
  font-weight: 500;
  line-height: 1.35
}

.prog-note {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .65);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6
}

/* ============================================================
   WHY IT WORKS
   ============================================================ */

.science-section {
  background: var(--warm);
  padding: 90px 0
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.sci-card {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 32px 30px;
  border: 1px solid var(--bd);
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s
}

.sci-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.sci-card h3 {
  font-family: var(--ff);
  font-size: 21px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 10px;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 12px
}

.sci-card h3 .si {
  font-size: 26px
}

.sci-card p {
  font-size: 15px;
  color: var(--mu);
  line-height: 1.65
}

/* ============================================================
   METRICS + BEHIND EVERY METRIC
   ============================================================ */

.metrics-section {
  background: var(--bg-lt);
  padding: 90px 0;
  border-top: 1px solid var(--bg-mid);
  border-bottom: 1px solid var(--bg-mid)
}

.metrics-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px
}

.metrics-bars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--wh);
  padding: 32px;
  border-radius: var(--rl);
  border: 1px solid var(--bg-mid)
}

.metric-row {}

.metric-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--mu)
}

.metric-label strong {
  color: var(--tx);
  font-weight: 600;
  font-size: 15px
}

.metric-label .mv {
  font-family: var(--ff);
  font-weight: 600;
  color: var(--bg);
  font-size: 14.5px
}

.metric-track {
  height: 10px;
  background: var(--warm-d);
  border-radius: 100px;
  overflow: hidden
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bg), var(--or));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(.2, .8, .2, 1);
  width: 0
}

.metrics-note {
  font-size: 12.5px;
  color: var(--mu);
  margin-top: 14px;
  line-height: 1.6
}

/* Behind every metric */

.mr-block {
  margin-top: 24px
}

.mr-head {
  margin-bottom: 28px
}

.mr-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px
}

.mr-title {
  font-family: var(--ff);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--tx);
  letter-spacing: -.7px;
  margin-bottom: 10px
}

.mr-title em {
  font-style: italic;
  color: var(--bg)
}

.mr-sub {
  font-size: 15.5px;
  color: var(--mu);
  line-height: 1.6;
  max-width: 680px
}

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

.mr-card {
  background: var(--wh);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--bg-mid);
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s
}

.mr-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.mr-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--warm)
}

.mr-body {
  padding: 20px 22px 24px
}

.mr-days-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mu);
  margin-bottom: 4px
}

.mr-days {
  font-family: var(--ff);
  font-size: 26px;
  font-weight: 700;
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -.5px
}

.mr-days em {
  font-style: italic
}

.mr-concern {
  font-size: 14px;
  color: var(--mu);
  line-height: 1.55
}

/* ============================================================
   WHAT'S INCLUDED — features
   ============================================================ */

.included-section {
  background: var(--wh);
  padding: 90px 0
}

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

.feat-card {
  background: var(--warm);
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s, box-shadow .2s
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.feat-img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--r);
  object-fit: cover;
  border: 1px solid var(--bd);
  background: var(--bg-lt);
  object-position: top;
}

.feat-text h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 21px;
  color: var(--tx);
  margin-bottom: 10px;
  letter-spacing: -.3px
}

.feat-text p {
  font-size: 14.5px;
  color: var(--mu);
  line-height: 1.6
}

.tag {
  display: inline-block;
  background: var(--bg-lt);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 14px;
  letter-spacing: .5px
}

/* ============================================================
   COUPLE STORIES — testimonials
   ============================================================ */

.testi-section {
  background: var(--warm);
  padding: 90px 0;
  border-top: 1px solid var(--bd)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.testi-card {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 24px;
  border: 1px solid var(--bd);
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.tc-report {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm);
  margin-bottom: 18px;
  border: 1px solid var(--bd)
}

.tc-report img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.stars {
  color: #F5A623;
  font-size: 14px;
  margin-bottom: 6px
}

.testi-card .quote {
  font-size: 15px;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
  flex: 1
}

.testi-card .quote::before {
  content: "\201C";
  color: var(--bg);
  font-family: var(--ff);
  font-size: 30px;
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px
}

.tc-result {
  display: inline-block;
  background: var(--bg-lt);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
  letter-spacing: .3px
}

.tc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--bd)
}

.tc-av {
  width: 42px;
  height: 42px;
  background: #c168a0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.tc-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tx)
}

.tc-det {
  font-size: 12.5px;
  color: var(--li)
}

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

.faq-section {
  background: var(--wh);
  padding: 90px 0;
  border-top: 1px solid var(--bd)
}

.faq-grid {
  max-width: 840px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--bd);
  overflow: hidden
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 500;
  color: var(--tx);
  text-align: left;
  gap: 16px
}

.faq-q:hover {
  color: var(--bg)
}

.faq-arrow {
  width: 28px;
  height: 28px;
  background: var(--bg-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
  font-size: 14px;
  color: var(--bg);
  font-weight: 700
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: 15.5px;
  color: var(--mu);
  line-height: 1.7;
  padding: 0
}

.faq-ans.open {
  max-height: 400px;
  padding-bottom: 24px
}

.faq-arrow.open {
  transform: rotate(45deg);
  background: var(--bg);
  color: var(--wh)
}

/* ============================================================
   GUARANTEE
   ============================================================ */

.guarantee-section {
  background: var(--bg-lt);
  padding: 90px 0;
  border-top: 1px solid var(--bg-mid);
  border-bottom: 1px solid var(--bg-mid)
}

.guarantee-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center
}

.g-badge {
  width: 88px;
  height: 88px;
  background: #c168a0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 38px;
  box-shadow: 0 12px 30px rgba(107, 46, 107, .25)
}

.guarantee-section h2 {
  color: var(--bg);
  font-size: 42px;
  margin-bottom: 18px
}

.guarantee-section p {
  font-size: 16.5px;
  color: var(--mu);
  line-height: 1.65;
  margin-bottom: 8px
}

.g-list {
  list-style: none;
  text-align: left;
  margin: 32px auto 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 680px
}

.g-list li {
  font-size: 15px;
  color: var(--mu);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55
}

.g-list li::before {
  content: '✓';
  color: var(--bg);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 18px
}

.g-fine {
  font-size: 13px;
  color: var(--mu);
  margin-top: 18px
}

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

.cta-section {
  background: var(--bg-darker);
  color: var(--wh);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(217, 38, 138, .20), transparent 70%);
  pointer-events: none
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(closest-side, rgba(107, 46, 107, .30), transparent 70%);
  pointer-events: none
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto
}

.cta-section .section-label {
  color: #F4B6D6
}

.cta-section h2 {
  color: var(--wh);
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -1.2px
}

.cta-section h2 em {
  color: #F4B6D6;
  font-style: italic
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
  margin-bottom: 36px
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--wh);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s
}

.btn-wa:hover {
  background: #1eb555;
  transform: translateY(-1px)
}

.discrete-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.9
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #c168a0;
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand img {
  height: 42px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1)
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px
}

.footer-col h4 {
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 600;
  color: var(--wh);
  margin-bottom: 18px;
  letter-spacing: -.2px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s
}

.footer-col a:hover {
  color: var(--wh)
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  flex-wrap: wrap;
  gap: 14px
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width:1100px) {
  .hero h1 {
    font-size: 52px
  }
  .hero-float-1 {
    left: -12px
  }
  .hero-float-2 {
    right: -12px
  }
}

@media (max-width:959px) {
  :root {
    --gutter: 24px
  }
  .section,
  .problem-section,
  .results-section,
  .science-section,
  .metrics-section,
  .included-section,
  .testi-section,
  .faq-section,
  .guarantee-section,
  .cta-section {
    padding: 64px 0
  }
  .hero {
    padding: 48px 0 64px
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -.8px
  }
  .hero p {
    font-size: 16.5px
  }
  .stat-num {
    font-size: 28px
  }
  .hero-card {
    max-width: 480px;
    margin: 0 auto
  }
  .hero-float-1 {
    left: 8px
  }
  .hero-float-2 {
    right: 8px
  }
  .section h2 {
    font-size: 34px;
    letter-spacing: -.6px
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .prog-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .science-grid {
    grid-template-columns: 1fr
  }
  .metrics-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .mr-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
  .testi-grid .testi-card {
    max-width: 560px;
    margin: 0 auto;
    width: 100%
  }
  .cta-section h2 {
    font-size: 40px
  }
  .guarantee-section h2 {
    font-size: 34px
  }
  .g-list {
    grid-template-columns: 1fr
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .photo-strip {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px
  }
}

@media (max-width:640px) {
  :root {
    --gutter: 18px
  }
  .nav-links {
    display: none
  }
  .nav-tel {
    display: none
  }
  .nav-inner {
    padding: 14px var(--gutter)
  }
  .hero {
    padding: 36px 0 48px
  }
  .hero h1 {
    font-size: 34px;
    letter-spacing: -.5px;
    line-height: 1.1
  }
  .hero p {
    font-size: 15.5px;
    margin-bottom: 28px
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
  }
  .stat-box {
    padding: 14px 10px
  }
  .stat-num {
    font-size: 22px
  }
  .stat-label {
    font-size: 10.5px
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px
  }
  .hero-actions .btn {
    width: 100%
  }
  .hero-float {
    display: none
  }
  .section,
  .problem-section,
  .results-section,
  .science-section,
  .metrics-section,
  .included-section,
  .testi-section,
  .faq-section,
  .guarantee-section,
  .cta-section {
    padding: 48px 0
  }
  .section h2 {
    font-size: 26px;
    letter-spacing: -.4px
  }
  .section-lede {
    font-size: 14.5px
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
  .result-card {
    padding: 20px
  }
  .result-card h3 {
    font-size: 17px
  }
  .photo-strip {
    grid-template-columns: repeat(3, 1fr)
  }
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }
  .prog-card {
    padding: 18px 10px
  }
  .prog-card .pe {
    font-size: 28px
  }
  .prog-card .pl {
    font-size: 12px
  }
  .mr-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
  .mr-title {
    font-size: 24px
  }
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
  .feat-card {
    padding: 20px
  }
  .feat-text h3 {
    font-size: 18px
  }
  .cta-section h2 {
    font-size: 30px;
    letter-spacing: -.5px
  }
  .cta-section p {
    font-size: 15.5px
  }
  .btn-primary.lg {
    font-size: 15px;
    padding: 16px 26px;
    width: 100%
  }
  .btn-wa {
    width: 100%
  }
  .guarantee-section h2 {
    font-size: 26px
  }
  .g-badge {
    width: 68px;
    height: 68px;
    font-size: 30px
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
  .metrics-bars {
    padding: 22px
  }
  .mr-title {
    font-size: 22px
  }
  .problem-list li {
    padding: 14px 16px;
    font-size: 14px
  }
  .sperm-window {
    padding: 18px 20px
  }
  .sw-text {
    font-size: 14px
  }
  .sci-card {
    padding: 24px 22px
  }
  .sci-card h3 {
    font-size: 18px
  }
  .sci-card p {
    font-size: 14.5px
  }
}