/* Foundation Funnel — Landing Page styles.
   Builds on SuperFastDiet design tokens. */
@import url('assets/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-page); color: var(--fg-1); }
body { font-family: var(--font-body); font-weight: var(--w-regular); font-size: 17px; line-height: 1.6; color: var(--fg-1); }
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; }
.section.compact { padding: 56px 0; }
.section.tight { padding: 64px 0; }
.bg-blush { background: var(--bg-blush); }
.bg-grove { background: var(--bg-grove); }
.bg-sunny { background: var(--bg-sunny); }
.bg-paper { background: var(--bg-tint); }
.bg-cream { background: var(--bg-page); }
.bg-charcoal { background: var(--sfd-charcoal); color: white; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 245, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 225, 216, 0.5);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.nav-logo { height: 40px; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-link { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg-1); text-decoration: none; transition: color .14s; }
.nav-link:hover { color: var(--sfd-pink); }
.nav-login { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg-2); text-decoration: none; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 16px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .14s var(--ease-bounce), box-shadow .22s var(--ease-out);
  text-decoration: none; white-space: nowrap;
}
.btn.primary { background: var(--sfd-pink); color: white; box-shadow: var(--shadow-pink); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(238,114,142,.5); }
.btn.primary:active { transform: scale(.97); }
.btn.orange { background: var(--sfd-orange); color: white; box-shadow: var(--shadow-orange); }
.btn.orange:hover { transform: translateY(-2px); }
.btn.green { background: var(--sfd-green); color: white; box-shadow: var(--shadow-green); }
.btn.green:hover { transform: translateY(-2px); }
.btn.outline { background: white; color: var(--sfd-pink); box-shadow: inset 0 0 0 2px var(--sfd-pink); }
.btn.outline:hover { background: var(--bg-blush); }
.btn.ghost { background: transparent; color: var(--sfd-charcoal); padding: 12px 18px; }
.btn.ghost:hover { color: var(--sfd-pink); }
.btn.lg { font-size: 17px; padding: 20px 36px; }
.btn.xl { font-size: 18px; padding: 22px 42px; }
.btn.dark { background: var(--sfd-charcoal); color: white; }

/* ============ Section heads ============ */
.eyebrow {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px;
  color: var(--sfd-pink); margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--sfd-orange); }
.eyebrow.green { color: var(--sfd-green-700); }
.eyebrow.orange { color: var(--sfd-orange-700); }
.section-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 18px 0; color: var(--sfd-charcoal);
  text-wrap: pretty;
}
.section-title .pink { color: var(--sfd-pink); }
.section-title .green { color: var(--sfd-green); }
.section-title .orange { color: var(--sfd-orange); }
.section-title.on-dark { color: white; }
.section-sub {
  font-family: var(--font-body); font-weight: 400;
  font-size: 20px; line-height: 1.6; color: var(--fg-1);
  max-width: 680px; margin: 0 auto;
}
.section-sub.on-dark { color: rgba(255,255,255,0.78); }
.section-head.left { text-align: left; margin-left: 0; }

/* ============ Top trust bar ============ */
.top-bar {
  background: var(--sfd-pink-50); color: var(--sfd-pink-900);
  padding: 12px 0; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--sfd-pink-100);
}
.top-bar .heart { color: var(--sfd-pink); }
.top-bar b { font-weight: 800; color: var(--sfd-pink-700); }

/* ============ HERO ============ */
.hero { padding: 64px 0 88px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 76px; line-height: 1.0; letter-spacing: -0.045em; margin: 0 0 24px 0; color: var(--sfd-charcoal);
  text-wrap: pretty;
}
.hero h1 .pink { color: var(--sfd-pink); }
.hero h1 .green { color: var(--sfd-green); }
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 14px;
  background: var(--sfd-orange); opacity: 0.4; z-index: -1; border-radius: 999px;
}
.hero .lead {
  font-family: var(--font-body); font-weight: 400;
  font-size: 21px; line-height: 1.6; color: var(--fg-1);
  max-width: 520px; margin: 0 0 36px 0;
}
.hero .cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .secondary-link {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--fg-2); text-decoration: none; margin-top: 18px; display: inline-block;
}
.hero .secondary-link:hover { color: var(--sfd-pink); }

.hero .trust { display: flex; gap: 18px; margin-top: 36px; align-items: center; }
.hero .avstack { display: flex; }
.hero .avstack .av { width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--bg-page); margin-left: -10px; background-size: cover; background-position: center; }
.hero .avstack .av:first-child { margin-left: 0; }
.hero .trust .stars {
  font-size: 14px; color: var(--sfd-charcoal); font-weight: 700;
  font-family: var(--font-display);
}
.hero .trust .stars .num { color: var(--sfd-pink); }

.hero-photo-wrap { position: relative; }
.hero-photo {
  aspect-ratio: 1 / 1; border-radius: 36px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-size: cover; background-position: center;
  background-color: var(--sfd-pink-100);
}
.hero-photo.photo-placeholder { position: relative; }
.hero-photo.photo-placeholder::after {
  content: '📷 hero photo — woman mid-laugh, bright kitchen, brand colours';
  position: absolute; inset: 0; padding: 32px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(43,42,40,0.45);
}
.hero .doodle-1 { position: absolute; top: 40px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: var(--sfd-orange); opacity: 0.16; z-index: -1; }
.hero .doodle-2 { position: absolute; bottom: -10px; left: -60px; width: 130px; height: 130px; border-radius: 50%; background: var(--sfd-green); opacity: 0.18; z-index: -1; }
.hero .sticker {
  position: absolute; top: -22px; right: 24px;
  background: white; padding: 16px 24px; border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-script); font-weight: 700;
  font-size: 30px; color: var(--sfd-pink); transform: rotate(-7deg);
}
.hero .stat-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--sfd-orange); color: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 16px; box-shadow: var(--shadow-orange);
  font-family: var(--font-display); font-weight: 800; line-height: 1.05;
  transform: rotate(-8deg);
}
.stat-badge .b1 { font-size: 12px; letter-spacing: 0.12em; }
.stat-badge .b2 { font-size: 38px; margin: 4px 0; letter-spacing: -0.03em; }
.stat-badge .b3 { font-size: 12px; opacity: 0.95; }

/* ============ Social proof strip ============ */
.proof-bar {
  background: white; border-radius: 28px; box-shadow: var(--shadow-md);
  padding: 26px 36px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.proof-bar .item { display: flex; align-items: center; gap: 14px; }
.proof-bar .icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900;
}
.proof-bar .icon.pink { background: var(--sfd-pink); }
.proof-bar .icon.orange { background: var(--sfd-orange); }
.proof-bar .icon.green { background: var(--sfd-green); }
.proof-bar .icon.dark { background: var(--sfd-charcoal); }
.proof-bar .text { font-family: var(--font-display); font-weight: 800; font-size: 14px; line-height: 1.25; color: var(--sfd-charcoal); }
.proof-bar .text small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--fg-2); margin-top: 2px; letter-spacing: 0; text-transform: none; }

/* ============ Problem section ============ */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  margin-bottom: 56px;
}
.problem-card {
  background: white; border-radius: 28px; padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.problem-card .pin {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  color: white; font-size: 22px;
  margin-bottom: 22px;
}
.problem-card.c-pink .pin { background: var(--sfd-pink); box-shadow: var(--shadow-pink); }
.problem-card.c-orange .pin { background: var(--sfd-orange); box-shadow: var(--shadow-orange); }
.problem-card.c-green .pin { background: var(--sfd-green); box-shadow: var(--shadow-green); }
.problem-card h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em;
  margin: 0 0 14px 0;
}
.problem-card p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.65; color: var(--fg-1); margin: 0;
}

.bridge {
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: 40px 32px; background: white; border-radius: 28px;
  box-shadow: var(--shadow-md); position: relative;
}
.bridge .punch {
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; letter-spacing: -0.025em; line-height: 1.15;
  color: var(--sfd-charcoal); margin: 0 0 14px 0;
}
.bridge .punch .pink { color: var(--sfd-pink); }
.bridge p { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 0; }
.bridge .sticker-tag {
  position: absolute; top: -18px; right: -14px;
  background: var(--sfd-green); color: white;
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-script); font-weight: 700; font-size: 22px;
  transform: rotate(6deg); box-shadow: var(--shadow-green);
}

/* ============ Why diets fail — compare ============ */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  align-items: stretch;
}
.compare-card {
  border-radius: 32px; padding: 44px 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.compare-card.bad { background: white; box-shadow: var(--shadow-sm); border: 2px solid var(--sfd-stone-200); }
.compare-card.good { background: var(--sfd-green-700); color: white; box-shadow: var(--shadow-lg); }
.compare-card h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; letter-spacing: -0.025em; line-height: 1.1; margin: 0;
}
.compare-card.good h3 { color: white; }
.compare-card.bad h3 { color: var(--sfd-charcoal); }
.compare-card .intro { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.6; opacity: 0.85; margin: 0; }
.compare-card.bad .intro { color: var(--fg-2); }
.compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.compare-card li {
  display: flex; gap: 14px;
  font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.55;
}
.compare-card li b { font-weight: 700; font-family: var(--font-display); display: block; margin-bottom: 2px; }
.compare-card.bad li::before {
  content: '✕'; width: 28px; height: 28px; border-radius: 50%;
  background: var(--sfd-pink-50); color: var(--sfd-pink-700);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 900; font-size: 13px;
}
.compare-card.good li::before {
  content: '✔'; width: 28px; height: 28px; border-radius: 50%;
  background: var(--sfd-green); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 900; font-size: 13px;
  font-family: 'Arial', 'Helvetica Neue', system-ui, sans-serif;
}
.compare-card.bad li b { color: var(--sfd-charcoal); }
.compare-card.good li b { color: white; }
.compare-card.bad li p, .compare-card.good li p { font-weight: 300; color: inherit; opacity: 0.85; margin: 0; }
.compare-card.bad li p { color: var(--fg-2); opacity: 1; }

.medical-quote {
  margin-top: 56px; max-width: 920px; margin-left: auto; margin-right: auto;
  background: white; border-radius: 32px; padding: 44px 48px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: center;
}
.medical-quote .doctor-av {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--sfd-pink-100); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--sfd-pink-700);
  flex-shrink: 0;
}
.medical-quote blockquote {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1.35; letter-spacing: -0.015em;
  color: var(--sfd-charcoal); margin: 0 0 14px 0;
}
.medical-quote blockquote::before { content: '"'; color: var(--sfd-pink); font-size: 48px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.medical-quote cite { font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--fg-2); letter-spacing: 0.04em; }
.medical-quote cite b { color: var(--sfd-pink); }

/* ============ Foundation solution ============ */
.differs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 24px; }
.differ {
  background: white; border-radius: 28px; padding: 32px 30px;
  box-shadow: var(--shadow-sm); transition: transform .22s var(--ease-bounce), box-shadow .22s;
}
.differ:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.differ .ic {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
}
.differ.c-pink .ic { background: var(--sfd-pink); box-shadow: var(--shadow-pink); }
.differ.c-orange .ic { background: var(--sfd-orange); box-shadow: var(--shadow-orange); }
.differ.c-green .ic { background: var(--sfd-green); box-shadow: var(--shadow-green); }
.differ.c-dark .ic { background: var(--sfd-charcoal); }
.differ.c-pink-alt .ic { background: var(--sfd-pink-700); }
.differ h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em; margin: 0 0 12px 0; color: var(--sfd-charcoal);
}
.differ p { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.65; color: var(--fg-1); margin: 0; }

.pull-quote {
  margin-top: 56px; background: var(--bg-blush); border-radius: 32px;
  padding: 48px 56px; max-width: 900px; margin-left: auto; margin-right: auto;
  position: relative;
}
.pull-quote .qmark {
  position: absolute; top: 16px; left: 28px;
  font-family: 'Times New Roman', serif; font-size: 120px; line-height: 1;
  color: var(--sfd-pink); opacity: 0.35;
}
.pull-quote blockquote {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; line-height: 1.35; letter-spacing: -0.015em;
  color: var(--sfd-charcoal); margin: 0 0 20px 0; position: relative;
}
.pull-quote cite {
  font-style: normal; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--sfd-pink-700); letter-spacing: 0.04em;
}

/* ============ How it works (4 steps) ============ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.step {
  background: white; border-radius: 28px; padding: 36px 28px;
  box-shadow: var(--shadow-md); position: relative;
  transition: transform .22s var(--ease-bounce);
}
.step:hover { transform: translateY(-4px); }
.step .num {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 24px; color: white;
}
.step.s1 .num { background: var(--sfd-pink); box-shadow: var(--shadow-pink); }
.step.s2 .num { background: var(--sfd-orange); box-shadow: var(--shadow-orange); }
.step.s3 .num { background: var(--sfd-green); box-shadow: var(--shadow-green); }
.step.s4 .num { background: var(--sfd-charcoal); }
.step h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em; margin: 0 0 12px 0; color: var(--sfd-charcoal); line-height: 1.15;
}
.step p { font-family: var(--font-body); font-weight: 300; font-size: 14.5px; line-height: 1.6; color: var(--fg-2); margin: 0; }

.insight-box {
  margin-top: 56px; max-width: 880px; margin-left: auto; margin-right: auto;
  background: var(--sfd-orange); color: white;
  border-radius: 32px; padding: 40px 48px;
  display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: center;
  box-shadow: var(--shadow-orange);
}
.insight-box .bulb {
  width: 72px; height: 72px; border-radius: 50%;
  background: white; color: var(--sfd-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.insight-box h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em; margin: 0 0 8px 0; color: white;
}
.insight-box p { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.5; color: white; margin: 0; opacity: 0.95; }

/* ============ Pricing ============ */
.price-intro {
  max-width: 720px; margin: 0 auto 56px; text-align: center;
  font-family: var(--font-body); font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--fg-2);
}
.price-intro b { font-family: var(--font-display); font-weight: 800; color: var(--sfd-charcoal); }

.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch; max-width: 1180px; margin: 0 auto;
}
.price-card {
  background: white; border-radius: 32px; padding: 40px 34px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 20px; position: relative;
  transition: transform .22s var(--ease-bounce), box-shadow .22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: white; color: var(--sfd-charcoal); transform: translateY(-16px);
  box-shadow: 0 24px 50px rgba(238, 114, 142, 0.28);
  border: 3px solid var(--sfd-pink);
}
.price-card.featured:hover { transform: translateY(-20px); }
.price-card.featured .discount-sticker { right: -10px; left: auto; top: -22px; transform: rotate(8deg); }
.price-card.featured .pop-tag {
  position: absolute; top: -16px; left: 24px; transform: none;
  background: var(--sfd-pink); color: white;
  padding: 8px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: var(--shadow-pink); white-space: nowrap;
}
.price-card .pop-tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--sfd-orange); color: white;
  padding: 8px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: var(--shadow-orange); white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; letter-spacing: -0.025em;
  margin: 0; color: inherit;
}
.price-card .tagline {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  color: var(--fg-2); margin: 0; opacity: 0.9;
}
.price-card.featured .tagline { color: var(--fg-2); }
.price-card .value-box {
  background: var(--sfd-pink-100); border-radius: 18px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 4px solid var(--sfd-pink);
}
.price-card.featured .value-box { background: var(--sfd-orange-50); border-left-color: var(--sfd-orange); }
.price-card .pay-get {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--sfd-pink-900);
}
.price-card.featured .pay-get { color: var(--sfd-orange-700); }
.price-card .pay-get b { color: var(--sfd-pink-700); font-weight: 900; }
.price-card.featured .pay-get b { color: var(--sfd-orange-700); }
.price-card .pay-get .arrow { color: var(--sfd-pink-700); margin: 0 6px; opacity: 0.6; }
.price-card.featured .pay-get .arrow { color: var(--sfd-orange); opacity: 0.6; }
.price-card .save {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sfd-green-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.price-card .save::before {
  content: '★'; color: var(--sfd-green); font-size: 14px;
}
.price-card.featured .save { color: var(--sfd-green-700); }

/* 50% off corner sticker */
.price-card .discount-sticker {
  position: absolute; top: -22px; right: -10px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--sfd-orange); color: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(10deg);
  box-shadow: var(--shadow-orange);
  font-family: var(--font-display); line-height: 1;
  z-index: 2;
}
.price-card .discount-sticker .ds-pct {
  font-weight: 900; font-size: 26px; letter-spacing: -0.04em;
}
.price-card .discount-sticker .ds-off {
  font-weight: 800; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; margin-top: 2px;
}
.price-card .discount-sticker .ds-tag {
  font-weight: 700; font-size: 8.5px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 3px; opacity: 0.92;
}

/* Foundation-offer banner sitting above the price grid */
.foundation-offer-banner {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 auto 40px; padding: 12px 24px;
  white-space: nowrap; flex-wrap: nowrap;
  background: var(--sfd-pink); color: white;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.foundation-offer-banner .pct {
  background: var(--sfd-orange); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-weight: 900; font-size: 13px; letter-spacing: 0;
  white-space: nowrap;
}
.foundation-offer-banner .lim {
  font-weight: 400; opacity: 0.7; letter-spacing: 0.04em; text-transform: none;
  font-size: 12px;
}
.offer-row { text-align: center; }
.price-card .price {
  display: flex; align-items: baseline; gap: 14px; padding-top: 4px;
  flex-wrap: nowrap; white-space: nowrap;
}
.price-card .price b {
  font-family: var(--font-display); font-weight: 900;
  font-size: 62px; letter-spacing: -0.04em; line-height: 1;
}
.price-card .price span { font-family: var(--font-body); font-size: 17px; color: var(--fg-2); font-weight: 600; }
.price-card .price span s {
  color: var(--sfd-pink-700); font-weight: 800; opacity: 0.9;
  text-decoration: line-through; text-decoration-thickness: 2.5px;
  text-decoration-color: var(--sfd-pink);
  margin-left: 6px; font-size: 22px;
}
.price-card .total-note { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); margin-top: -10px; }
.price-card.featured .total-note { color: var(--fg-3); }
.price-card .included-label {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3);
  margin-top: 4px;
}
.price-card.featured .included-label { color: var(--fg-3); }
.price-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.price-card li {
  font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.price-card li::before {
  content: '✔'; color: var(--sfd-green-700); font-weight: 900; flex-shrink: 0;
  font-size: 16px; line-height: 1.4;
  font-family: 'Arial', 'Helvetica Neue', system-ui, sans-serif;
}
.price-card.featured li::before { color: var(--sfd-green-700); }
.price-card li b { font-weight: 700; }
.price-card .who-for {
  font-family: var(--font-body); font-weight: 300; font-size: 13.5px; line-height: 1.55;
  color: var(--fg-2); padding: 14px 16px; background: var(--bg-tint); border-radius: 14px;
}
.price-card.featured .who-for { background: var(--sfd-pink-50); color: var(--fg-2); }
.price-card .cta-area { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.price-card .support-copy {
  font-family: var(--font-body); font-size: 12.5px; color: var(--fg-3);
  text-align: center; margin: 0;
}
.price-card.featured .support-copy { color: var(--fg-3); }

.guarantee-bar {
  margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto;
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  color: var(--fg-2); letter-spacing: 0.04em;
}
.guarantee-bar .item { display: flex; align-items: center; gap: 8px; }
.guarantee-bar .check { color: var(--sfd-green); font-weight: 900; }

/* ============ Included grid ============ */
.included-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.feature {
  background: white; border-radius: 24px; padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; margin-bottom: 18px;
}
.feature.f1 .ic { background: var(--sfd-pink); box-shadow: var(--shadow-pink); }
.feature.f2 .ic { background: var(--sfd-orange); box-shadow: var(--shadow-orange); }
.feature.f3 .ic { background: var(--sfd-green); box-shadow: var(--shadow-green); }
.feature.f4 .ic { background: var(--sfd-pink-700); }
.feature.f5 .ic { background: var(--sfd-charcoal); }
.feature.f6 .ic { background: var(--sfd-orange-700); }
.feature.f7 .ic { background: var(--sfd-pink-300); }
.feature.f8 .ic { background: var(--sfd-green-700); }
.feature h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 10px 0; color: var(--sfd-charcoal);
}
.feature p {
  font-family: var(--font-body); font-weight: 400; font-size: 15px;
  line-height: 1.6; color: var(--fg-1); margin: 0;
}

/* ============ Stories ============ */
.story {
  background: white; border-radius: 36px; padding: 48px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 32px;
}
.story.reverse { grid-template-columns: 1fr 1.6fr; }
.story.reverse .story-photo-col { order: -1; }
.story-photo-col { position: relative; }
.story-photo {
  aspect-ratio: 1 / 1; border-radius: 28px; overflow: hidden;
  background: var(--sfd-pink-100); box-shadow: var(--shadow-md);
  position: relative;
}
.story-photo.photo-placeholder::after {
  content: '📷 member photo'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(43,42,40,0.45);
}
.story-photo.ph-pink { background: var(--sfd-pink-100); }
.story-photo.ph-orange { background: var(--sfd-orange-100); }
.story-photo.ph-green { background: var(--sfd-green-100); }
.story-result-badge {
  position: absolute; bottom: -20px; right: -16px;
  width: 124px; height: 124px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; text-align: center; padding: 10px;
  font-family: var(--font-display); font-weight: 800; line-height: 1.05;
  transform: rotate(-8deg);
}
.story-result-badge.r1 { background: var(--sfd-pink); box-shadow: var(--shadow-pink); }
.story-result-badge.r2 { background: var(--sfd-orange); box-shadow: var(--shadow-orange); }
.story-result-badge.r3 { background: var(--sfd-green); box-shadow: var(--shadow-green); }
.story-result-badge .lost-lbl { font-size: 11px; letter-spacing: 0.12em; }
.story-result-badge .kg { font-size: 32px; margin: 2px 0; letter-spacing: -0.03em; }
.story-result-badge .time { font-size: 10.5px; opacity: 0.95; letter-spacing: 0.06em; }

.story-content .meta-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.story-content .meta-chip {
  background: var(--bg-tint); border-radius: 999px; padding: 6px 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: var(--fg-2); letter-spacing: 0.04em;
}
.story-content .meta-chip.pink { background: var(--sfd-pink-50); color: var(--sfd-pink-700); }
.story-content .meta-chip.orange { background: var(--sfd-orange-50); color: var(--sfd-orange-700); }
.story-content .meta-chip.green { background: var(--sfd-green-50); color: var(--sfd-green-700); }

.story-content h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 34px; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 18px 0; color: var(--sfd-charcoal);
  text-wrap: pretty;
}
.story-content .pq {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; line-height: 1.4; letter-spacing: -0.015em;
  color: var(--sfd-pink); margin: 0 0 18px 0; padding-left: 18px;
  border-left: 4px solid var(--sfd-pink-300);
}
.story-content p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16.5px; line-height: 1.65; color: var(--fg-1); margin: 0 0 14px 0;
}
.story-content .name {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--sfd-charcoal); letter-spacing: 0.02em; margin-top: 8px;
}
.story-content .name .where { color: var(--fg-3); font-weight: 400; margin-left: 6px; }

/* Mini testimonial grid */
.mini-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  margin-top: 64px;
}
.mini-test {
  background: white; border-radius: 22px; padding: 24px;
  box-shadow: var(--shadow-sm);
}
.mini-test .stars-mini { font-size: 14px; color: var(--sfd-orange); margin-bottom: 10px; letter-spacing: 0.04em; }
.mini-test blockquote {
  font-family: var(--font-body); font-weight: 400; font-size: 14px; line-height: 1.55;
  color: var(--sfd-charcoal); margin: 0 0 14px 0;
}
.mini-test blockquote::before { content: '"'; }
.mini-test blockquote::after { content: '"'; }
.mini-test .from {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  color: var(--sfd-pink-700); letter-spacing: 0.04em;
}

/* ============ Medical authority ============ */
.med-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.med-photo-wrap { position: relative; }
.med-photo {
  aspect-ratio: 1 / 1; border-radius: 36px;
  background: var(--sfd-green-100); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.med-photo.photo-placeholder::after {
  content: '📷 Dr. David Reiner portrait'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(43,42,40,0.45);
}
.med-photo-wrap .credentials-badge {
  position: absolute; bottom: -20px; left: -16px;
  background: white; padding: 16px 22px; border-radius: 22px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 800;
  color: var(--sfd-charcoal);
}
.credentials-badge .ce-1 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sfd-pink); }
.credentials-badge .ce-2 { font-size: 26px; letter-spacing: -0.025em; line-height: 1; margin: 4px 0; }
.credentials-badge .ce-3 { font-size: 12px; color: var(--fg-2); }

.med-content h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 18px 0; color: var(--sfd-charcoal);
}
.med-content .intro {
  font-family: var(--font-body); font-weight: 300; font-size: 17px; line-height: 1.6;
  color: var(--fg-2); margin: 0 0 28px 0;
}
.med-content .doctor-quote {
  background: var(--bg-blush); border-radius: 22px; padding: 24px 28px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.4; color: var(--sfd-pink-700);
  letter-spacing: -0.01em; margin: 0 0 24px 0;
}
.doctor-quote::before { content: '"'; }
.doctor-quote::after { content: '"'; }
.med-content p { font-family: var(--font-body); font-weight: 300; font-size: 15.5px; line-height: 1.65; color: var(--fg-2); margin: 0 0 22px 0; }
.med-credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: white; border-radius: 22px; padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.med-credentials .item {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--sfd-charcoal); display: flex; gap: 10px; align-items: center;
}
.med-credentials .item::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sfd-pink); flex-shrink: 0;
}
.med-credentials .item.orange::before { background: var(--sfd-orange); }
.med-credentials .item.green::before { background: var(--sfd-green); }

/* ============ Guarantee ============ */
.guarantee {
  background: var(--sfd-green-700); color: white;
  border-radius: 40px; padding: 72px 64px;
  display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.guarantee::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%; background: var(--sfd-pink); opacity: 0.18;
}
.guarantee-seal {
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--sfd-pink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; text-align: center; padding: 24px;
  box-shadow: 0 18px 40px rgba(238, 114, 142, 0.45);
  position: relative; z-index: 1;
  border: 4px dashed rgba(255,255,255,0.4);
}
.guarantee-seal .s1 { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.guarantee-seal .s2 { font-family: var(--font-display); font-weight: 900; font-size: 64px; letter-spacing: -0.04em; line-height: 1; margin: 6px 0; }
.guarantee-seal .s3 { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.guarantee-seal .s4 { font-family: var(--font-script); font-size: 22px; margin-top: 6px; opacity: 0.9; }

.guarantee-content h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 18px 0; color: white;
}
.guarantee-content p {
  font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,0.85); margin: 0 0 14px 0; max-width: 580px;
}
.guarantee-content .trust-row {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px;
}
.guarantee-content .trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,0.85); letter-spacing: 0.04em;
}
.guarantee-content .trust-chip::before { content: ''; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center; }

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: 22px; padding: 24px 28px;
  box-shadow: var(--shadow-xs); cursor: pointer; transition: box-shadow .22s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item .q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--sfd-charcoal);
}
.faq-item .plus {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-blush); color: var(--sfd-pink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
  transition: transform .22s var(--ease-bounce);
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--sfd-pink); color: white; }
.faq-item .a {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16.5px; line-height: 1.7; color: var(--fg-1);
  padding-top: 16px; display: none;
}
.faq-item.open .a { display: block; }
.faq-item .a p { margin: 0 0 12px 0; font-family: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; color: inherit; }
.faq-item .a p:last-child { margin-bottom: 0; }
.faq-item .a b { font-weight: 700; color: var(--sfd-charcoal); }
.faq-item .a ul { margin: 0 0 12px 0; padding-left: 22px; }
.faq-item .a li { margin-bottom: 4px; }

/* ============ Final CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--sfd-pink) 0%, #F58A6E 55%, var(--sfd-orange) 100%);
  color: white; border-radius: 0; padding: 96px 0; position: relative; overflow: hidden;
}
.final-cta::before { content: ''; position: absolute; right: -80px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.final-cta::after { content: ''; position: absolute; left: -120px; bottom: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.final-cta-inner { text-align: center; position: relative; z-index: 1; }
.final-cta .eyebrow { color: rgba(255,255,255,0.8); }
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; line-height: 1.0; letter-spacing: -0.04em; margin: 0 0 24px 0; color: white;
  text-wrap: pretty;
}
.final-cta .lead {
  font-family: var(--font-body); font-weight: 400; font-size: 19px; line-height: 1.6;
  color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto 48px;
}
.final-cta-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 980px; margin: 0 auto 32px;
}
.final-cta-card {
  background: white; color: var(--sfd-charcoal);
  border-radius: 24px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform .22s var(--ease-bounce);
}
.final-cta-card:hover { transform: translateY(-4px); }
.final-cta-card.featured {
  background: white; color: var(--sfd-charcoal);
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
  transform: translateY(-8px);
  border: 4px solid var(--sfd-orange);
}
.final-cta-card.featured:hover { transform: translateY(-12px); }
.final-cta-card .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sfd-orange); color: white;
  padding: 6px 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: var(--shadow-orange); white-space: nowrap;
}
.final-cta-card h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -0.025em;
  margin: 0;
}
.final-cta-card .terms {
  font-family: var(--font-body); font-size: 13px;
  color: var(--fg-2);
}
.final-cta-card.featured .terms { color: var(--fg-2); }
.final-cta-card .terms b { font-family: var(--font-display); font-weight: 800; color: var(--sfd-charcoal); }
.final-cta-card.featured .terms b { color: var(--sfd-charcoal); }
.final-cta .reassure {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  color: rgba(255,255,255,0.92); letter-spacing: 0.04em;
}
.final-cta .reassure .check { color: white; font-weight: 900; }
.final-cta .last-line {
  font-family: var(--font-script); font-weight: 700;
  font-size: 32px; color: white; margin-top: 48px; opacity: 0.95;
  transform: rotate(-2deg); display: inline-block;
}

/* Micro-FAQ row */
.micro-faq {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1080px; margin: 0 auto;
}
.micro-faq .mf {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px; padding: 24px 26px;
  text-align: left;
}
.micro-faq .mf h5 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 15px; letter-spacing: -0.01em; color: white; margin: 0 0 10px 0;
}
.micro-faq .mf p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.88);
  margin: 0;
}

/* ============ Footer ============ */
.footer { background: #2A1A1F; color: white; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h5 { font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sfd-orange); margin: 0 0 18px 0; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-family: var(--font-body); font-weight: 400; font-size: 14px; }
.footer a:hover { color: var(--sfd-pink); }
.footer-logo { height: 44px; margin-bottom: 18px; }
.footer .blurb { font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============ Pillars (3-col grid w/ bullets) ============ */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pillar {
  background: white; border-radius: 32px; padding: 40px 36px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 16px;
  transition: transform .22s var(--ease-bounce);
}
.pillar:hover { transform: translateY(-4px); }
.pillar .badge {
  align-self: flex-start;
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; color: white;
}
.pillar.p1 .badge { background: var(--sfd-pink); }
.pillar.p2 .badge { background: var(--sfd-orange); }
.pillar.p3 .badge { background: var(--sfd-green); }
.pillar h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 30px; letter-spacing: -0.03em; line-height: 1.1; margin: 0; color: var(--sfd-charcoal);
}
.pillar .pillar-sub {
  font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
}
.pillar ul {
  list-style: none; padding: 0; margin: 8px 0 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pillar li {
  font-family: var(--font-body); font-weight: 400; font-size: 14.5px; line-height: 1.5;
  color: var(--sfd-charcoal);
  display: flex; gap: 12px; align-items: flex-start;
}
.pillar li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sfd-charcoal); flex-shrink: 0; margin-top: 9px;
}
.pillar.p1 li::before { background: var(--sfd-pink); }
.pillar.p2 li::before { background: var(--sfd-orange); }
.pillar.p3 li::before { background: var(--sfd-green); }

/* ============ 3-Level Curriculum ============ */
.curriculum {
  margin-top: 64px;
}
.curriculum-head { text-align: center; margin-bottom: 32px; }
.curriculum-head .eyebrow { color: var(--sfd-orange-700); }
.curriculum-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; letter-spacing: -0.03em; margin: 0; color: var(--sfd-charcoal); text-wrap: pretty;
}
.levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.level {
  background: white; border-radius: 28px; padding: 32px 28px;
  box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.level .level-num {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); align-self: flex-start;
}
.level .level-num .dot {
  width: 26px; height: 26px; border-radius: 50%; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.level.l1 .level-num .dot { background: var(--sfd-pink); }
.level.l2 .level-num .dot { background: var(--sfd-orange); }
.level.l3 .level-num .dot { background: var(--sfd-green); }
.level h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; letter-spacing: -0.025em; line-height: 1.1; margin: 0; color: var(--sfd-charcoal);
}
.level .duration {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--fg-2); letter-spacing: 0.04em;
}
.level ul {
  list-style: none; padding: 0; margin: 8px 0 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.level li {
  font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.5;
  color: var(--fg-2); display: flex; gap: 10px; align-items: flex-start;
}
.level li::before {
  content: '✔'; color: var(--sfd-green-700); font-weight: 900; font-size: 13px;
  flex-shrink: 0;
  font-family: 'Arial', 'Helvetica Neue', system-ui, sans-serif;
}

/* ============ Expert Panel ============ */
.experts-head { text-align: center; margin-top: 56px; margin-bottom: 32px; }
.experts-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 30px; letter-spacing: -0.025em; margin: 0 0 10px 0; color: var(--sfd-charcoal);
}
.experts-head p {
  font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.55;
  color: var(--fg-2); max-width: 640px; margin: 0 auto;
}
.experts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.expert {
  background: white; border-radius: 22px; padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform .22s var(--ease-bounce), box-shadow .22s;
}
.expert:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.expert .av {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-weight: 800; font-size: 17px;
  letter-spacing: 0.02em;
}
.expert.e1 .av { background: var(--sfd-pink); }
.expert.e2 .av { background: var(--sfd-orange); }
.expert.e3 .av { background: var(--sfd-green); }
.expert.e4 .av { background: var(--sfd-pink-700); }
.expert.e5 .av { background: var(--sfd-charcoal); }
.expert.e6 .av { background: var(--sfd-green-700); }
.expert .info { min-width: 0; }
.expert h5 {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em; color: var(--sfd-charcoal);
  margin: 0 0 2px 0;
}
.expert .role {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em; color: var(--sfd-pink-700); margin: 0 0 6px 0;
}
.expert.e2 .role { color: var(--sfd-orange-700); }
.expert.e3 .role { color: var(--sfd-green-700); }
.expert .bio {
  font-family: var(--font-body); font-weight: 300; font-size: 13px; line-height: 1.5;
  color: var(--fg-2); margin: 0;
}

/* ============ Big-numbers strip (quick wins) ============ */
.wins-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 56px;
}
.win {
  background: white; border-radius: 22px; padding: 22px 20px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .22s var(--ease-bounce);
}
.win:hover { transform: translateY(-3px); }
.win .kg {
  font-family: var(--font-display); font-weight: 900; font-size: 36px;
  letter-spacing: -0.04em; line-height: 1; color: var(--sfd-pink); margin-bottom: 6px;
}
.win.w2 .kg { color: var(--sfd-orange); }
.win.w3 .kg { color: var(--sfd-green); }
.win.w4 .kg { color: var(--sfd-pink-700); }
.win.w5 .kg { color: var(--sfd-charcoal); }
.win .who {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--sfd-charcoal); letter-spacing: 0.02em; margin-bottom: 4px;
}
.win .note {
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  color: var(--fg-2); line-height: 1.4;
}

/* ============ The Choice (Option 1 vs Option 2 in Final CTA) ============ */
.choice-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 920px; margin: 0 auto 48px;
  text-align: left;
}
.choice {
  border-radius: 24px; padding: 26px 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.choice.opt-bad {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255, 255, 255, 0.85);
}
.choice.opt-good {
  background: white; color: var(--sfd-charcoal);
  box-shadow: var(--shadow-lg);
}
.choice .choice-label {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.choice.opt-bad .choice-label { color: rgba(255,255,255,0.6); }
.choice.opt-good .choice-label { color: var(--sfd-pink); }
.choice h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; margin: 0;
}
.choice.opt-bad h4 { color: white; opacity: 0.92; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.45); text-decoration-thickness: 2px; }
.choice.opt-good h4 { color: var(--sfd-charcoal); }
.choice p {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14.5px; line-height: 1.55; margin: 0;
}
.choice.opt-bad p { color: rgba(255,255,255,0.78); }
.choice.opt-good p { color: var(--fg-2); }
.choice .choice-tag {
  margin-top: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--sfd-green-700); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.choice .choice-tag::before {
  content: '★'; color: var(--sfd-green); font-size: 14px;
}

/* ============ Why This Matters (in Medical section) ============ */
.why-matters {
  margin-top: 64px; max-width: 880px; margin-left: auto; margin-right: auto;
  background: white; border-radius: 32px; padding: 40px 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why-matters .why-head { margin-bottom: 24px; }
.why-matters .why-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.025em; color: var(--sfd-charcoal);
  margin: 0; text-wrap: pretty;
}
.why-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  text-align: left;
}
.why-list li {
  background: var(--bg-tint); border-radius: 16px; padding: 16px 18px;
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  line-height: 1.45; color: var(--fg-1);
  display: flex; flex-direction: column; gap: 4px;
}
.why-list li b {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sfd-green-700);
}
.why-matters .why-foot {
  margin: 24px 0 0 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -0.02em; color: var(--sfd-pink);
}

/* ============ Tweaks panel target ============ */
@media (max-width: 1100px) {
  .section { padding: 72px 0; }
  .hero-grid, .compare-grid, .med-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid, .included-grid, .price-grid, .final-cta-cards, .micro-faq, .mini-grid, .problem-grid, .pillars-grid, .levels-grid, .experts-grid, .wins-strip, .choice-block, .why-list { grid-template-columns: 1fr 1fr; }
  .story, .story.reverse { grid-template-columns: 1fr; }
  .story.reverse .story-photo-col { order: 0; }
  .hero h1 { font-size: 56px; }
  .section-title { font-size: 44px; }
  .final-cta h2 { font-size: 48px; }
}


/* ============ As Featured On (press logos strip) ============ */
.press-strip {
  background: white; border-radius: 24px; box-shadow: var(--shadow-sm);
  padding: 28px 40px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.press-strip .press-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sfd-pink-700); white-space: nowrap;
  padding-right: 28px; border-right: 2px solid var(--sfd-stone-200);
}
.press-strip .press-logos {
  display: flex; align-items: center; gap: 40px; flex: 1; flex-wrap: wrap;
  justify-content: space-around;
}
.press-strip .press-logo {
  font-family: 'Times New Roman', Georgia, serif; font-weight: 700;
  font-size: 22px; color: var(--fg-2); letter-spacing: 0.02em;
  opacity: 0.7; transition: opacity .22s;
}
.press-strip .press-logo:hover { opacity: 1; }
.press-strip .press-logo.italic { font-style: italic; }
.press-strip .press-logo.condensed { font-family: 'Arial Narrow', 'Helvetica Neue', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; }
.press-strip .press-logo.serif { font-family: Georgia, serif; }
.press-strip .press-logo.sans { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 800; }

/* ============ Founding Member offer badge inside pricing card ============ */
.fm-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sfd-pink); color: white;
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  align-self: flex-start;
}
.fm-badge::before { content: '★'; font-size: 13px; }
.fm-badge.orange { background: var(--sfd-orange); }
.fm-badge.green { background: var(--sfd-green-700); }

/* Price block — clear was/now treatment */
.price-stack {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-tint); border-radius: 18px; padding: 18px 20px;
}
.price-card.featured .price-stack { background: var(--sfd-pink-50); }
.price-stack .was {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--fg-3);
}
.price-stack .was .was-amt {
  font-size: 32px; font-weight: 900; line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--sfd-pink);
  color: var(--fg-2);
  letter-spacing: -0.02em;
}
.price-stack .now-row {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display);
}
.price-stack .now-label {
  font-weight: 800; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sfd-pink-700);
  align-self: center;
}
.price-card.featured .price-stack .now-label { color: var(--sfd-pink); }
.price-stack .now-amt {
  font-weight: 900; font-size: 64px; letter-spacing: -0.04em;
  line-height: 1; color: var(--sfd-charcoal);
}
.price-stack .now-period {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  color: var(--fg-2);
}
.price-stack .upfront {
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  color: var(--fg-2); letter-spacing: 0.02em;
}
.price-stack .upfront b { color: var(--sfd-charcoal); font-weight: 900; }
.price-stack .save-pill {
  align-self: flex-start;
  background: var(--sfd-green); color: white;
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 900; font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-green);
}

/* Offer block — "reduced from" callout below price */
.offer-line {
  background: var(--sfd-pink-50); border: 2px dashed var(--sfd-pink-300);
  border-radius: 14px; padding: 12px 16px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; color: var(--sfd-pink-700);
  text-align: center; letter-spacing: 0.01em; line-height: 1.35;
}
.offer-line b { font-weight: 900; color: var(--sfd-pink-900); }
.price-card.featured .offer-line {
  border-color: var(--sfd-orange); background: var(--sfd-orange-50);
  color: var(--sfd-orange-700);
}
.price-card.featured .offer-line b { color: var(--sfd-orange-900); }

/* ============ Coaches grid (group coaching feature) ============ */
.coaches-wrap {
  margin-top: 32px;
  background: white; border-radius: 28px; padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.coaches-head {
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 22px; flex-wrap: wrap;
}
.coaches-head .coach-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sfd-pink); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  flex-shrink: 0; box-shadow: var(--shadow-pink);
}
.coaches-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; letter-spacing: -0.02em; color: var(--sfd-charcoal);
  margin: 0;
}
.coaches-head p {
  font-family: var(--font-body); font-weight: 400; font-size: 16px;
  color: var(--fg-2); margin: 4px 0 0; line-height: 1.5;
  flex: 1; min-width: 260px;
}
.coaches-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.coach-card {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.coach-photo {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 22px;
  background: var(--sfd-pink-100);
  position: relative; overflow: hidden;
}
.coach-photo.ph-orange { background: var(--sfd-orange-100); }
.coach-photo.ph-green { background: var(--sfd-green-100); }
.coach-photo.ph-blush { background: var(--bg-blush); }
.coach-photo::after {
  content: '📷'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; opacity: 0.35;
}
.coach-card h5 {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--sfd-charcoal); margin: 6px 0 0;
}
.coach-card .role {
  font-family: var(--font-body); font-weight: 500; font-size: 13.5px;
  color: var(--fg-2); margin: 0;
}

/* ============ Guarantee conditions list ============ */
.guarantee-conditions {
  margin-top: 22px;
  background: rgba(255,255,255,0.12); border-radius: 18px;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.guarantee-conditions .gc-head {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; color: white;
  opacity: 0.85;
}
.guarantee-conditions ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.guarantee-conditions li {
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  color: white; line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.guarantee-conditions li::before {
  content: '✔'; color: var(--sfd-pink-100); font-weight: 900; flex-shrink: 0;
  background: rgba(255,255,255,0.18); width: 22px; height: 22px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Arial', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 12px; margin-top: 1px;
}

/* Section title weight tune for normal capitalisation */
.section-title { letter-spacing: -0.02em !important; }
.hero h1 { letter-spacing: -0.025em !important; }

/* Override inherited lowercase rules from colors_and_type.css */
h1, h2, h3, h4, h5, h6,
.sfd-hero, .sfd-h1, .sfd-h2, .sfd-h3, .sfd-h4,
.section-title, .hero h1,
.problem-card h3, .compare-card h3, .differ h3, .step h3, .pillar h3,
.curriculum-head h3, .level h4, .experts-head h3, .expert h5,
.price-card h3, .feature h4, .story-content h3, .insight-box h4,
.med-content h2, .guarantee-content h2, .final-cta h2,
.final-cta-card h4, .choice h4, .why-matters .why-head h3,
.coaches-head h3, .coach-card h5 {
  text-transform: none !important;
}

/* ============ Mobile Optimization ============ */

@media (max-width: 768px) {
  /* Typography scaling */
  .hero h1 { font-size: 42px; line-height: 1.1; }
  .section-title { font-size: 36px; line-height: 1.15; }
  .final-cta h2 { font-size: 36px; }
  
  /* Pricing grid - stack on mobile */
  .price-grid { 
    grid-template-columns: 1fr !important; 
    gap: 24px;
  }
  
  /* Price cards - better mobile formatting */
  .price-card {
    padding: 28px 20px;
  }
  
  .price-stack .now-amt {
    font-size: 52px;
  }
  
  /* Pricing details list */
  .price-details {
    font-size: 14px;
  }
  
  /* Buttons full width on mobile */
  .price-card .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Final CTA cards */
  .final-cta-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  /* Navigation - simplify on mobile */
  .nav-links {
    display: none;
  }
  
  .nav-login {
    font-size: 14px;
  }
  
  /* Hero grid spacing */
  .hero-grid {
    gap: 32px;
  }
  
  /* Story sections */
  .story-text {
    padding: 24px;
  }
  
  /* Steps grid */
  .steps-grid, .included-grid, .micro-faq, .mini-grid, 
  .problem-grid, .pillars-grid, .levels-grid, .experts-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Coach grid */
  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Footer columns */
  .sfd-footer-main {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
  }
  
  .sfd-footer-col {
    text-align: center;
  }
  
  /* Section padding reduction */
  .section {
    padding: 56px 0;
  }
  
  /* Wrap padding */
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Reassurance strip */
  .reassure {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 32px; }
  
  .price-stack .now-amt {
    font-size: 48px;
  }
  
  /* Coach grid - single column on very small screens */
  .coach-grid {
    grid-template-columns: 1fr;
  }
  
  /* Top bar - smaller text */
  .top-bar {
    font-size: 13px;
    padding: 10px 16px;
  }
  
  /* Button text size */
  .btn {
    font-size: 15px;
    padding: 14px 24px;
  }
  
  .btn.lg {
    font-size: 16px;
    padding: 16px 28px;
  }
}

/* ============ MOBILE OPTIMIZATION FIXES ============ */
@media (max-width: 768px) {
  html, body { 
    overflow-x: hidden; 
    max-width: 100vw; 
  }
  
  .wrap { 
    max-width: 100vw; 
    padding-left: 16px; 
    padding-right: 16px; 
  }
  
  .nav-links { display: none; }
  .nav-logo { max-width: 140px; }
  
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 32px; }
  
  .hero-grid, .price-grid, .final-cta-cards { 
    grid-template-columns: 1fr !important; 
  }
  
  .price-card .btn, .btn.lg { 
    width: 100%; 
    text-align: center; 
  }
  
  .story, .story.reverse { 
    grid-template-columns: 1fr !important; 
  }
  
  .steps-grid, .included-grid, .micro-faq, .coach-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .sfd-footer-main { 
    grid-template-columns: 1fr !important; 
    text-align: center; 
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .coach-grid { grid-template-columns: 1fr; }
}

/* ============ SPECIFIC MOBILE FIXES FOR OVERLAPPING ISSUES ============ */
@media (max-width: 768px) {
  /* Hero section - fix badge overflow */
  .hero-weight-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 16px;
    font-size: 12px !important;
    padding: 10px 16px !important;
    display: inline-block;
    max-width: 100%;
  }
  
  .hero-photo {
    position: relative !important;
  }
  
  /* Eyebrow text */
  .eyebrow {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* Lead text */
  .lead {
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Fix pricing card overflow */
  .price-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Pay/Get section */
  .pay-get {
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
  }
  
  /* Total note */
  .total-note {
    font-size: 13px;
    line-height: 1.4;
  }
  
  /* Support copy */
  .support-copy {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  
  /* FAQ items */
  .faq-item {
    font-size: 15px;
  }
  
  .faq-item .q {
    padding-right: 40px;
    word-wrap: break-word;
  }
  
  .faq-item .a {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Pricing details list */
  .price-details li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  
  /* Included label */
  .included-label {
    font-size: 12px;
  }
  
  /* Save pill */
  .save {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  /* Fix coach grid spacing */
  .coach-grid {
    gap: 12px;
  }
  
  .coach-card {
    padding: 12px;
  }
  
  .coach-name {
    font-size: 14px;
  }
  
  .coach-role {
    font-size: 12px;
  }
  
  /* Story section fixes */
  .story-text h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .story-text p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Final CTA section */
  .final-cta-card h4 {
    font-size: 20px;
  }
  
  .final-cta-card .terms {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Fix any absolute positioned elements */
  .hero-photo-col {
    position: relative !important;
  }
  
  /* Ensure no element causes horizontal scroll */
  * {
    max-width: 100vw;
  }
  
  /* Fix section padding for cramped sections */
  .section {
    padding: 40px 0;
  }
  
  .section-head {
    margin-bottom: 32px;
  }
  
  .section-sub {
    font-size: 15px;
    line-height: 1.5;
  }
  
  /* Top bar responsiveness */
  .top-bar {
    line-height: 1.3;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  /* Even smaller adjustments */
  .hero h1 {
    font-size: 28px;
    line-height: 1.15;
  }
  
  .section-title {
    font-size: 26px;
    line-height: 1.2;
  }
  
  .price-stack .now-amt {
    font-size: 40px;
  }
  
  .eyebrow {
    font-size: 11px;
  }
  
  .lead {
    font-size: 15px;
  }
  
  .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ============ HIDE FOOTER ON THIS PAGE ============ */
footer, .sfd-footer {
  display: none !important;
}

/* ============ MOBILE SPECIFIC FIXES ============ */
@media (max-width: 768px) {
  /* Group coaching bubbles - stack on mobile */
  .coaches-wrap ul[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Pricing discount stickers - better mobile sizing */
  .discount-sticker {
    transform: scale(0.85);
    transform-origin: top right;
  }
  
  .ds-pct {
    font-size: 18px !important;
    line-height: 1.1;
  }
  
  .ds-off {
    font-size: 12px !important;
  }
  
  .ds-tag {
    font-size: 9px !important;
  }
  
  /* Guarantee section - make more compact */
  .guarantee {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }
  
  .guarantee-seal {
    transform: scale(0.75);
    margin: 0 auto;
  }
  
  .guarantee-content {
    text-align: center;
  }
  
  .guarantee-content h2 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .guarantee-content p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .guarantee-conditions {
    margin: 20px 0;
    text-align: left;
  }
  
  .gc-head {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .guarantee-conditions ul {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .guarantee-conditions li {
    margin-bottom: 8px;
  }
  
  /* Medical quote - remove logo space */
  .medical-quote {
    display: block;
  }
  
  .doctor-av {
    display: none;
  }
  
  .medical-quote blockquote {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .medical-quote cite {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Even smaller guarantee on tiny screens */
  .guarantee-seal {
    transform: scale(0.65);
  }
  
  .guarantee-content h2 {
    font-size: 24px;
  }
  
  .discount-sticker {
    transform: scale(0.75);
  }
}

/* ============ FIX DR DAVID QUOTE MOBILE LAYOUT ============ */
@media (max-width: 768px) {
  .medical-quote {
    padding: 24px 20px;
  }
  
  .medical-quote blockquote {
    max-width: 100%;
    width: 100%;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 16px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .medical-quote cite {
    display: block;
    font-size: 14px;
    margin-top: 12px;
  }
}

/* ============ FIX PRICING BADGE POSITIONING ON MOBILE ============ */
@media (max-width: 768px) {
  .discount-sticker {
    position: absolute;
    top: 16px;
    right: 16px;
    transform: scale(0.8);
    transform-origin: top right;
    z-index: 10;
  }
  
  .price-card {
    position: relative;
    padding-top: 60px !important;
  }
  
  /* Ensure badge text doesn't wrap */
  .ds-pct, .ds-off, .ds-tag {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .discount-sticker {
    transform: scale(0.7);
    top: 12px;
    right: 12px;
  }
  
  .price-card {
    padding-top: 55px !important;
  }
  
  .medical-quote blockquote {
    font-size: 16px;
  }
}

/* ============ FIX HERO BADGE AND STICKER COLLISION ON MOBILE ============ */
@media (max-width: 768px) {
  .hero-photo-wrap {
    position: relative;
  }
  
  /* Position "you've got this" sticker below badge */
  .sticker {
    position: absolute !important;
    top: 80px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 9;
    font-size: 20px !important;
  }
  
  /* Keep weight badge at top */
  .hero-weight-badge {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    font-size: 12px !important;
    padding: 10px 16px !important;
    max-width: calc(100% - 32px);
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .sticker {
    font-size: 18px !important;
    top: 70px !important;
  }
  
  .hero-weight-badge {
    font-size: 11px !important;
    padding: 8px 14px !important;
  }
}

/* ============ FIX PRESS STRIP MOBILE LAYOUT ============ */
@media (max-width: 768px) {
  .press-strip {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    text-align: center;
  }
  
  .press-strip .press-label {
    border-right: none;
    border-bottom: 2px solid var(--sfd-stone-200);
    padding-right: 0;
    padding-bottom: 12px;
    width: 100%;
  }
  
  .press-strip .press-logos {
    justify-content: center;
    gap: 24px;
  }
  
  .press-strip .press-logo {
    font-size: 18px;
  }
}

/* ============ FIX TOP BANNER OVERFLOW ============ */
@media (max-width: 768px) {
  .foundation-offer-banner,
  .offer-row {
    font-size: 13px;
    padding: 12px 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .top-bar {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ============ FIX PRICING CARD PAY/GET SECTIONS ============ */
@media (max-width: 768px) {
  .value-box,
  .pay-get {
    font-size: 14px !important;
    line-height: 1.4;
    padding: 12px 16px;
  }
  
  .pay-get b {
    display: inline-block;
  }
  
  .arrow {
    margin: 0 4px;
  }
  
  /* Better wrapping for long text */
  .pay-get {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Stats section */
  .stat-badge {
    transform: scale(0.85);
    transform-origin: bottom right;
  }
  
  /* Icon circles in stats section */
  .icon-row {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .foundation-offer-banner,
  .offer-row {
    font-size: 11px;
  }
  
  .pay-get {
    font-size: 13px !important;
  }
  
  .press-strip .press-logo {
    font-size: 16px;
  }
}

/* ============ HIDE PRICING BADGES ON MOBILE ============ */
@media (max-width: 768px) {
  .discount-sticker {
    display: none !important;
  }
  
  /* Remove extra padding since badge is hidden */
  .price-card {
    padding-top: 24px !important;
  }
}

/* ============ FORCE HIDE ALL PRICING BADGES ON MOBILE ============ */
@media (max-width: 768px) {
  /* Hide discount sticker badges */
  .price-card .discount-sticker,
  .discount-sticker {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  /* Hide pop tag (Most Popular) */
  .price-card .pop-tag,
  .pop-tag {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Reset padding since badges are gone */
  .price-card {
    padding-top: 28px !important;
  }
  
  .price-card.featured {
    padding-top: 28px !important;
  }
}
