:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --ink: #14231f;
  --muted: #5e6e68;
  --line: #dbe8e2;
  --teal: #087c6d;
  --teal-dark: #045e55;
  --mint: #cfeee4;
  --coral: #e46d4d;
  --amber: #f2b84b;
  --shadow: 0 18px 48px rgba(12, 51, 45, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section--tight { padding: 72px 0; }
.section--dark { background: #102d28; color: #f4fffb; }
.section--proof { background: #eff7f3; }

.trust-strip { background: #0f2c27; color: #eefcf7; font-size: 13px; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 10px 0; }
.trust-strip span { display: flex; justify-content: center; gap: 6px; min-width: 0; white-space: nowrap; }
.trust-strip b { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 248, 0.92);
  border-bottom: 1px solid rgba(219, 232, 226, 0.85);
  backdrop-filter: blur(16px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 18px; font-weight: 850; text-decoration: none; }
.brand span:first-child {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: #123d36;
}
.brand span:first-child::before {
  position: absolute;
  inset: 9px;
  content: "";
  border: 3px solid var(--mint);
  border-radius: 50%;
}
.brand span:first-child::after {
  position: absolute;
  right: 7px;
  bottom: 12px;
  width: 11px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--amber);
  transform: rotate(-42deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button--primary { background: var(--teal); color: #fff; box-shadow: 0 12px 28px rgba(8, 124, 109, 0.26); }
.button--primary:hover, .button--primary:focus-visible { background: var(--teal-dark); }
.button--secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.button--small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.button--large { min-width: 220px; min-height: 58px; font-size: 16px; }
.button--full { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 78px 0 96px; }
.hero::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  content: "";
  background: linear-gradient(135deg, rgba(207, 238, 228, 0.86), rgba(255, 255, 255, 0)), linear-gradient(180deg, #ecf8f4, #f7fbf8);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.8fr); gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--teal-dark); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 680px; margin-bottom: 20px; font-size: clamp(44px, 6vw, 72px); line-height: 0.98; letter-spacing: 0; }
h2 { margin-bottom: 16px; font-size: clamp(30px, 4vw, 48px); line-height: 1.04; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.2; letter-spacing: 0; }
.hero__lead { max-width: 650px; margin-bottom: 28px; color: var(--muted); font-size: 19px; }
.price-lockup {
  display: flex;
  align-items: end;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid #b7ddd2;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(19, 60, 52, 0.1);
}
.price-lockup span { padding-bottom: 8px; color: var(--muted); font-size: 14px; font-weight: 800; white-space: nowrap; }
.price-lockup strong { color: var(--teal-dark); font-size: clamp(34px, 5vw, 52px); line-height: 0.88; white-space: nowrap; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.reassurance-line { max-width: 640px; margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__checks span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #37514b;
  font-size: 13px;
  font-weight: 800;
}

.choice-panel {
  overflow: hidden;
  border: 1px solid rgba(183, 221, 210, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.choice-panel img { width: 100%; height: 190px; object-fit: cover; }
.choice-panel__body { padding: 18px; }
.choice-panel__head { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.choice-panel__head span { color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.treatment-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.treatment-row.active { border-color: #95d5c5; background: #f1fbf8; }
.treatment-row i { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg, #113b35 0 65%, var(--amber) 65%); }
.treatment-row b, .treatment-row span { display: block; }
.treatment-row span { color: var(--muted); font-size: 13px; }
.treatment-row em { color: var(--teal-dark); font-size: 17px; font-style: normal; font-weight: 900; white-space: nowrap; }

.section-heading { max-width: 640px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr); gap: 40px; align-items: end; max-width: none; margin-bottom: 34px; }
.center { margin: 0 auto 34px; text-align: center; }
.section--dark .eyebrow, .section--dark .section-heading p { color: #aee0d5; }

.option-grid, .steps, .proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.option-card, .steps article, .benefit-grid article, .proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.option-card { display: flex; flex-direction: column; min-height: 100%; padding: 24px; box-shadow: 0 14px 34px rgba(31, 65, 58, 0.07); }
.option-card.featured { border-color: #9bd6c8; box-shadow: 0 18px 48px rgba(8, 124, 109, 0.16); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.card-top span { padding: 5px 10px; border-radius: 999px; background: #e7f6f1; color: var(--teal-dark); font-size: 12px; font-weight: 900; }
.card-top b { color: var(--teal-dark); font-size: 18px; white-space: nowrap; }
.option-card p { color: var(--muted); }
.option-card ul { display: grid; gap: 9px; margin: 6px 0 24px; padding: 0; color: #3f5650; list-style: none; }
.option-card li { position: relative; padding-left: 18px; }
.option-card li::before { position: absolute; left: 0; top: 0.66em; width: 8px; height: 8px; content: ""; border-radius: 50%; background: var(--coral); }
.option-card .button { margin-top: auto; }

.steps article { position: relative; overflow: hidden; padding: 28px; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); }
.steps article::after { position: absolute; right: -36px; bottom: -48px; width: 130px; height: 130px; content: ""; border: 24px solid rgba(207, 238, 228, 0.08); border-radius: 50%; }
.steps span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 24px; border-radius: var(--radius); background: var(--amber); color: #102d28; font-weight: 950; }
.steps p { margin-bottom: 0; color: #bfddd6; }

.benefit-layout, .two-col { display: grid; grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr); gap: 52px; align-items: start; }
.sticky { position: sticky; top: 106px; }
.sticky .button { margin-top: 12px; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.benefit-grid article { min-height: 210px; padding: 22px; }
.benefit-grid article:last-child { grid-column: 1 / -1; min-height: auto; }
.benefit-grid span { display: inline-flex; margin-bottom: 26px; color: var(--coral); font-size: 13px; font-weight: 950; }
.benefit-grid p { margin-bottom: 0; color: var(--muted); }

.accordion { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
summary { position: relative; min-height: 62px; padding: 20px 54px 20px 20px; cursor: pointer; font-size: 17px; font-weight: 900; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after {
  position: absolute;
  right: 20px;
  top: 21px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  content: "+";
  border-radius: 50%;
  background: #e7f6f1;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
}
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 20px 22px; color: var(--muted); }

.proof-grid article { min-height: 250px; padding: 24px; }
.proof-grid article > span { display: block; color: var(--coral); font-size: 52px; font-weight: 900; line-height: 0.8; }
.proof-grid p { color: #2c443d; font-size: 20px; font-weight: 750; line-height: 1.35; }
.proof-grid small { display: block; margin-top: 4px; color: var(--muted); }
.credibility-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.credibility-row div { padding: 20px; background: #fff; }
.credibility-row b, .credibility-row span { display: block; }
.credibility-row span { margin-top: 6px; color: var(--muted); font-size: 14px; }

.pricing-panel { border: 1px solid #b7ddd2; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.pricing-panel > div { display: grid; grid-template-columns: 210px 1fr; gap: 22px; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.pricing-panel span, .pricing-panel strong { display: block; }
.pricing-panel span { color: var(--muted); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.pricing-panel strong { color: var(--teal-dark); font-size: 28px; line-height: 1; }
.pricing-panel p { grid-column: 2; grid-row: 1; margin-bottom: 0; color: var(--muted); }
.pricing-panel .button { width: calc(100% - 44px); margin: 20px 22px 22px; }

.final-cta { padding: 96px 0; background: linear-gradient(135deg, rgba(16, 45, 40, 0.96), rgba(16, 45, 40, 0.9)), #102d28; color: #fff; text-align: center; }
.final-cta__inner { max-width: 760px; }
.final-cta .eyebrow { color: var(--amber); }
.final-cta p { max-width: 590px; margin: 0 auto 26px; color: #c7e4dd; font-size: 18px; }
.final-cta span { display: block; margin-top: 16px; color: #acd8ce; font-size: 14px; }

.site-footer { padding: 38px 0 94px; background: #071a17; color: #e5f6f1; }
.footer__inner { display: flex; justify-content: space-between; gap: 32px; }
.footer__inner p { max-width: 700px; margin: 8px 0 0; color: #9fc7bd; font-size: 13px; }
.footer__inner nav { display: flex; gap: 14px; white-space: nowrap; }
.footer__inner a { color: #cde5df; font-size: 14px; font-weight: 800; text-decoration: none; }

.mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 30; display: none; padding: 12px 18px; border-top: 1px solid rgba(219, 232, 226, 0.9); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px); }
.assessment-modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 22px; }
.assessment-modal[hidden] { display: none; }
.assessment-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(7, 26, 23, 0.64); cursor: pointer; }
.assessment-dialog { position: relative; z-index: 1; width: min(560px, 100%); max-height: calc(100vh - 44px); overflow: auto; padding: 30px; border: 1px solid #b7ddd2; border-radius: var(--radius); background: #fff; box-shadow: 0 26px 80px rgba(4, 35, 31, 0.3); }
.assessment-dialog__close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; }
.assessment-dialog__close span { position: absolute; width: 18px; height: 2px; border-radius: 999px; background: var(--ink); }
.assessment-dialog__close span:first-child { transform: rotate(45deg); }
.assessment-dialog__close span:last-child { transform: rotate(-45deg); }
.assessment-dialog h2 { padding-right: 40px; font-size: 34px; }
.assessment-dialog p:not(.eyebrow) { color: var(--muted); }
.assessment-form { display: grid; gap: 10px; margin-top: 22px; }
.assessment-form label { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; min-height: 74px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fafdfe; cursor: pointer; }
.assessment-form label:has(input:checked) { border-color: #86cfc0; background: #eefaf6; }
.assessment-form input { width: 18px; height: 18px; accent-color: var(--teal); }
.assessment-form b, .assessment-form small { display: block; }
.assessment-form small { margin-top: 2px; color: var(--muted); font-size: 13px; }
.assessment-form button { margin-top: 8px; }

@media (max-width: 980px) {
  .section { padding: 70px 0; }
  .hero { padding-top: 56px; }
  .hero::before { width: 100%; opacity: 0.55; clip-path: none; }
  .hero__grid, .benefit-layout, .two-col, .split { grid-template-columns: 1fr; gap: 34px; }
  .choice-panel { max-width: 620px; }
  .option-grid, .steps, .proof-grid, .credibility-row { grid-template-columns: 1fr; }
  .sticky { position: static; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1160px); }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 6px; padding: 8px 0; }
  .trust-strip span { justify-content: flex-start; white-space: normal; }
  .site-header .button { display: none; }
  .header__inner { min-height: 64px; }
  .brand { font-size: 16px; }
  .brand span:first-child { width: 32px; height: 32px; }
  h1 { font-size: 43px; }
  h2 { font-size: 32px; }
  .hero__lead { font-size: 17px; }
  .price-lockup { display: grid; grid-template-columns: 1fr auto; width: 100%; gap: 4px 10px; align-items: end; }
  .price-lockup span:first-child { grid-column: 1 / -1; padding-bottom: 0; }
  .price-lockup span:last-child { padding-bottom: 6px; }
  .cta-row .button { width: 100%; }
  .hero__checks { display: grid; grid-template-columns: 1fr; }
  .hero__checks span { justify-content: center; width: 100%; }
  .choice-panel__head { display: grid; }
  .treatment-row { grid-template-columns: 38px 1fr; }
  .treatment-row em { grid-column: 2; }
  .card-top { align-items: flex-start; flex-direction: column; }
  .benefit-grid { grid-template-columns: 1fr; }
  .pricing-panel > div { grid-template-columns: 1fr; gap: 10px; }
  .pricing-panel p { grid-column: auto; grid-row: auto; }
  .footer__inner { flex-direction: column; }
  .footer__inner nav { flex-wrap: wrap; }
  .mobile-cta { display: block; }
  .assessment-dialog { padding: 24px; }
  .assessment-dialog h2 { font-size: 30px; }
}

@media (max-width: 420px) {
  h1 { font-size: 38px; }
  .button { padding: 0 16px; }
  .proof-grid p { font-size: 18px; }
}

/* Care-first GLP-1 landing page */
:root {
  --ink: #21302d;
  --muted: #65736e;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --line: #dce5df;
  --sage: #dce9dd;
  --mint: #edf7ef;
  --teal: #2c7770;
  --teal-dark: #1f5c56;
  --coral: #c97765;
  --coral-soft: #f4ddd6;
  --shadow: 0 22px 60px rgba(35, 48, 45, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(220, 233, 221, 0.42), transparent 500px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(44, 119, 112, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 119, 112, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); }
select, summary { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  color: var(--surface);
  background: var(--teal-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.compact-top { padding-top: 60px; }

.reassurance-bar {
  color: #203a36;
  background: #e9f3ec;
  border-bottom: 1px solid rgba(111, 146, 125, 0.25);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 800;
}

.reassurance-grid span, .button, .trust-list li { display: inline-flex; gap: 9px; align-items: center; }
.reassurance-grid span { justify-content: center; white-space: nowrap; }
.reassurance-grid svg, .button svg, .trust-list svg { width: 18px; height: 18px; stroke-width: 2.25; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 248, 0.9);
  border-bottom: 1px solid rgba(220, 229, 223, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; min-height: 74px; }
.brand { display: inline-flex; gap: 10px; align-items: center; min-width: max-content; color: var(--ink); }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; color: var(--surface); background: var(--teal); border-radius: 50%; font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; font-weight: 700; }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: 0.78rem; font-weight: 800; }
.brand.wordmark {
  gap: 0;
  color: #303837;
  font-size: clamp(1.75rem, 2.5vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.brand.wordmark span:first-child,
.brand.wordmark strong {
  display: inline;
  width: auto;
  height: auto;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: 1em;
  line-height: 1;
}
.brand.wordmark span:first-child::before,
.brand.wordmark span:first-child::after { content: none; }
.brand.wordmark strong { font-weight: 900; }
.header-nav { display: flex; gap: clamp(16px, 2.2vw, 28px); justify-content: flex-end; color: #4f625d; font-size: 0.93rem; font-weight: 800; }

.button {
  min-height: 48px;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  color: var(--surface);
  background: var(--teal);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(44, 119, 112, 0.22);
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover, .button:focus-visible { background: var(--teal-dark); box-shadow: 0 16px 34px rgba(44, 119, 112, 0.28); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 0.7rem 0.95rem; font-size: 0.91rem; }
.button-secondary { color: var(--teal-dark); background: #f1f8f3; border-color: rgba(44, 119, 112, 0.18); box-shadow: none; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--surface); background: var(--teal-dark); }
.text-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--teal-dark); font-weight: 850; }

.hero { overflow: hidden; padding-top: 92px; background: transparent; color: var(--ink); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.77fr); gap: 58px; align-items: center; }
.hero-copy { max-width: 720px; }
.eyebrow { margin-bottom: 14px; color: var(--coral); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: 0; line-height: 1.04; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3.4rem, 7vw, 6.75rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.35rem, 4.8vw, 4.6rem); }
h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.08rem; line-height: 1.24; }
.hero-text { max-width: 680px; margin-bottom: 30px; color: #53635f; font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 30px; }
.trust-list { display: grid; gap: 11px; max-width: 560px; padding: 0; margin: 0; color: #3c504b; list-style: none; font-weight: 750; }
.trust-list li { align-items: flex-start; }
.trust-list svg { flex: 0 0 auto; margin-top: 3px; color: var(--teal); }

.hero-visual { position: relative; min-height: 660px; }
.hero-visual img { height: 620px; object-fit: cover; border: 10px solid var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.care-card { position: absolute; width: min(280px, 72%); padding: 18px; background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(220, 229, 223, 0.9); border-radius: var(--radius); box-shadow: 0 18px 42px rgba(35, 48, 45, 0.16); backdrop-filter: blur(16px); }
.care-card strong, .care-card span { display: block; }
.care-card strong { margin-bottom: 4px; }
.care-card p { margin: 0; font-size: 0.9rem; line-height: 1.45; }
.mini-label { margin-bottom: 6px; color: var(--coral); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.care-card-top { top: 34px; right: -28px; }
.care-card-bottom { left: -22px; bottom: 44px; }

.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading.narrow { max-width: 720px; }
.section-heading.align-left { margin-inline: 0; text-align: left; }
.section-heading p:last-child { margin-bottom: 0; font-size: 1.03rem; }
.frustration-grid, .steps-grid, .option-grid, .trust-grid { display: grid; gap: 18px; }
.frustration-grid { grid-template-columns: repeat(4, 1fr); }
.frustration-grid article, .steps-grid article, .option-card, .trust-grid article, .objection-list article, .story-card, .start-steps article { background: rgba(255, 255, 255, 0.88); border: 1px solid rgba(220, 229, 223, 0.88); border-radius: var(--radius); box-shadow: 0 14px 38px rgba(35, 48, 45, 0.06); }
.frustration-grid article, .trust-grid article, .story-card, .start-steps article { padding: 24px; }
.frustration-grid svg, .trust-grid svg { width: 26px; height: 26px; margin-bottom: 18px; color: var(--teal); }
.frustration-grid p, .steps-grid p, .option-card p, .trust-grid p, .objection-list p, .story-card p, .start-steps p { margin-bottom: 0; }

.reframe { background: linear-gradient(180deg, transparent, rgba(244, 221, 214, 0.32)); }
.reframe-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 58px; align-items: center; }
.image-panel { position: relative; }
.image-panel::after { position: absolute; right: -18px; bottom: -18px; z-index: -1; width: 72%; height: 52%; content: ""; background: var(--sage); border-radius: var(--radius); }
.image-panel img { aspect-ratio: 4 / 5; object-fit: cover; border: 10px solid var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.soft-callout { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 18px; margin: 26px 0; background: #f1f8f3; border: 1px solid rgba(44, 119, 112, 0.16); border-radius: var(--radius); }
.soft-callout svg { width: 24px; height: 24px; color: var(--teal); }
.soft-callout p { margin: 0; color: #425752; }
.biology-points { display: grid; gap: 14px; }
.biology-points div { display: grid; grid-template-columns: 44px 1fr; column-gap: 15px; padding: 18px 0; border-top: 1px solid var(--line); }
.biology-points span { display: grid; width: 36px; height: 36px; place-items: center; color: var(--teal-dark); background: var(--sage); border-radius: 50%; font-size: 0.8rem; font-weight: 900; }
.biology-points strong { color: var(--ink); font-size: 1.02rem; }
.biology-points p { grid-column: 2; margin: 2px 0 0; }

.care-model, .objections { background: var(--surface); }
.steps-grid { grid-template-columns: repeat(4, 1fr); counter-reset: steps; }
.steps-grid article { position: relative; min-height: 260px; padding: 26px; overflow: hidden; }
.steps-grid article::after { position: absolute; right: 18px; bottom: -22px; color: rgba(220, 233, 221, 0.72); content: "0" counter(steps); counter-increment: steps; font-family: Georgia, "Times New Roman", serif; font-size: 6rem; font-weight: 700; line-height: 1; }
.steps-grid span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 30px; color: var(--surface); background: var(--teal); border-radius: 50%; font-weight: 900; }
.steps-grid h3, .steps-grid p { position: relative; z-index: 1; }

.proof-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 46px; align-items: start; }
.story-stack { display: grid; gap: 16px; }
.story-card span { display: inline-flex; margin-bottom: 12px; padding: 0.32rem 0.55rem; color: var(--teal-dark); background: var(--mint); border-radius: 999px; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
.story-card p:first-of-type { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.26; }
.story-card strong { display: block; margin-bottom: 4px; }

.treatments { background: linear-gradient(180deg, rgba(220, 233, 221, 0.48), rgba(255, 255, 255, 0.7)), var(--paper); }
.option-grid { grid-template-columns: repeat(3, 1fr); }
.option-card { padding: 28px; }
.featured-option { border-color: rgba(201, 119, 101, 0.42); box-shadow: 0 22px 50px rgba(201, 119, 101, 0.13); }
.option-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 22px; color: var(--teal-dark); background: var(--sage); border-radius: 50%; }
.featured-option .option-icon { color: #8a4538; background: var(--coral-soft); }
.option-icon svg { width: 22px; height: 22px; }
.option-card ul { display: grid; gap: 9px; padding: 0; margin: 22px 0 0; color: #40524e; list-style: none; }
.option-card li { position: relative; padding-left: 18px; }
.option-card li::before { position: absolute; left: 0; top: 0.72em; width: 6px; height: 6px; content: ""; background: var(--coral); border-radius: 50%; }
.medical-note { max-width: 860px; margin: 28px auto 0; color: #5a6a65; font-size: 0.92rem; text-align: center; }

.trust-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 52px; align-items: center; }
.trust-grid { grid-template-columns: repeat(2, 1fr); }
.objection-layout, .faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 48px; align-items: start; }
.objection-list, .faq-list { display: grid; gap: 14px; }
.objection-list article { padding: 22px 24px; }
.objection-list h3 { margin-bottom: 5px; }

.start-panel { padding: 54px; background: linear-gradient(135deg, rgba(241, 248, 243, 0.94), rgba(255, 255, 255, 0.92)), var(--surface); border: 1px solid rgba(220, 229, 223, 0.9); border-radius: var(--radius); box-shadow: var(--shadow); }
.start-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0 30px; }
.start-steps span { display: inline-flex; margin-bottom: 18px; color: var(--coral); font-weight: 900; }
.intake-card { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; padding: 18px; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(220, 229, 223, 0.92); border-radius: var(--radius); }
.intake-card label { display: block; margin-bottom: 8px; color: #3d504b; font-size: 0.86rem; font-weight: 850; }
.intake-card select { width: 100%; min-height: 48px; padding: 0 40px 0 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); outline: none; }
.intake-card select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(44, 119, 112, 0.12); }
.form-response { grid-column: 1 / -1; min-height: 0; margin: 0; color: var(--teal-dark); font-size: 0.9rem; font-weight: 850; text-align: center; }
.tiny-note { max-width: 620px; margin: 16px auto 0; color: #687771; font-size: 0.86rem; text-align: center; }

details { background: var(--surface); border: 1px solid rgba(220, 229, 223, 0.92); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(35, 48, 45, 0.05); }
summary { position: relative; min-height: 64px; padding: 20px 54px 20px 22px; cursor: pointer; color: var(--ink); font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; right: 20px; top: 50%; display: grid; width: 26px; height: 26px; place-items: center; color: var(--teal-dark); content: "+"; background: var(--mint); border-radius: 50%; transform: translateY(-50%); }
details[open] summary::after { content: "-"; }
details p { padding: 0 22px 22px; margin: 0; }

.final-cta { padding-top: 56px; padding-bottom: 92px; background: transparent; color: var(--ink); text-align: left; }
.final-panel { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 42px; color: var(--surface); background: linear-gradient(135deg, rgba(31, 92, 86, 0.94), rgba(44, 119, 112, 0.86)), url("assets/editorial-glp1-comparison.png") center/cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.final-panel h2, .final-panel p, .final-panel .eyebrow { color: var(--surface); }
.final-panel h2 { max-width: 780px; }
.final-panel p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: rgba(255, 255, 255, 0.86); }
.final-panel .button { color: var(--teal-dark); background: var(--surface); box-shadow: none; }
.final-panel .button:hover, .final-panel .button:focus-visible { color: var(--surface); background: var(--coral); }

.intake-bridge-section {
  padding-top: 54px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 50% 8%, rgba(20, 184, 166, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, #fbf8f4 100%);
  color: #141414;
  text-align: center;
}

.intake-bridge-card {
  display: grid;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 64px) clamp(26px, 3.5vw, 38px);
  color: #111;
  text-decoration: none;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(145deg, #fffcf8 0%, #f7f1e9 100%);
  border: 1px solid rgba(148, 135, 118, 0.22);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(35, 31, 26, 0.15);
  gap: 13px;
}

.intake-bridge-card span {
  margin-top: 0;
}

.intake-bridge-card:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.35);
  outline-offset: 5px;
}

.intake-bridge-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin: 0 auto 2px;
  align-items: center;
  justify-content: center;
  color: #927b5d;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 235, 224, 0.9));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(80, 63, 42, 0.11), inset 0 0 0 1px rgba(146, 123, 93, 0.12);
}

.intake-bridge-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.9;
}

.intake-bridge-section .intake-bridge-card h2 {
  margin: 0;
  color: #111;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.intake-bridge-subtext {
  display: inline-flex;
  margin: 0 auto 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #927b5d;
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
  line-height: 1.2;
}

.intake-bridge-subtext svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.intake-bridge-options {
  display: grid;
  width: min(560px, 100%);
  margin: 0 auto 12px;
  gap: 8px;
}

.intake-bridge-option {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 24px;
  color: #111;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(126, 111, 94, 0.28);
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  font-weight: 700;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.intake-bridge-option:hover,
.intake-bridge-card:hover .intake-bridge-option:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 184, 166, 0.72);
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.12);
  transform: translateY(-1px);
}

.intake-bridge-button {
  display: inline-flex;
  width: min(560px, 100%);
  min-height: 56px;
  margin: 8px auto 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 40% 0%, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #202020, #0f0f0f);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.intake-bridge-card:hover .intake-bridge-button,
.intake-bridge-card:focus-visible .intake-bridge-button {
  box-shadow: 0 21px 42px rgba(0, 0, 0, 0.22);
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.intake-bridge-footnote {
  display: inline-flex;
  margin: 6px auto 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #847666;
  font-size: clamp(0.82rem, 1.25vw, 0.98rem);
  line-height: 1.3;
}

.intake-bridge-footnote svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
}

.intake-bridge-footnote span {
  display: inline;
  color: inherit;
  font-size: inherit;
}

@media (max-width: 700px) {
  .intake-bridge-section {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .intake-bridge-card {
    border-radius: 18px;
    gap: 12px;
  }

  .intake-bridge-icon {
    width: 50px;
    height: 50px;
  }

  .intake-bridge-icon svg {
    width: 24px;
    height: 24px;
  }

  .intake-bridge-option {
    min-height: 50px;
    padding: 0 18px;
  }

  .intake-bridge-button {
    min-height: 54px;
    letter-spacing: 0.06em;
  }
}

.bottom-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 114px;
  color: #302d2a;
  background: #fbfbfa;
  border-top: 1px solid rgba(48, 45, 42, 0.16);
  border-bottom: 1px solid rgba(48, 45, 42, 0.16);
}

.bottom-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 28px clamp(20px, 4vw, 44px);
  border-right: 1px solid rgba(48, 45, 42, 0.16);
  font-size: clamp(1rem, 1.24vw, 1.18rem);
  font-weight: 850;
  line-height: 1.2;
}

.bottom-trust-item:last-child { border-right: 0; }

.bottom-trust-item svg {
  flex: 0 0 auto;
  width: clamp(34px, 3.1vw, 46px);
  height: clamp(34px, 3.1vw, 46px);
  color: #403a36;
  stroke-width: 1.65;
}

.disclaimer {
  padding: 42px 20px;
  background: #fafafa;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  color: #888888;
  font-size: 12px;
  line-height: 1.65;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.disclaimer-content p {
  margin: 0 0 12px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-content strong {
  color: #777777;
  font-weight: 700;
}

@media (max-width: 600px) {
  .disclaimer {
    padding: 34px 18px;
  }

  .disclaimer-content {
    font-size: 11px;
    line-height: 1.6;
  }
}

.site-footer { padding: 42px 0 88px; background: #20302d; color: var(--surface); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.footer-brand { color: var(--surface); }
.footer-brand.wordmark { color: var(--surface); }
.footer-brand .brand small, .site-footer p, .footer-links a, .footer-legal-links a { color: rgba(255, 255, 255, 0.68); }
.site-footer p { max-width: 560px; margin: 18px 0 0; font-size: 0.92rem; }
.footer-link-groups { display: grid; gap: 16px; justify-items: end; }
.footer-links, .footer-legal-links { display: flex; gap: 22px; font-size: 0.92rem; font-weight: 750; }
.footer-legal-links { gap: 16px; font-size: 0.84rem; font-weight: 650; }
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: none; padding: 10px 16px max(10px, env(safe-area-inset-bottom)); background: rgba(251, 252, 248, 0.94); border-top: 1px solid rgba(220, 229, 223, 0.9); backdrop-filter: blur(14px); }
.mobile-cta .button { width: 100%; min-height: 50px; }

@media (max-width: 1100px) {
  .hero-grid, .reframe-grid, .proof-grid, .trust-layout, .objection-layout, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: auto; }
  .hero-visual img { height: 520px; }
  .care-card-top { right: 18px; }
  .care-card-bottom { left: 18px; }
  .frustration-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid article { min-height: 230px; }
  .intake-card { grid-template-columns: 1fr 1fr; }
  .intake-card .button { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section-pad { padding: 68px 0; }
  .reassurance-grid { grid-template-columns: 1fr; gap: 6px; padding: 10px 0; }
  .reassurance-grid span { justify-content: flex-start; }
  .header-inner { grid-template-columns: 1fr auto; gap: 14px; min-height: 66px; }
  .header-nav, .header-inner .button { display: none; }
  h1 { font-size: clamp(2.78rem, 14vw, 4.35rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.35rem); }
  .hero-grid { gap: 42px; }
  .hero-visual img { height: 430px; border-width: 7px; }
  .care-card { position: relative; inset: auto; width: 100%; margin-top: 12px; }
  .care-card-bottom { margin-top: 10px; }
  .frustration-grid, .steps-grid, .option-grid, .trust-grid, .start-steps, .intake-card { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; }
  .steps-grid article::after { font-size: 4.6rem; }
  .start-panel, .final-panel { padding: 28px; }
  .final-panel { grid-template-columns: 1fr; }
  .final-panel .button { width: 100%; }
  .bottom-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .bottom-trust-item:nth-child(2) { border-right: 0; }
  .bottom-trust-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(48, 45, 42, 0.16); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-link-groups { justify-items: start; }
  .footer-links, .footer-legal-links { flex-wrap: wrap; }
  .mobile-cta { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section-pad { padding: 58px 0; }
  .hero { padding-top: 48px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .text-link { justify-content: center; }
  .hero-visual img { height: 360px; }
  .frustration-grid article, .steps-grid article, .option-card, .trust-grid article, .story-card, .start-steps article { padding: 22px; }
  .story-card p:first-of-type { font-size: 1.17rem; }
  .start-panel, .final-panel { padding: 22px; }
  .intake-card { padding: 14px; }
  .bottom-trust-strip { grid-template-columns: 1fr; }
  .bottom-trust-item { justify-content: flex-start; min-height: 84px; border-right: 0; border-bottom: 1px solid rgba(48, 45, 42, 0.16); }
  .bottom-trust-item:last-child { border-bottom: 0; }
  summary { padding-right: 48px; }
}

/* Image planning placeholders */
.image-placeholder {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  color: #21423d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(237, 247, 239, 0.7)),
    repeating-linear-gradient(135deg, rgba(44, 119, 112, 0.09) 0 1px, transparent 1px 18px),
    #dfeee5;
  border: 1px dashed rgba(44, 119, 112, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(35, 48, 45, 0.08);
}

.image-placeholder::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.image-placeholder span,
.story-card .image-placeholder span {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 0.34rem 0.58rem;
  color: #8a4538;
  background: rgba(244, 221, 214, 0.88);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder strong,
.image-placeholder p {
  position: relative;
  z-index: 1;
}

.image-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.06rem;
}

.image-placeholder p {
  max-width: 28rem;
  margin: 0;
  color: #526a64;
  font-size: 0.92rem;
  line-height: 1.42;
}

.hero-image-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.48fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 660px;
}

.hero-main-shot {
  grid-row: 1 / -1;
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(44, 119, 112, 0.17)),
    repeating-linear-gradient(135deg, rgba(44, 119, 112, 0.1) 0 1px, transparent 1px 20px),
    #dcefe8;
}

.hero-support-shot {
  min-height: 298px;
  align-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(201, 119, 101, 0.14)),
    repeating-linear-gradient(135deg, rgba(201, 119, 101, 0.12) 0 1px, transparent 1px 18px),
    #f3e4df;
}

.hero-image-plan .care-card-top {
  top: 24px;
  right: 22px;
}

.hero-image-plan .care-card-bottom {
  left: 24px;
  bottom: 32px;
}

.image-panel-placeholder {
  min-height: 560px;
}

.image-panel-placeholder::after {
  z-index: 0;
}

.biology-image-plan {
  z-index: 1;
  min-height: 560px;
  aspect-ratio: 4 / 5;
  align-content: center;
  border: 10px solid var(--surface);
  border-style: solid;
}

.testimonial-media {
  min-height: 168px;
  margin-bottom: 20px;
  box-shadow: none;
}

.testimonial-media p {
  font-size: 0.86rem;
}

.treatment-image {
  min-height: 178px;
  margin-bottom: 20px;
  box-shadow: none;
}

.treatment-image strong {
  font-size: 1rem;
}

.treatment-image p {
  font-size: 0.84rem;
}

.final-panel {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr) auto;
}

.final-image-plan {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 247, 239, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.final-image-plan strong,
.final-image-plan p {
  color: var(--teal-dark);
}

@media (max-width: 1100px) {
  .hero-image-plan {
    min-height: auto;
  }

  .hero-main-shot {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .hero-image-plan {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-main-shot,
  .hero-support-shot,
  .biology-image-plan {
    min-height: 360px;
  }

  .image-panel-placeholder {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .image-placeholder {
    padding: 18px;
  }

  .hero-main-shot,
  .hero-support-shot,
  .biology-image-plan {
    min-height: 300px;
  }
}

/* Reference-inspired hero variation */
.hero-variation {
  padding-top: 58px;
  padding-bottom: 72px;
}

.hero-shell {
  display: grid;
  gap: 34px;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0.7rem 1rem;
  color: #31524d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(35, 48, 45, 0.06);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-proof-row svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.hero-variation .hero-grid {
  grid-template-columns: minmax(390px, 0.86fr) minmax(520px, 1.14fr);
  gap: 46px;
  align-items: center;
}

.hero-variation h1 {
  max-width: 650px;
  font-size: clamp(3.15rem, 6vw, 6rem);
}

.hero-variation .hero-text {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-bullets span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 70px;
  padding: 13px;
  color: #36504b;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 229, 223, 0.88);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.28;
}

.hero-bullets svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--teal);
}

.hero-variation .hero-visual {
  min-height: auto;
}

.hero-variation .hero-image-plan {
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.72fr);
  grid-template-rows: minmax(250px, 1fr) minmax(220px, 0.86fr);
  min-height: 580px;
  gap: 14px;
}

.hero-variation .hero-main-shot {
  grid-row: 1 / -1;
  min-height: 580px;
}

.hero-variation .hero-support-shot,
.hero-product-shot {
  min-height: auto;
}

.hero-product-shot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(44, 119, 112, 0.12)),
    repeating-linear-gradient(135deg, rgba(44, 119, 112, 0.12) 0 1px, transparent 1px 18px),
    #e5f3ed;
}

.hero-rating-card {
  right: 28px;
  bottom: 28px;
  left: auto;
  top: auto;
}

@media (max-width: 1180px) {
  .hero-variation .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-variation .hero-copy {
    max-width: 780px;
  }
}

@media (max-width: 860px) {
  .hero-proof-row,
  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .hero-variation .hero-image-plan {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-variation .hero-main-shot,
  .hero-variation .hero-support-shot,
  .hero-product-shot {
    min-height: 320px;
  }

  .hero-rating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }
}

/* MEDVi-inspired hero image mosaic */
.hero-variation .hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 112px 230px 168px 176px;
  gap: 16px;
  min-height: auto;
}

.hero-mosaic .image-placeholder {
  min-height: 0;
  padding: 18px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(35, 48, 45, 0.1);
}

.mosaic-friends {
  grid-column: 1;
  grid-row: 1 / 3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(96, 164, 104, 0.28)),
    repeating-linear-gradient(135deg, rgba(37, 115, 61, 0.16) 0 1px, transparent 1px 18px),
    #cde9c5;
}

.mosaic-phone {
  grid-column: 1;
  grid-row: 3 / 5;
  background:
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.75) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(30, 174, 206, 0.28), rgba(44, 119, 112, 0.22)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 12px),
    #35c0d3;
}

.mosaic-portrait {
  grid-column: 2;
  grid-row: 2 / 4;
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 157, 64, 0.28) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(81, 78, 185, 0.5), rgba(205, 234, 150, 0.42)),
    #8b7de0;
}

.mosaic-rating {
  grid-column: 3;
  grid-row: 1;
}

.mosaic-package {
  grid-column: 3;
  grid-row: 2;
  background:
    linear-gradient(135deg, rgba(107, 185, 128, 0.62), rgba(44, 184, 184, 0.38)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 12px),
    #7dd3c2;
}

.mosaic-members {
  grid-column: 2;
  grid-row: 4;
}

.mosaic-active {
  grid-column: 3;
  grid-row: 3 / 5;
  background:
    linear-gradient(180deg, rgba(72, 176, 229, 0.24), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    #bfe0f6;
}

.mosaic-stat-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 0;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(115deg, #2fb5d8, #bd6ce0 48%, #ee5c7a);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(35, 48, 45, 0.12);
  text-align: center;
}

.mosaic-stat-card strong {
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.mosaic-stat-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

.mosaic-stat-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.mosaic-members {
  background: linear-gradient(115deg, #24acd1, #a56be5 48%, #f05d78);
}

.mosaic-members::after {
  display: block;
  width: min(220px, 80%);
  height: 22px;
  margin-top: 12px;
  content: "";
  background:
    radial-gradient(circle, #ffffff 0 8px, transparent 9px) 0 0 / 24px 22px repeat-x;
  opacity: 0.8;
}

@media (max-width: 1180px) {
  .hero-variation .hero-mosaic {
    grid-template-rows: 110px 220px 160px 170px;
  }
}

@media (max-width: 860px) {
  .hero-variation .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .mosaic-friends,
  .mosaic-phone,
  .mosaic-portrait,
  .mosaic-rating,
  .mosaic-package,
  .mosaic-members,
  .mosaic-active {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .mosaic-rating,
  .mosaic-members {
    min-height: 128px;
  }
}

@media (max-width: 560px) {
  .hero-variation .hero-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-friends,
  .mosaic-phone,
  .mosaic-portrait,
  .mosaic-package,
  .mosaic-active {
    min-height: 240px;
  }
}

/* Hero checklist update */
.hero-variation .hero-actions {
  margin-bottom: 22px;
}

.hero-variation .hero-actions .button-primary {
  min-width: 300px;
  justify-content: center;
  padding-inline: 1.5rem;
}

.hero-checklist {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  gap: 10px;
  margin-top: 0;
}

.hero-checklist span {
  position: relative;
  min-height: auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 0 0 32px;
  color: #2f4843;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.hero-checklist span::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: rgba(44, 119, 112, 0.14);
  border-radius: 999px;
}

.hero-checklist span::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
}

.hero-checklist i,
.hero-checklist svg {
  display: none;
}

@media (max-width: 560px) {
  .hero-variation .hero-actions .button-primary {
    width: 100%;
    min-width: 0;
  }
}

/* Publication badge marquee */
.press-marquee {
  position: relative;
  overflow: hidden;
  padding: 26px 0 28px;
  margin-top: -1px;
  background: transparent;
  border-block: 0;
}

.press-marquee::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 48%;
  height: 100%;
  content: "";
  background:
    linear-gradient(135deg, rgba(207, 238, 228, 0.86), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #ecf8f4, #f7fbf8);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.press-marquee::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(251, 252, 248, 0) 10%, rgba(251, 252, 248, 0) 90%, var(--paper) 100%);
  pointer-events: none;
}

.press-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: press-marquee 42s linear infinite;
}

.press-group {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4.2vw, 68px);
  padding-right: clamp(34px, 4.2vw, 68px);
}

.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 9vw, 142px);
  height: 38px;
  line-height: 1;
  opacity: 0.7;
}

.press-wide {
  width: clamp(126px, 12vw, 184px);
}

.press-logo img {
  display: block;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(0.88);
  mix-blend-mode: multiply;
  opacity: 0.58;
}

@keyframes press-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 560px) {
  .press-marquee {
    padding-block: 22px;
  }

  .press-group {
    gap: 28px;
    padding-right: 28px;
  }

  .press-logo {
    width: 92px;
    height: 32px;
  }

  .press-wide {
    width: 126px;
  }

  .press-logo img {
    max-height: 26px;
  }
}

/* Animated rainbow CTA treatment */
.button {
  --cta-bg-start: #2c7770;
  --cta-bg-end: #1f5c56;
  --cta-fg: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cta-fg);
  background: transparent;
  border: 0;
  box-shadow: 0 14px 36px rgba(44, 119, 112, 0.24);
  -webkit-appearance: none;
  appearance: none;
}

.button::before,
.button::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.button::before {
  inset: -160%;
  z-index: -2;
  background:
    conic-gradient(
      from 0deg,
      #ff4f86,
      #ffb84c,
      #f4f95d,
      #4ee99a,
      #28c9ff,
      #8b6dff,
      #ff4f86
    );
  animation: cta-rainbow-spin 3.8s linear infinite;
  will-change: transform;
}

.button::after {
  inset: 2px;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--cta-bg-start), var(--cta-bg-end));
  border-radius: max(4px, calc(var(--radius-sm) - 1px));
}

.button:hover,
.button:focus-visible {
  color: var(--cta-fg);
  background: transparent;
  box-shadow: 0 18px 42px rgba(44, 119, 112, 0.3);
  transform: translateY(-1px);
}

.button:hover::after,
.button:focus-visible::after {
  filter: brightness(0.94) saturate(1.08);
}

.button:focus-visible {
  outline: 3px solid rgba(47, 181, 216, 0.36);
  outline-offset: 3px;
}

.button-secondary,
.final-panel .button {
  --cta-bg-start: rgba(255, 255, 255, 0.98);
  --cta-bg-end: #eefaf5;
  --cta-fg: var(--teal-dark);
  color: var(--cta-fg);
  background: transparent;
  box-shadow: 0 12px 30px rgba(44, 119, 112, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.final-panel .button:hover,
.final-panel .button:focus-visible {
  color: var(--cta-fg);
  background: transparent;
}

@keyframes cta-rainbow-spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* ChatGPT reference hero redesign */
.hero-redesign {
  overflow: hidden;
  padding: clamp(64px, 7vw, 92px) 0 clamp(58px, 7vw, 86px);
  background: #ffffff;
}

.hero-redesign::before {
  display: none;
}

.hero-redesign .container {
  max-width: 1360px;
}

.hero-redesign .hero-shell {
  gap: 28px;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-badge-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0.52rem 1rem;
  color: #07162f;
  background: linear-gradient(180deg, #f2f7f4, #e8f1ec);
  border: 1px solid rgba(220, 229, 223, 0.8);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(20, 38, 31, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-badge-row svg {
  width: 17px;
  height: 17px;
  color: #0f8a48;
}

.hero-redesign .hero-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.94fr) 230px minmax(500px, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
}

.hero-redesign .hero-copy {
  max-width: 570px;
}

.hero-redesign .eyebrow {
  margin-bottom: 18px;
  color: #c97765;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.hero-redesign h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: #06162f;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-redesign h1 span {
  color: #14B8A6;
  font-style: italic;
}

.hero-redesign .hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: #26324b;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero-redesign .hero-actions {
  margin-bottom: 34px;
}

.hero-redesign .hero-actions .button-primary {
  --radius-sm: 999px;
  min-width: min(100%, 272px);
  min-height: 60px;
  justify-content: center;
  padding: 0.72rem 0.72rem 0.72rem 1.45rem;
  border-radius: 999px;
  font-size: 1.02rem;
}

.hero-redesign .hero-actions .button-primary svg {
  width: 36px;
  height: 36px;
  margin-left: 8px;
  padding: 8px;
  color: #0f8a48;
  background: #ffffff;
  border-radius: 999px;
  stroke-width: 2.5;
}

.hero-redesign .hero-check-card {
  width: 100%;
  max-width: 250px;
  gap: 0;
  align-self: center;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(20, 38, 31, 0.12);
}

.hero-redesign .hero-check-card span {
  min-height: 0;
  padding: 13px 0 13px 34px;
  color: #0d1730;
  border-bottom: 1px solid rgba(20, 38, 31, 0.09);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-redesign .hero-check-card span:last-child {
  border-bottom: 0;
}

.hero-redesign .hero-check-card span::before {
  top: 13px;
  width: 19px;
  height: 19px;
  background: rgba(15, 138, 72, 0.08);
  border: 1px solid rgba(15, 138, 72, 0.9);
}

.hero-redesign .hero-check-card span::after {
  top: 17px;
  left: 7px;
  border-color: #0f8a48;
}

.hero-product-grid {
  display: grid;
  grid-template-columns: minmax(245px, 1fr) minmax(132px, 0.52fr) minmax(132px, 0.52fr);
  grid-template-rows: minmax(240px, 0.94fr) minmax(222px, 0.78fr);
  gap: 12px;
  min-height: 500px;
}

.hero-redesign .hero-product-grid .image-placeholder {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
  color: #10201d;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(20, 38, 31, 0.08);
}

.hero-redesign .hero-product-grid .image-placeholder span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 8px;
  padding: 0.36rem 0.62rem;
  color: #8a4538;
  background: rgba(255, 239, 230, 0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-redesign .hero-product-grid .image-placeholder strong {
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  line-height: 1.22;
}

.hero-redesign .hero-product-grid .image-placeholder p {
  max-width: 20ch;
  margin: 8px 0 0;
  color: rgba(16, 32, 29, 0.72);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-person-card {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 54% 26%, rgba(15, 138, 72, 0.24) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 58%, rgba(20, 38, 31, 0.12) 0 24%, transparent 25%),
    linear-gradient(180deg, #eff7ef, #dbeee2);
}

.hero-product-card {
  grid-column: 2 / 4;
  background:
    radial-gradient(circle at 28% 54%, rgba(255, 255, 255, 0.82) 0 17%, transparent 18%),
    linear-gradient(135deg, #f6f6f6, #e6e7e8);
}

.hero-app-card {
  grid-column: 2 / 4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(135deg, rgba(15, 138, 72, 0.12) 0 1px, transparent 1px 12px),
    #eef8f3;
}

.hero-redesign + .press-marquee {
  margin-top: 0;
  background: #ffffff;
}

.hero-redesign + .press-marquee::before {
  display: none;
}

.hero-redesign + .press-marquee::after {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, #ffffff 100%);
}

@media (max-width: 1240px) {
  .hero-redesign .hero-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .hero-redesign .hero-copy {
    max-width: 720px;
  }

  .hero-product-grid {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .hero-redesign {
    padding-top: 48px;
  }

  .hero-badge-row {
    gap: 8px;
  }

  .hero-badge-row span {
    min-height: 34px;
    padding: 0.45rem 0.78rem;
    font-size: 0.78rem;
  }

  .hero-redesign .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-redesign h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-redesign .hero-check-card {
    max-width: none;
  }

  .hero-product-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-person-card,
  .hero-product-card,
  .hero-app-card {
    grid-column: 1 / -1;
  }

  .hero-person-card,
  .hero-product-card,
  .hero-app-card {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .hero-redesign .hero-actions .button-primary {
    width: 100%;
  }

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

  .hero-person-card,
  .hero-product-card,
  .hero-app-card {
    grid-column: auto;
    min-height: 240px;
  }
}

/* Match supplied hero mockup proportions */
.hero-redesign {
  padding-top: clamp(56px, 6vw, 74px);
  padding-bottom: clamp(70px, 7vw, 96px);
}

.hero-redesign .hero-shell {
  gap: 12px;
}

.hero-redesign .hero-layout {
  grid-template-columns: minmax(440px, 0.95fr) 228px minmax(560px, 1.02fr);
  gap: 18px;
  align-items: start;
}

.hero-redesign .hero-copy {
  max-width: 610px;
  padding-top: 48px;
}

.hero-redesign .hero-check-card {
  align-self: start;
  max-width: 228px;
  margin-top: 8px;
  padding: 20px 18px;
}

.hero-redesign .hero-check-card span {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 0.8rem;
}

.hero-redesign .hero-check-card span::before {
  top: 12px;
}

.hero-redesign .hero-check-card span::after {
  top: 16px;
}

.hero-product-grid {
  grid-template-columns: minmax(255px, 1.02fr) minmax(130px, 0.54fr) minmax(130px, 0.54fr);
  grid-template-rows: 274px 250px;
  gap: 12px;
  min-height: 536px;
}

.hero-person-card {
  grid-row: 1 / 3;
}

.hero-product-card {
  grid-column: 2 / 4;
}

.hero-app-card {
  grid-column: 2;
}

.hero-life-card {
  grid-column: 3;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.82) 0 15%, transparent 16%),
    linear-gradient(180deg, #d6efff, #dff1dd);
}

@media (max-width: 1240px) {
  .hero-redesign .hero-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .hero-redesign .hero-copy {
    padding-top: 32px;
  }

  .hero-redesign .hero-check-card {
    max-width: 240px;
    margin-top: 32px;
  }

  .hero-product-grid {
    grid-column: 1 / -1;
    grid-template-rows: 274px 250px;
  }
}

@media (max-width: 860px) {
  .hero-redesign {
    padding-top: 48px;
  }

  .hero-redesign .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-redesign .hero-copy {
    padding-top: 14px;
  }

  .hero-redesign .hero-check-card {
    max-width: none;
    margin-top: 0;
  }

  .hero-product-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-person-card,
  .hero-product-card,
  .hero-app-card,
  .hero-life-card {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .hero-product-grid {
    grid-template-columns: 1fr;
  }

  .hero-person-card,
  .hero-product-card,
  .hero-app-card,
  .hero-life-card {
    grid-column: auto;
    min-height: 240px;
  }
}

/* Stagger hero cards so the right side reads like the supplied collage */
@media (min-width: 1241px) {
  .hero-redesign .hero-check-card {
    margin-top: 42px;
    padding: 18px 17px;
  }

  .hero-redesign .hero-check-card span {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .hero-redesign .hero-check-card span::before {
    top: 9px;
  }

  .hero-redesign .hero-check-card span::after {
    top: 13px;
  }

  .hero-product-grid {
    grid-template-rows: 250px 238px;
    min-height: 500px;
  }

  .hero-person-card {
    transform: translateY(16px);
  }

  .hero-product-card {
    margin-bottom: 22px;
  }

  .hero-app-card {
    transform: translateY(-10px);
  }

  .hero-life-card {
    transform: translateY(22px);
  }
}

@media (min-width: 861px) and (max-width: 1240px) {
  .hero-redesign .hero-check-card {
    margin-top: 44px;
  }

  .hero-product-card {
    margin-bottom: 18px;
  }

  .hero-person-card {
    transform: translateY(12px);
  }

  .hero-app-card {
    transform: translateY(-8px);
  }

  .hero-life-card {
    transform: translateY(18px);
  }
}

/* Align hero card tops to the annotated reference */
@media (min-width: 1241px) {
  .hero-redesign .hero-check-card {
    margin-top: 18px;
  }

  .hero-product-grid {
    margin-top: -78px;
  }

  .hero-person-card,
  .hero-product-card {
    transform: none;
  }

  .hero-product-card {
    margin-bottom: 28px;
  }

  .hero-app-card {
    transform: translateY(-4px);
  }

  .hero-life-card {
    transform: translateY(28px);
  }
}

.hero-redesign .hero-product-grid .image-placeholder.has-image {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.hero-redesign .hero-product-grid .image-placeholder.has-image::before,
.hero-redesign .hero-product-grid .image-placeholder.has-image::after {
  display: none;
}

.hero-redesign .hero-product-grid .image-placeholder.has-image .hero-card-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-redesign .hero-product-grid .hero-person-card.has-image .hero-card-image,
.hero-redesign .hero-product-grid .hero-app-card.has-image .hero-card-image,
.hero-redesign .hero-product-grid .hero-life-card.has-image .hero-card-image {
  object-position: center top;
}

/* ============================================================
   METABOLIC SECTION — FIXED CSS
   Replace the existing .metabolic-* rules in your styles.css
   with everything below.
   ============================================================ */

/* Warm peach background matching the mockup */
.metabolic-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: clamp(760px, 62vw, 930px);
  padding-block: 0;
  background:
    linear-gradient(110deg, #fdf5ef 0 36%, #f5dfc8 62%, #e8bc98 100%);
}

/* Subtle warm grid texture overlay */
.metabolic-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.38) 40%, rgba(255, 255, 255, 0.0) 68%),
    linear-gradient(rgba(205, 112, 68, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 112, 68, 0.035) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  pointer-events: none;
  z-index: -2;
}

/* Bottom warm glow */
.metabolic-section::after {
  position: absolute;
  right: -8%;
  bottom: -8%;
  left: 28%;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 246, 235, 0), rgba(220, 148, 95, 0.48) 56%, rgba(205, 125, 70, 0.62));
  filter: blur(22px);
  pointer-events: none;
  z-index: -1;
}

.metabolic-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
}

.metabolic-copy {
  position: relative;
  z-index: 8;
  width: min(500px, 42vw);
  max-width: 520px;
  padding-block: clamp(78px, 9vw, 136px);
}

/* Pill label — "Understand your body" */
.metabolic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 38px;
  padding: 0 18px;
  color: #9a4a2d;
  background: rgba(255, 228, 211, 0.92);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metabolic-pill svg {
  width: 17px;
  height: 17px;
  color: #e56f35;
}

/* Heading: "Understanding" dark, "metabolic resistance" orange */
.metabolic-copy h2 {
  max-width: 560px;
  margin-bottom: 22px;
  color: #151b21;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
}

.metabolic-copy h2 span {
  display: block;
  color: #d76631;
}

.metabolic-lead {
  max-width: 500px;
  margin-bottom: 26px;
  color: #4f4843;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.metabolic-list {
  display: grid;
  max-width: 460px;
  margin-bottom: 34px;
}

.metabolic-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(180, 118, 85, 0.2);
}

.metabolic-list article:last-child {
  border-bottom: 1px solid rgba(180, 118, 85, 0.2);
}

.metabolic-list article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #f4ecff;
  color: #895ce4;
}

.metabolic-list article:nth-child(2) > span {
  color: #1196a5;
  background: #e8f7f4;
}

.metabolic-list article:nth-child(3) > span {
  color: #e65f34;
  background: #fff0e8;
}

.metabolic-list svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.05;
}

.metabolic-list h3 {
  margin-bottom: 5px;
  color: #171c20;
  font-size: 1.15rem;
  font-weight: 900;
}

.metabolic-list p {
  margin: 0;
  color: #5f5650;
  font-size: 0.98rem;
  line-height: 1.48;
}

/* Orange pill CTA button */
.metabolic-cta {
  display: inline-flex;
  align-items: center;
  min-width: min(100%, 278px);
  min-height: 60px;
  justify-content: space-between;
  padding: 0.75rem 0.72rem 0.75rem 1.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6893b, #e26630);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(219, 100, 44, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.metabolic-cta:hover,
.metabolic-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(219, 100, 44, 0.36);
}

.metabolic-cta svg {
  width: 36px;
  height: 36px;
  margin-left: 16px;
  padding: 8px;
  color: #e26630;
  background: #ffffff;
  border-radius: 999px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ── VISUAL PANEL ─────────────────────────────────────────── */

.metabolic-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  pointer-events: none;
}

/* CUTOUT PERSON — no card, no frame, no border, no background */
.metabolic-person {
  position: absolute;
  right: 14%;
  bottom: 0;
  z-index: 3;
  width: min(580px, 38vw);
  height: 100%;
  margin: 0;
  padding: 0;
  /* Remove ALL card styling */
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Remove the pseudo-element decorations that created the card frame */
.metabolic-person::before,
.metabolic-person::after {
  display: none;
  content: none;
}

/* The cutout PNG fills naturally with transparent bg showing through */
.metabolic-person img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: none;
  height: 95%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 48px rgba(100, 70, 40, 0.18));
}

/* ── FLOAT CARDS ──────────────────────────────────────────── */

.metabolic-float {
  position: absolute;
  overflow: hidden;
  z-index: 5;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.88);
  box-shadow: 0 18px 52px rgba(107, 78, 64, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.metabolic-float strong,
.metabolic-float small,
.metabolic-float p,
.metabolic-float span {
  position: relative;
  z-index: 1;
  display: block;
}

.metabolic-float strong {
  color: #181d20;
  font-size: 0.9rem;
  font-weight: 850;
}

.metabolic-float small,
.metabolic-float p {
  margin: 5px 0 0;
  color: #655a54;
  font-size: 0.8rem;
  line-height: 1.35;
}

.metabolic-float.has-metabolic-card-image {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.metabolic-float.has-metabolic-card-image::before,
.metabolic-float.has-metabolic-card-image::after {
  display: none;
  content: none;
}

.metabolic-float.has-metabolic-card-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 18px 34px rgba(107, 78, 64, 0.14));
}

.metabolic-chart.has-metabolic-card-image,
.metabolic-blood.has-metabolic-card-image {
  overflow: hidden;
  background: linear-gradient(135deg, #fffbf7, #fbf0e8);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(107, 78, 64, 0.16);
}

.metabolic-chart.has-metabolic-card-image img,
.metabolic-blood.has-metabolic-card-image img {
  border-radius: 18px;
}

/* Hormonal balance chart card — top-center, left of person */
.metabolic-chart {
  top: 14%;
  left: 40%;
  width: 210px;
  min-height: 0;
}

/* Mini sparkline chart */
.mini-chart {
  position: relative;
  height: 72px;
  margin-top: 14px;
  border-bottom: 1px solid rgba(107, 78, 64, 0.15);
  background: linear-gradient(rgba(117, 82, 205, 0.07) 1px, transparent 1px) 0 0 / 100% 25%;
}

.mini-chart span {
  position: absolute;
  bottom: var(--y, 12px);
  left: var(--x, 8%);
  width: 7px;
  height: 7px;
  background: #7e55df;
  border-radius: 50%;
}

/* Curve upward — bottom left to top right */
.mini-chart span:nth-child(1) { --x: 6%;  --y: 8px;  }
.mini-chart span:nth-child(2) { --x: 25%; --y: 16px; }
.mini-chart span:nth-child(3) { --x: 46%; --y: 30px; }
.mini-chart span:nth-child(4) { --x: 67%; --y: 48px; }
.mini-chart span:nth-child(5) { --x: 86%; --y: 64px; }

/* Product/medication card — top-right corner */
.metabolic-product {
  top: 5%;
  right: 1%;
  width: 150px;
  min-height: 0;
  transform: rotate(2deg);
}

/* CSS-drawn medication bottle */
.metabolic-product::before {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 46px;
  height: 90px;
  content: "";
  background: linear-gradient(180deg, #eef5f2, #ffffff 18%, #2a695f 18% 58%, #f6faf8 58%);
  border: 1px solid rgba(41, 67, 60, 0.16);
  border-radius: 10px 10px 16px 16px;
  transform: rotate(-8deg);
}

.metabolic-product span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 0.26rem 0.52rem;
  color: #8a4538;
  background: rgba(255, 232, 218, 0.95);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Metabolic health gauge card — right side, mid */
.metabolic-gauge {
  top: 38%;
  right: 0;
  width: 170px;
  min-height: 0;
  text-align: center;
}

/* CSS semicircle gauge */
.metabolic-gauge div {
  width: 120px;
  height: 60px;
  margin: 14px auto 0;
  border: 14px solid #f08145;
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
}

/* "Optimal" label */
.metabolic-gauge strong {
  font-size: 1rem;
  font-weight: 900;
  display: block;
  margin-top: 10px;
  color: #181d20;
}

.metabolic-gauge p {
  max-width: 150px;
  margin: 6px auto 0;
  font-size: 0.8rem;
  color: #655a54;
}

/* Blood sugar card — left-center of visual */
.metabolic-blood {
  left: 36%;
  bottom: 26%;
  width: 210px;
  min-height: 0;
  transform: rotate(-2deg);
}

/* Wavy line for blood sugar */
.metabolic-blood::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 40px;
  content: "";
  background:
    linear-gradient(150deg, transparent 0 18%, #2ca8b8 18% 20%, transparent 20% 38%, #2ca8b8 38% 40%, transparent 40% 58%, #2ca8b8 58% 60%, transparent 60%),
    linear-gradient(rgba(75, 64, 58, 0.1) 1px, transparent 1px) 0 0 / 100% 18px;
  opacity: 0.58;
}

/* Progress / weight loss card — bottom right, purple */
.metabolic-progress {
  right: 5%;
  bottom: 4%;
  width: 245px;
  min-height: 0;
  color: #ffffff;
}

.metabolic-progress strong {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.metabolic-progress p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* Downward curve line inside progress card */
.metabolic-progress::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 44px;
  content: "";
  background:
    linear-gradient(155deg, transparent 0 18%, rgba(255, 255, 255, 0.82) 18% 20%, transparent 20% 38%, rgba(255, 255, 255, 0.82) 38% 40%, transparent 40% 62%, rgba(255, 255, 255, 0.82) 62% 64%, transparent 64%),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 100% 18px;
}

/* ── RESPONSIVE: TABLET ───────────────────────────────────── */

@media (max-width: 1180px) {
  .metabolic-section {
    min-height: auto;
    padding-block: 72px 0;
  }

  .metabolic-layout {
    display: block;
    min-height: 0;
  }

  .metabolic-copy {
    width: 100%;
    max-width: 760px;
    padding-block: 0 48px;
  }

  .metabolic-list {
    max-width: 680px;
  }

  .metabolic-visual {
    position: relative;
    min-height: 700px;
  }

  .metabolic-person {
    right: 18%;
    bottom: 0;
    width: min(520px, 54vw);
    height: 100%;
  }

  .metabolic-person img {
    height: 90%;
  }

  .metabolic-chart {
    top: 6%;
    left: 6%;
  }

  .metabolic-product {
    top: 4%;
    right: 4%;
  }

  .metabolic-gauge {
    top: 34%;
    right: 1%;
  }

  .metabolic-blood {
    left: 7%;
    bottom: 24%;
  }

  .metabolic-progress {
    right: 7%;
    bottom: 4%;
  }
}

/* ── RESPONSIVE: MOBILE ───────────────────────────────────── */

@media (max-width: 760px) {
  .metabolic-section {
    min-height: auto;
    padding-block: 58px 66px;
  }

  .metabolic-section::after {
    right: -20%;
    left: 0;
    height: 24%;
  }

  .metabolic-layout {
    display: block;
    min-height: 0;
  }

  .metabolic-copy {
    width: 100%;
    padding-block: 0;
  }

  .metabolic-section::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 242, 0.66)),
      linear-gradient(rgba(205, 112, 68, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(205, 112, 68, 0.035) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
  }

  .metabolic-pill {
    margin-bottom: 28px;
  }

  .metabolic-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

  .metabolic-list article {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .metabolic-list article > span {
    width: 46px;
    height: 46px;
  }

  .metabolic-list svg {
    width: 22px;
    height: 22px;
  }

  .metabolic-cta {
    width: 100%;
  }

  .metabolic-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  /* On mobile, stack everything — person photo on top as cutout */
  .metabolic-person,
  .metabolic-float {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 180px;
    transform: none;
  }

  .metabolic-person {
    height: 420px;
    min-height: 0;
    order: -1;
  }

  .metabolic-person img {
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .metabolic-product,
  .metabolic-gauge,
  .metabolic-progress,
  .metabolic-chart,
  .metabolic-blood {
    width: 100%;
  }
}

/* Three-step care process section */
.care-process {
  padding-block: clamp(72px, 7vw, 112px);
  background: #fff9f7;
}

.care-process-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 68px);
  text-align: center;
}

.care-process-heading h2 {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #0f766e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.care-process-heading h2 .journey-word {
  font-weight: 400;
}

.care-process-heading p {
  margin: 0;
  color: #3f6f69;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.care-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.process-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px) clamp(24px, 3vw, 36px) 0;
  color: #115e59;
  background:
    radial-gradient(circle at 38% 92%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(135deg, #e7fbf8, #c9f3ed);
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(13, 148, 136, 0.12);
}

.process-card:nth-child(2) {
  background:
    radial-gradient(circle at 46% 90%, rgba(255, 255, 255, 0.42), transparent 25%),
    linear-gradient(135deg, #c6f5ef, #87ded4);
}

.process-card:nth-child(3) {
  color: #ecfdfb;
  background:
    radial-gradient(circle at 28% 88%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(135deg, #5ee3d4, #0d9488);
}

.process-copy {
  position: relative;
  z-index: 2;
  max-width: 410px;
  margin-inline: auto;
  text-align: center;
}

.process-card h3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 52px);
  color: #115e59;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0;
}

.process-card h3 span {
  font-weight: 500;
}

.process-card p {
  max-width: 410px;
  margin: 0 auto;
  color: #2f665f;
  font-size: clamp(1.06rem, 1.45vw, 1.34rem);
  line-height: 1.55;
}

.process-card:nth-child(3) h3,
.process-card:nth-child(3) p {
  color: #073f3a;
}

.process-visual {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 46%;
  pointer-events: none;
}

.process-visual.has-process-image {
  display: grid;
  height: 45%;
  overflow: visible;
  place-items: end center;
}

.process-visual.has-process-image img {
  display: block;
  max-width: 92%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.process-visual.has-process-image .process-bubble,
.process-visual.has-process-image .provider-note,
.process-visual.has-process-image .labs-card {
  z-index: 3;
}

.process-quiz .process-visual.has-process-image img {
  max-width: 78%;
  max-height: 128%;
  transform: translate(-12%, -12%);
}

.process-provider .process-visual.has-process-image img {
  width: 96%;
  max-width: 96%;
  height: 92%;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(46, 58, 46, 0.16);
}

.process-journey .process-visual.has-process-image img {
  max-width: 76%;
  max-height: 108%;
  transform: translateY(4%);
}

.phone-frame,
.dashboard-frame {
  position: absolute;
  left: 9%;
  bottom: -48px;
  width: 58%;
  min-height: 280px;
  padding: 38px 24px;
  background: #fbfcf8;
  border: 18px solid #2d3a31;
  border-bottom-width: 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 18px 38px rgba(32, 48, 42, 0.2);
}

.phone-frame::before,
.dashboard-frame::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 94px;
  height: 24px;
  content: "";
  background: #29372f;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-frame span,
.dashboard-frame span,
.provider-photo span,
.provider-note span {
  display: block;
  margin-bottom: 14px;
  color: #75806e;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-frame strong,
.dashboard-frame strong,
.provider-photo strong {
  display: block;
  color: #465746;
  font-size: 1.1rem;
  line-height: 1.2;
}

.phone-frame small,
.dashboard-frame small,
.provider-photo small {
  display: block;
  margin-top: 12px;
  color: #6c7767;
  line-height: 1.35;
}

.process-bubble,
.labs-card,
.provider-note {
  position: absolute;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  background: rgba(13, 148, 136, 0.88);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(13, 148, 136, 0.18);
  backdrop-filter: blur(10px);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.process-bubble {
  right: 7%;
  bottom: 82px;
  width: 210px;
}

.provider-photo {
  position: absolute;
  left: 17%;
  right: 7%;
  bottom: 0;
  min-height: 260px;
  padding: 28px;
  background:
    radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.8) 0 14%, transparent 15%),
    linear-gradient(135deg, rgba(120, 92, 66, 0.32), rgba(239, 242, 235, 0.9)),
    repeating-linear-gradient(135deg, rgba(44, 119, 112, 0.09) 0 1px, transparent 1px 18px);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 18px 40px rgba(46, 58, 46, 0.18);
}

.provider-note {
  left: 8%;
  bottom: 116px;
  width: 190px;
  color: #115e59;
  background: rgba(236, 253, 251, 0.86);
  font-size: 0.95rem;
}

.provider-note strong {
  display: block;
  color: #0f766e;
}

.dashboard-frame {
  width: 64%;
  min-height: 300px;
}

.labs-card {
  right: 7%;
  bottom: 130px;
  width: 220px;
  color: #115e59;
  background: rgba(236, 253, 251, 0.88);
  font-size: 1rem;
}

.labs-card strong,
.labs-card small {
  display: block;
}

.labs-card small {
  margin-top: 6px;
  color: #2f665f;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .care-process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .care-process {
    padding-block: 58px 66px;
  }

  .process-card {
    min-height: 500px;
    padding-inline: 22px;
    border-radius: 16px;
  }

  .process-card h3 {
    margin-bottom: 24px;
  }

  .process-card p {
    font-size: 1rem;
  }

  .process-visual {
    height: 42%;
  }

  .phone-frame,
  .dashboard-frame {
    left: 7%;
    width: 64%;
    min-height: 240px;
    border-width: 14px;
    border-bottom-width: 0;
  }

  .process-bubble,
  .labs-card {
    right: 6%;
    width: 190px;
    font-size: 0.95rem;
  }

  .provider-photo {
    left: 8%;
    min-height: 230px;
  }

  .provider-note {
    left: 5%;
    width: 168px;
  }
}

/* Product pricing cards below publication marquee */
.pricing-showcase {
  padding-block: clamp(72px, 7vw, 108px);
  background:
    radial-gradient(circle at 50% 8%, rgba(232, 243, 235, 0.8), transparent 34%),
    #fffdfb;
}

.pricing-showcase-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.pricing-showcase-head h2 {
  position: relative;
  margin: 0;
  padding-left: 34px;
  color: #222422;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
}

.pricing-showcase-head h2::before {
  position: absolute;
  top: 4px;
  bottom: 6px;
  left: 0;
  width: 3px;
  content: "";
  background: #4d946d;
  border-radius: 999px;
}

.pricing-showcase-head h2 span {
  display: block;
  color: #14B8A6;
}

.pricing-showcase-head p {
  max-width: 620px;
  margin: 6px 0 0;
  color: #303634;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.62;
}

.pricing-showcase-head p strong {
  color: #4d946d;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  align-items: center;
  padding: 24px 22px 26px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(213, 231, 210, 0.58) 0 28%, transparent 29%),
    linear-gradient(180deg, #ffffff, #f8fbf7);
  border: 1px solid rgba(224, 232, 225, 0.95);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(40, 54, 47, 0.08);
}

.pricing-card:nth-child(2),
.pricing-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, #fafafa);
}

.pricing-card:nth-child(3) {
  background:
    radial-gradient(circle at 50% 38%, rgba(220, 236, 218, 0.55) 0 28%, transparent 29%),
    linear-gradient(180deg, #ffffff, #f6fbf8);
}

.popular-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 13px;
  color: #ffffff;
  background: #2e7e55;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.popular-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.product-art {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 260px;
  place-items: end center;
  margin-bottom: 22px;
}

.product-art::before {
  position: absolute;
  inset: 18px 6% 0;
  content: "";
  background: repeating-radial-gradient(circle at 50% 70%, rgba(89, 134, 102, 0.12) 0 1px, transparent 1px 14px);
  border-radius: 50%;
}

.product-art span {
  position: relative;
  z-index: 1;
  display: block;
  filter: drop-shadow(0 22px 22px rgba(47, 65, 57, 0.18));
}

.vial-art span {
  width: 118px;
  height: 210px;
  background:
    linear-gradient(180deg, #7ca58f 0 10%, #c6b8a4 10% 22%, #1f7c65 22% 48%, #ffffff 48% 70%, #f7faf7 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 42%, rgba(5, 77, 62, 0.28));
  border: 1px solid rgba(38, 76, 63, 0.18);
  border-radius: 24px 24px 16px 16px;
}

.bottle-art span,
.tablet-art span {
  width: 122px;
  height: 178px;
  background:
    linear-gradient(180deg, #ecefeb 0 22%, #f9fbf9 22% 50%, #ffffff 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent 52%, rgba(40, 70, 64, 0.18));
  border: 1px solid rgba(42, 65, 58, 0.14);
  border-radius: 18px;
}

.tablet-art span {
  background:
    radial-gradient(circle, rgba(73, 118, 92, 0.45) 0 7px, transparent 8px) 14px 70px / 28px 28px repeat,
    linear-gradient(180deg, #9ab8a5 0 18%, #e9f1ec 18% 30%, #5f9177 30% 100%);
  border-radius: 16px 16px 24px 24px;
}

.pen-art span {
  width: 68px;
  height: 232px;
  background:
    linear-gradient(180deg, #282828 0 12%, #fbfbfb 12% 50%, #ffffff 50% 67%, #1f78a8 67% 88%, #ffffff 88%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent 56%, rgba(33, 53, 61, 0.18));
  border: 1px solid rgba(40, 54, 58, 0.14);
  border-radius: 999px;
  transform: rotate(22deg);
}

.price-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 160px;
  min-height: 58px;
  margin-bottom: 18px;
  padding: 8px 18px;
  color: #14724e;
  background: #e6f1e8;
  border-radius: 9px;
  font-size: 0.97rem;
  font-weight: 900;
  line-height: 1.24;
}

.muted-chip {
  color: #282a28;
  background: #f0e7dc;
}

.blue-chip {
  color: #0a669b;
  background: #e4eef5;
}

.pricing-card h3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 70px;
  margin-top: 0;
  margin-bottom: 7px;
  color: #202220;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
}

.pricing-card p {
  margin: 0 0 24px;
  color: #333834;
  font-size: 0.98rem;
}

.pricing-button {
  --radius-sm: 999px;
  --cta-bg-start: #33302e;
  --cta-bg-end: #1f1d1c;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  justify-content: space-between;
  padding-inline: 26px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.pricing-button.outline {
  --cta-bg-start: #ffffff;
  --cta-bg-end: #ffffff;
  color: #202220;
}

.pricing-button svg {
  width: 22px;
  height: 22px;
}

.pricing-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1060px;
  margin: clamp(32px, 4vw, 52px) auto 0;
  color: #202b27;
}

.pricing-trust-row span {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding-inline: 28px;
  border-left: 1px solid rgba(76, 96, 82, 0.22);
  font-weight: 750;
  line-height: 1.35;
}

.pricing-trust-row span:first-child {
  border-left: 0;
}

.pricing-trust-row svg {
  width: 34px;
  height: 34px;
  color: #6b9a7d;
  stroke-width: 1.7;
}

@media (max-width: 1120px) {
  .pricing-showcase-head {
    grid-template-columns: 1fr;
  }

  .pricing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-trust-row span:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .pricing-showcase {
    padding-block: 58px 66px;
  }

  .pricing-showcase-head h2 {
    padding-left: 22px;
  }

  .pricing-card-grid,
  .pricing-trust-row {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 480px;
  }

  .pricing-trust-row span {
    border-left: 0;
    border-top: 1px solid rgba(76, 96, 82, 0.18);
    padding: 18px 0;
  }

  .pricing-trust-row span:first-child {
    border-top: 0;
  }
}

/* Safety priority section */
.safety-priority {
  padding-block: clamp(82px, 8vw, 118px);
  background: #f0f0f1;
}

.safety-title {
  max-width: 1060px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  color: #332f2d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

.safety-title span {
  color: #19a9dd;
  background: linear-gradient(90deg, #2389e6, #35cbb8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.safety-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 32px);
}

.safety-card {
  display: grid;
  grid-template-rows: clamp(250px, 23vw, 300px) auto 1fr;
  min-height: 430px;
  padding: clamp(22px, 2.2vw, 30px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(220, 220, 220, 0.9);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.05);
}

.safety-visual {
  position: relative;
  height: 100%;
  min-height: 0;
  margin-bottom: clamp(24px, 2.8vw, 36px);
}

.safety-visual.has-safety-image {
  display: grid;
  height: 100%;
  overflow: hidden;
  place-items: center;
}

.safety-visual.has-safety-image img {
  display: block;
  width: min(100%, 330px);
  max-width: 100%;
  height: min(100%, 190px);
  max-height: 190px;
  object-fit: contain;
  object-position: center;
}

.safety-card h3 {
  margin: 0 0 10px;
  color: #332f2d;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 750;
  line-height: 1.12;
}

.safety-card p {
  max-width: 360px;
  margin: 0;
  color: #746e6b;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.42;
}

.safety-orb,
.purple-blob {
  position: absolute;
  inset: 26px 8% 12px 8%;
  background:
    radial-gradient(circle at 44% 48%, rgba(255, 255, 255, 0.38), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 5px, transparent 5px 10px),
    #18abd4;
  border-radius: 50%;
}

.purple-blob {
  inset: 20px 0 22px 6%;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, #3aa8f3, #8e70ef 48%, #de5bb9);
  border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
}

.phone-visual {
  position: absolute;
  right: 16%;
  bottom: 4px;
  z-index: 2;
  display: grid;
  width: 116px;
  min-height: 176px;
  gap: 8px;
  padding: 18px 12px;
  color: #21302c;
  background: #ffffff;
  border: 4px solid #171717;
  border-radius: 26px;
  box-shadow: 0 16px 28px rgba(25, 25, 25, 0.16);
}

.phone-visual span {
  font-size: 0.68rem;
  font-weight: 900;
}

.phone-visual small {
  display: block;
  padding: 6px 7px;
  color: #505b57;
  background: #f5f7f6;
  border: 1px solid #e6ece8;
  border-radius: 7px;
  font-size: 0.55rem;
  font-weight: 750;
}

.safety-form-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 132px;
  min-height: 28px;
  padding: 0 10px;
  color: #222;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe4e2;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(31, 31, 31, 0.08);
  font-size: 0.55rem;
}

.safety-form-chip strong {
  font-size: 0.5rem;
}

.chip-one {
  top: 12px;
  right: 2%;
}

.chip-two {
  top: 48px;
  right: 2%;
}

.chip-three {
  top: 76px;
  left: 10%;
  width: 148px;
  min-height: 54px;
  align-items: flex-start;
  flex-direction: column;
  padding-block: 8px;
}

.chip-three strong {
  color: #282f31;
  font-size: 0.95rem;
}

.coa-stamp {
  position: absolute;
  bottom: 12px;
  left: 12%;
  z-index: 4;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: #ffffff;
  background: #fb7a1e;
  border: 7px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(186, 88, 31, 0.2);
  font-size: 1rem;
  font-weight: 900;
}

.orange-med-chip {
  position: absolute;
  right: 3%;
  bottom: 62px;
  z-index: 4;
  width: 118px;
  padding: 10px;
  color: #ffffff;
  background: #ff6f16;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
}

.provider-oval {
  position: absolute;
  inset: 22px 4% 16px 4%;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 36%, #f2d2b7 0 12%, transparent 13%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent),
    #1f312f;
  border-radius: 50%;
}

.provider-oval::before,
.provider-oval::after,
.patient-cutout::before,
.patient-cutout::after {
  position: absolute;
  content: "";
}

.provider-oval::before {
  right: 22%;
  bottom: 18%;
  width: 92px;
  height: 102px;
  background: #f4f5f2;
  border-radius: 48px 48px 8px 8px;
}

.provider-oval::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 42px 42px;
}

.certified-pill {
  position: absolute;
  top: 32px;
  left: 6%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 14px;
  color: #2d302f;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(30, 38, 34, 0.1);
  font-weight: 850;
}

.certified-pill svg {
  width: 16px;
  height: 16px;
  color: #1ba7c0;
}

.doctor-card {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 4;
  width: 190px;
  padding: 18px 18px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(37, 38, 38, 0.08);
}

.doctor-card strong {
  display: block;
  color: #272c2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.12;
}

.doctor-avatars {
  width: 78px;
  height: 24px;
  margin: 0 auto 10px;
  background:
    radial-gradient(circle, #6fc6df 0 10px, transparent 11px) 0 0 / 22px 22px repeat-x;
  border-radius: 999px;
}

.patient-cutout {
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 2;
  width: 142px;
  height: 190px;
  background:
    radial-gradient(circle at 49% 18%, #e6bd9a 0 28px, transparent 29px),
    linear-gradient(155deg, transparent 0 35%, #f2ede7 36% 62%, transparent 63%),
    linear-gradient(180deg, #e8c1a2 0 100%);
  border-radius: 70px 70px 18px 18px;
}

.patient-cutout::before {
  top: 0;
  left: 43px;
  width: 54px;
  height: 36px;
  background: #3a2b23;
  border-radius: 55% 45% 48% 50%;
}

.patient-cutout::after {
  inset: 72px 36px 0;
  background: #f7f5f0;
  border-radius: 999px 999px 8px 8px;
}

.progress-card {
  position: absolute;
  right: 0;
  bottom: -2px;
  z-index: 5;
  width: 142px;
  min-height: 92px;
  padding: 12px;
  color: #b16be5;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(176, 102, 208, 0.5);
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(84, 51, 122, 0.12);
}

.progress-card strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.2;
}

.progress-card span {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 12px;
  background:
    linear-gradient(150deg, transparent 0 58%, rgba(255, 255, 255, 0.9) 59% 63%, transparent 64%),
    linear-gradient(170deg, transparent 0 52%, rgba(176, 102, 208, 0.52) 53% 56%, transparent 57%);
  border-bottom: 2px solid rgba(176, 102, 208, 0.38);
}

.safety-cta {
  --radius-sm: 999px;
  --cta-bg-start: #ff9a25;
  --cta-bg-end: #ff5e19;
  display: flex;
  width: fit-content;
  min-width: 230px;
  min-height: 58px;
  gap: 18px;
  margin: clamp(34px, 4vw, 48px) auto 0;
  border-radius: 999px;
  padding-inline: 28px 10px;
}

.safety-cta svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: #f46a22;
  background: #ffffff;
  border-radius: 50%;
}

@media (max-width: 1020px) {
  .safety-card-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    grid-template-rows: auto;
    min-height: auto;
  }

  .safety-visual {
    max-width: 460px;
    width: 100%;
    height: auto;
    min-height: 230px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .safety-priority {
    padding-block: 62px 72px;
  }

  .safety-title {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .safety-card {
    padding: 20px;
  }

  .safety-visual {
    min-height: 210px;
  }

  .doctor-card {
    right: 2%;
    width: 164px;
  }

  .progress-card {
    width: 128px;
  }
}

/* FAQ accordion redesign */
.faq {
  padding-block: clamp(76px, 8vw, 112px);
  background: #f4f4f5;
}

.faq-layout {
  display: block;
  max-width: 1040px;
}

.faq-heading {
  max-width: 880px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.faq-heading h2 {
  margin: 0;
  color: #272727;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.faq-heading h2 span {
  display: block;
  color: #14B8A6;
}

.faq-list {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.faq-list details {
  overflow: hidden;
  background: #ffffff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(26, 26, 26, 0.08);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: clamp(96px, 10vw, 128px);
  padding: 32px clamp(78px, 7vw, 104px) 32px clamp(32px, 5vw, 52px);
  color: #272727;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.25;
}

.faq-list summary::after {
  right: clamp(28px, 4vw, 50px);
  width: 32px;
  height: 32px;
  color: #ffffff;
  content: "+";
  background: #333435;
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1;
}

.faq-list details[open] summary {
  min-height: 92px;
  padding-bottom: 18px;
}

.faq-list details[open] summary::after {
  content: "+";
  font-size: 1.55rem;
  font-weight: 650;
}

.faq-list details p {
  max-width: 860px;
  padding: 0 clamp(78px, 7vw, 104px) 34px clamp(32px, 5vw, 52px);
  color: #706d6b;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .faq {
    padding-block: 58px 72px;
  }

  .faq-layout {
    width: min(100% - 28px, 1040px);
  }

  .faq-list {
    gap: 16px;
  }

  .faq-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .faq-list details {
    border-radius: 18px;
  }

  .faq-list summary {
    min-height: 86px;
    padding: 24px 64px 24px 22px;
    font-size: 1.08rem;
  }

  .faq-list summary::after {
    right: 22px;
    width: 28px;
    height: 28px;
  }

  .faq-list details p {
    padding: 0 22px 28px;
  }
}

/* Testimonial mosaic */
.testimonial-showcase {
  overflow: hidden;
  padding-block: clamp(84px, 8vw, 126px);
  background: #ffffff;
}

.testimonial-shell {
  width: min(1680px, calc(100% - 28px));
  max-width: none;
}

.testimonial-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
  width: min(1030px, 100%);
  margin-inline: auto;
}

.testimonial-top h2 {
  margin: 0;
  color: #352f2b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.15rem, 3.8vw, 3.45rem);
  font-weight: 900;
  line-height: 1.04;
}

.testimonial-top h2 span {
  display: block;
  color: #14B8A6;
}

.testimonial-intro {
  display: grid;
  gap: 22px;
}

.testimonial-intro p {
  max-width: 560px;
  margin: 0;
  color: #373230;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

.testimonial-cta {
  --radius-sm: 999px;
  --cta-bg-start: #433a34;
  --cta-bg-end: #2e2722;
  width: fit-content;
  min-width: 260px;
  min-height: 48px;
  padding-inline: 26px 12px;
  border-radius: 999px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 34px rgba(46, 39, 34, 0.14);
}

.testimonial-cta svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: #2f2924;
  background: #ffffff;
  border-radius: 50%;
}

.testimonial-mosaic {
  display: grid;
  grid-template-columns: 330px 360px 330px 360px 330px 360px 330px 330px;
  grid-auto-rows: 268px;
  gap: 28px;
  width: max-content;
  margin: clamp(58px, 7vw, 82px) auto 0;
  transform: none;
}

.quote-tile,
.portrait-tile,
.video-tile {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.quote-tile {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 34px 36px;
  background: #f1f6eb;
  box-shadow: 0 18px 44px rgba(45, 52, 45, 0.06);
}

.quote-tile p {
  margin: 0;
  color: #3b3734;
  font-size: 1.08rem;
  line-height: 1.5;
}

.quote-head {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.quote-head strong {
  color: #3a352f;
  font-size: 1.02rem;
  font-weight: 900;
}

.avatar {
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: cover;
  object-position: center top;
  background:
    radial-gradient(circle at 50% 35%, #f2c3a6 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #b8cbbd 0 15px, transparent 16px),
    #d8e4dd;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(54, 57, 49, 0.08);
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 35%, #c98d76 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #a98bd4 0 15px, transparent 16px),
    #e6dff3;
}

.avatar-three {
  background:
    radial-gradient(circle at 50% 35%, #b9826c 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #21302d 0 15px, transparent 16px),
    #dbe8e2;
}

.avatar-four {
  background:
    radial-gradient(circle at 50% 35%, #d9a17f 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #5e7b6b 0 15px, transparent 16px),
    #f1e7db;
}

.avatar-five {
  background:
    radial-gradient(circle at 50% 35%, #e3af8d 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #2c7770 0 15px, transparent 16px),
    #e4f2ee;
}

.avatar-six {
  background:
    radial-gradient(circle at 50% 35%, #f0bea1 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #95a66c 0 15px, transparent 16px),
    #edf4e6;
}

.avatar-seven {
  background:
    radial-gradient(circle at 50% 35%, #e7b796 0 8px, transparent 9px),
    radial-gradient(circle at 50% 100%, #7faab3 0 15px, transparent 16px),
    #e4f3f5;
}

.star-row {
  display: inline-flex;
  gap: 3px;
  margin-left: auto;
  color: #a8bf67;
}

.star-row i {
  display: block;
  width: 13px;
  height: 13px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 80% 92%, 50% 70%, 20% 92%, 31% 56%, 2% 35%, 38% 34%);
}

.portrait-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 30px;
  color: #26352f;
  background:
    radial-gradient(circle at 50% 34%, rgba(132, 175, 156, 0.54) 0 66px, transparent 68px),
    radial-gradient(circle at 50% 104%, rgba(135, 105, 74, 0.16) 0 116px, transparent 118px),
    linear-gradient(145deg, #dcece1, #f5faf5);
  box-shadow: 0 18px 44px rgba(45, 52, 45, 0.08);
}

.portrait-tile::before {
  position: absolute;
  left: 50%;
  top: 54px;
  width: 134px;
  height: 134px;
  content: "";
  background:
    radial-gradient(circle at 50% 34%, #cca184 0 35px, transparent 36px),
    radial-gradient(ellipse at 50% 100%, #89aa94 0 70px, transparent 71px);
  border-radius: 50% 50% 44% 44%;
  filter: blur(0.2px);
  opacity: 0.34;
  transform: translateX(-50%);
}

.portrait-tile::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
}

.portrait-tile span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0.52rem 0.9rem;
  margin-bottom: 12px;
  color: #985b4d;
  background: #fae9df;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-tile strong {
  position: relative;
  z-index: 1;
  color: #20302d;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 950;
  line-height: 1.1;
}

.portrait-tile p {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 12px 0 0;
  color: #5d6b63;
  font-size: 1rem;
  line-height: 1.35;
}

.portrait-tile.has-testimonial-image {
  background: #dcece1;
}

.portrait-tile.has-testimonial-image::before {
  display: none;
  content: none;
}

.portrait-tile.has-testimonial-image img,
.video-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-tile.has-testimonial-image img {
  object-position: center top;
}

.portrait-tile.has-testimonial-image::after,
.video-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(25, 33, 29, 0.68));
  border: 0;
  border-radius: inherit;
}

.portrait-tile.has-testimonial-image span,
.portrait-tile.has-testimonial-image strong,
.video-tile span,
.video-sound-toggle {
  position: relative;
  z-index: 1;
}

.portrait-tile.has-testimonial-image strong {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.video-tile {
  display: flex;
  min-height: 100%;
  align-items: flex-end;
  padding: 30px;
  background: #dcece1;
  box-shadow: 0 18px 44px rgba(45, 52, 45, 0.08);
}

.video-tile span {
  width: fit-content;
  padding: 0.52rem 0.9rem;
  color: #ffffff;
  background: rgba(38, 53, 47, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-sound-toggle {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(38, 53, 47, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 14px 24px rgba(30, 36, 32, 0.18);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  color: #26352f;
  background: #ffffff;
  transform: scale(1.04);
}

.video-sound-toggle svg {
  width: 20px;
  height: 20px;
}

.video-sound-toggle .sound-on,
.video-tile.is-audible .video-sound-toggle .sound-off {
  display: none;
}

.video-tile.is-audible .video-sound-toggle {
  color: #26352f;
  background: #ffffff;
}

.video-tile.is-audible .video-sound-toggle .sound-on {
  display: block;
}

.portrait-large {
  grid-column: 4;
  grid-row: 1 / span 2;
  background:
    radial-gradient(circle at 50% 36%, rgba(139, 181, 166, 0.5) 0 74px, transparent 76px),
    radial-gradient(circle at 50% 105%, rgba(81, 67, 50, 0.14) 0 126px, transparent 128px),
    linear-gradient(145deg, #c9ded6, #edf7ee);
}

.portrait-wide {
  grid-column: 7;
  grid-row: 1;
  background:
    radial-gradient(circle at 54% 42%, rgba(201, 119, 101, 0.35) 0 78px, transparent 80px),
    linear-gradient(145deg, #edf7ef, #d3e6d9);
}

.portrait-support-two {
  grid-column: 3;
  grid-row: 2;
}

.portrait-support-three {
  grid-column: 8;
  grid-row: 2;
}

.portrait-support-three.has-testimonial-image img {
  object-position: center 18%;
}

.tile-alexandra {
  grid-column: 1;
  grid-row: 1;
}

.tile-jamie {
  grid-column: 1;
  grid-row: 2;
}

.tile-maya {
  grid-column: 3;
  grid-row: 1;
}

.tile-diana {
  grid-column: 5;
  grid-row: 2;
}

.tile-greg {
  grid-column: 5;
  grid-row: 1;
  background: #fbfbfa;
}

.tile-lou {
  grid-column: 7;
  grid-row: 2;
  background: #fbfbfa;
}

.tile-eliza {
  grid-column: 8;
  grid-row: 1;
}

.video-one {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.video-two {
  grid-column: 6;
  grid-row: 1 / span 2;
}

@media (max-width: 1120px) {
  .testimonial-shell {
    width: min(100% - 32px, 980px);
  }

  .testimonial-top {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 720px;
    margin-inline: 0;
  }

  .testimonial-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    width: 100%;
    gap: 20px;
    transform: none;
  }

  .tile-alexandra,
  .tile-jamie,
  .portrait-large,
  .tile-maya,
  .tile-diana,
  .tile-greg,
  .portrait-wide,
  .portrait-support-two,
  .portrait-support-three,
  .video-one,
  .video-two,
  .tile-lou,
  .tile-eliza {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
    transform: none;
  }

  .portrait-tile,
  .video-tile {
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .testimonial-showcase {
    padding-block: 62px 76px;
  }

  .testimonial-shell {
    width: min(100% - 28px, 560px);
  }

  .testimonial-top h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .testimonial-cta {
    width: 100%;
    min-width: 0;
  }

  .testimonial-mosaic {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .quote-tile,
  .portrait-tile,
  .video-tile {
    border-radius: 24px;
  }

  .quote-tile {
    gap: 22px;
    padding: 26px;
  }

  .quote-head {
    flex-wrap: wrap;
  }

  .star-row {
    width: 100%;
    margin-left: 46px;
  }

  .portrait-tile,
  .video-tile {
    min-height: 300px;
    padding: 26px;
  }
}

/* Scrolling testimonial marquee */
.testimonial-marquee {
  position: relative;
  width: 100vw;
  padding: 8px 0 14px;
  margin: clamp(58px, 7vw, 82px) calc(50% - 50vw) 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.testimonial-track {
  --testimonial-gap: 28px;
  display: flex;
  gap: 0;
  width: max-content;
  animation: testimonial-marquee-scroll 56s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-track.is-listening {
  animation-play-state: paused;
}

.testimonial-track .testimonial-mosaic {
  flex: 0 0 auto;
  padding-right: var(--testimonial-gap);
  margin: 0;
  transform: none;
}

@keyframes testimonial-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1120px) {
  .testimonial-marquee {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .testimonial-track .testimonial-mosaic {
    display: flex;
    gap: 20px;
    width: max-content;
  }

  .testimonial-track .quote-tile,
  .testimonial-track .portrait-tile,
  .testimonial-track .video-tile {
    flex: 0 0 280px;
    width: 280px;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .testimonial-marquee {
    margin-top: 42px;
    padding-block: 4px 10px;
  }

  .testimonial-track {
    --testimonial-gap: 18px;
    animation-duration: 42s;
  }

  .testimonial-track .testimonial-mosaic {
    display: flex;
    gap: 18px;
  }

  .testimonial-track .quote-tile,
  .testimonial-track .portrait-tile,
  .testimonial-track .video-tile {
    flex: 0 0 290px;
    width: 290px;
    min-height: 258px;
  }
}

/* Ongoing support replacement section */
.support-included {
  padding-block: clamp(72px, 8vw, 118px);
  background: #ffffff;
}

.support-included-panel {
  width: min(1240px, calc(100% - 40px));
  min-height: clamp(430px, 42vw, 548px);
  padding: clamp(42px, 6vw, 82px) clamp(34px, 7vw, 96px);
  border-radius: clamp(28px, 4vw, 54px);
  background: #f7f7f6;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.support-included-copy {
  max-width: 440px;
}

.support-included-copy h2 {
  margin: 0 0 22px;
  color: #352f2b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.12rem);
  font-weight: 950;
  line-height: 1.04;
}

.support-included-copy h2 span {
  display: block;
  color: #14B8A6;
}

.support-included-copy p {
  margin: 0;
  color: #403b37;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.62;
}

.support-included-visuals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
}

.support-photo {
  position: relative;
  overflow: hidden;
  width: min(100%, 270px);
  min-height: clamp(300px, 28vw, 360px);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #22322e;
  box-shadow: 0 24px 54px rgba(35, 47, 42, 0.12);
}

.support-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.88;
}

.support-photo::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
}

.support-clinician::before {
  background:
    radial-gradient(circle at 52% 28%, #e7c3a8 0 34px, transparent 35px),
    radial-gradient(ellipse at 52% 71%, #ffffff 0 82px, transparent 84px),
    radial-gradient(ellipse at 52% 88%, #8ca79d 0 116px, transparent 118px),
    linear-gradient(135deg, #dbe9e5, #f7faf8 56%, #d4e1da);
}

.support-patient {
  margin-top: clamp(-44px, -4vw, -22px);
}

.support-patient::before {
  background:
    radial-gradient(circle at 50% 28%, #efc5a9 0 34px, transparent 35px),
    radial-gradient(ellipse at 50% 68%, #d48e7f 0 92px, transparent 94px),
    linear-gradient(135deg, #e9f1ed, #f6e7de 58%, #d9ede6);
}

.support-photo.has-support-image {
  padding: 0;
  background: #dcece1;
}

.support-photo.has-support-image::before,
.support-photo.has-support-image::after {
  display: none;
  content: none;
}

.support-photo.has-support-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-clinician.has-support-image img {
  object-position: center top;
}

.support-patient.has-support-image img {
  object-position: center center;
}

.support-photo span,
.support-photo strong,
.support-photo p {
  position: relative;
  z-index: 1;
}

.support-photo span {
  width: fit-content;
  padding: 0.52rem 0.82rem;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #fae9df;
  color: #985b4d;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-photo strong {
  color: #1f2f2b;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.support-photo p {
  max-width: 230px;
  margin: 10px 0 0;
  color: #53645e;
  font-size: 0.96rem;
  line-height: 1.38;
}

@media (max-width: 980px) {
  .support-included-panel {
    grid-template-columns: 1fr;
  }

  .support-included-copy {
    max-width: 620px;
  }

  .support-included-visuals {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .support-included-panel {
    width: min(100% - 28px, 560px);
    padding: 30px 22px;
    border-radius: 28px;
  }

  .support-included-visuals {
    flex-direction: column;
    align-items: stretch;
  }

  .support-photo {
    width: 100%;
    min-height: 280px;
  }

  .support-patient {
    margin-top: 0;
  }
}

/* Compact global scale */
:root {
  --container: min(1100px, calc(100% - 40px));
  --max: 1100px;
}

body {
  font-size: 15px;
  line-height: 1.46;
}

.container,
.hero-redesign .container,
.support-included-panel {
  width: min(1100px, calc(100% - 40px));
  max-width: 1100px;
}

.section,
.section--tight,
.section-pad,
.hero-redesign,
.support-included,
.care-process,
.testimonial-showcase,
.safety-priority {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-redesign h1,
.hero-variation h1,
.container h1 {
  font-size: clamp(2.5rem, 4.2vw, 3rem);
  line-height: 1.06;
  margin-bottom: 16px;
}

.container h2,
.section-heading h2,
.metabolic-copy h2,
.care-process-heading h2,
.pricing-showcase-head h2,
.testimonial-top h2,
.faq-heading h2,
.support-included-copy h2,
.safety-title {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.container h3,
.metabolic-list h3,
.pricing-card h3,
.process-copy h3,
.safety-card h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.18;
  margin-bottom: 8px;
}

.container p,
.container li,
.container summary,
.container .hero-text,
.container .metabolic-lead,
.container .section-heading p,
.container .support-included-copy p {
  font-size: clamp(0.9rem, 0.7vw, 1rem);
  line-height: 1.48;
}

.hero-redesign .hero-layout {
  grid-template-columns: minmax(340px, 0.95fr) 200px minmax(420px, 1fr);
  gap: 14px;
}

.hero-redesign .hero-copy {
  padding-top: 22px;
}

.hero-redesign .hero-text,
.metabolic-lead,
.pricing-showcase-head p,
.care-process-heading p,
.testimonial-intro p,
.support-included-copy h2 {
  margin-bottom: 18px;
}

.hero-redesign .hero-actions,
.metabolic-list,
.pricing-showcase-head,
.testimonial-top,
.care-process-heading {
  margin-bottom: 24px;
}

.hero-redesign .hero-check-card {
  max-width: 208px;
  margin-top: 12px;
  padding: 14px 15px;
}

.hero-redesign .hero-check-card span {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 0.72rem;
  line-height: 1.3;
}

.hero-product-grid {
  grid-template-columns: minmax(230px, 1fr) minmax(110px, 0.5fr) minmax(110px, 0.5fr);
  grid-template-rows: 212px 208px;
  gap: 10px;
  min-height: 430px;
  margin-top: -36px;
}

.hero-product-card {
  margin-bottom: 14px;
}

.hero-visual,
.hero-image-plan {
  min-height: 500px;
}

.hero-visual img,
.hero-main-shot {
  height: 480px;
  min-height: 480px;
}

.hero-redesign .hero-product-grid .image-placeholder.has-image .hero-card-image {
  height: 100%;
  min-height: 0;
  border: 0;
  box-shadow: none;
}

.hero-support-shot {
  min-height: 230px;
}

.image-panel-placeholder,
.biology-image-plan {
  min-height: 420px;
}

.hero-life-card {
  transform: translateY(14px);
}

.pricing-showcase-head {
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  min-height: 400px;
}

.product-art {
  min-height: 190px;
  margin-bottom: 14px;
}

.vial-art span {
  width: 92px;
  height: 160px;
}

.bottle-art span,
.tablet-art span {
  width: 96px;
  height: 138px;
}

.pen-art span {
  height: 172px;
}

.pricing-trust-row {
  margin-top: 24px;
}

.pricing-card-grid,
.care-process-grid,
.safety-card-grid,
.benefit-grid,
.option-grid,
.trust-grid,
.frustration-grid,
.steps-grid,
.testimonial-mosaic,
.support-included-visuals {
  gap: 14px;
}

.pricing-card,
.safety-card,
.quote-tile,
.portrait-tile,
.support-photo,
.frustration-grid article,
.trust-grid article,
.story-card,
.start-steps article,
.option-card {
  padding: 20px;
}

.metabolic-section {
  min-height: clamp(560px, 48vw, 660px);
}

.metabolic-copy {
  width: min(450px, 40vw);
  padding-block: 58px;
}

.metabolic-pill {
  margin-bottom: 24px;
}

.metabolic-list article {
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 14px 0;
}

.metabolic-list article > span {
  width: 48px;
  height: 48px;
}

.metabolic-list svg {
  width: 23px;
  height: 23px;
}

.metabolic-visual {
  min-height: auto;
}

.metabolic-person {
  right: 6%;
  width: min(680px, 45vw);
}

.metabolic-person-photo {
  position: absolute;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.metabolic-person-photo::after {
  display: none;
  content: "";
}

.metabolic-person img {
  bottom: 0;
  height: 100%;
}

.metabolic-section .metabolic-person,
.metabolic-section .metabolic-person-photo {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.metabolic-section .metabolic-person::before,
.metabolic-section .metabolic-person::after,
.metabolic-section .metabolic-person-photo::before,
.metabolic-section .metabolic-person-photo::after {
  display: none;
  content: none;
}

.metabolic-float {
  padding: 12px 14px;
  border-radius: 12px;
}

.metabolic-chart,
.metabolic-blood,
.metabolic-progress {
  min-height: 126px;
}

.metabolic-product {
  min-height: 140px;
}

.metabolic-gauge {
  min-height: 145px;
}

.metabolic-float.has-metabolic-card-image {
  min-height: 0;
  padding: 0;
  border-radius: 0;
}

.metabolic-chart.has-metabolic-card-image,
.metabolic-blood.has-metabolic-card-image {
  overflow: hidden;
  border-radius: 18px;
}

.care-process-grid,
.safety-card-grid,
.pricing-card-grid {
  align-items: stretch;
}

.process-card,
.safety-card,
.pricing-card {
  min-height: auto;
}

.pricing-card {
  min-height: 440px;
}

.product-art.has-product-image {
  height: 292px;
  min-height: 0;
  place-items: center;
  margin-bottom: 22px;
  overflow: visible;
}

.product-art.has-product-image::before {
  inset: 10px 4% 4px;
  background:
    radial-gradient(circle at 50% 60%, rgba(111, 154, 125, 0.18) 0 34%, transparent 35%),
    repeating-radial-gradient(circle at 50% 62%, rgba(89, 134, 102, 0.1) 0 1px, transparent 1px 14px);
}

.product-art.has-product-image img {
  position: relative;
  z-index: 1;
  width: auto;
  height: var(--product-image-height, 100%);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 20px 24px rgba(47, 65, 57, 0.18));
}

.vial-art.has-product-image img,
.bottle-art.has-product-image img,
.tablet-art.has-product-image img,
.pen-art.has-product-image img {
  max-height: 100%;
}

.vial-art.has-product-image {
  --product-image-height: auto;
}

.bottle-art.has-product-image {
  --product-image-height: 88%;
}

.tablet-art.has-product-image {
  --product-image-height: 86%;
}

.pen-art.has-product-image {
  --product-image-height: 88%;
}

.vial-art.has-product-image img {
  width: min(196px, 72%);
  height: 269px;
  max-height: 269px;
}

.bottle-art.has-product-image img {
  max-height: 96%;
}

.tablet-art.has-product-image img {
  max-height: 98%;
}

.pen-art.has-product-image img {
  max-height: 92%;
}

.process-card {
  padding: 24px;
}

.process-visual {
  min-height: 220px;
}

.safety-title,
.faq-heading {
  margin-bottom: 24px;
}

.safety-card {
  grid-template-rows: 198px auto 1fr;
}

.faq-list {
  gap: 12px;
}

.faq-list details {
  border-radius: 16px;
}

.faq-list summary,
.faq-list details[open] summary {
  min-height: 64px;
  padding: 18px 58px 18px 22px;
  font-size: 1rem;
}

.faq-list summary::after {
  right: 20px;
  width: 26px;
  height: 26px;
  font-size: 1.3rem;
}

.faq-list details p {
  padding: 0 22px 22px;
  font-size: 0.94rem;
}

.testimonial-top,
.objection-layout,
.faq-layout,
.support-included-panel,
.final-panel {
  gap: 24px;
}

.support-included-panel {
  min-height: auto;
  padding: 34px;
  border-radius: 28px;
}

.support-photo {
  min-height: 260px;
}

.final-panel {
  padding: 30px;
}

.site-footer {
  padding-top: 30px;
  padding-bottom: 54px;
}

@media (max-width: 1240px) {
  .hero-redesign .hero-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .hero-product-grid {
    grid-template-rows: 210px 200px;
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .hero-redesign .hero-layout,
  .hero-redesign .hero-check-card,
  .metabolic-copy {
    width: 100%;
  }

  .hero-product-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .metabolic-section {
    min-height: auto;
  }

  .metabolic-person {
    right: auto;
    width: 100%;
  }

  .metabolic-person img {
    bottom: 0;
    height: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-redesign .container,
  .support-included-panel {
    width: min(100% - 28px, 1100px);
  }

  .section,
  .section--tight,
  .section-pad,
  .hero-redesign,
  .support-included,
  .care-process,
  .testimonial-showcase,
  .safety-priority {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container h1,
  .hero-redesign h1,
  .hero-variation h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
  }

  .container h2,
  .section-heading h2,
  .metabolic-copy h2,
  .care-process-heading h2,
  .pricing-showcase-head h2,
  .testimonial-top h2,
  .faq-heading h2,
  .support-included-copy h2,
  .safety-title {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .process-card,
  .support-included-panel,
  .final-panel {
    padding: 22px;
  }
}

/* Reference-sized care process */
.care-process {
  padding-top: clamp(72px, 6vw, 96px);
  padding-bottom: clamp(72px, 6vw, 96px);
}

.care-process > .container {
  width: min(1760px, calc(100% - 128px));
  max-width: 1760px;
}

.care-process-heading {
  max-width: 680px;
  margin: 0 auto clamp(44px, 5vw, 64px);
}

.care-process-heading h2 {
  max-width: 620px;
  font-size: clamp(2.75rem, 3vw, 3.55rem);
  line-height: 1.08;
}

.care-process-heading p {
  font-size: clamp(1.15rem, 1.4vw, 1.42rem);
}

.care-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 28px);
}

.process-card {
  min-height: clamp(560px, 34vw, 670px);
  padding: clamp(34px, 3vw, 52px) clamp(28px, 3vw, 52px) 0;
  border-radius: 22px;
}

.process-copy {
  max-width: 520px;
}

.process-card h3 {
  gap: 10px;
  margin-bottom: clamp(30px, 3vw, 54px);
  font-size: clamp(1.72rem, 2vw, 2.5rem);
}

.process-card p {
  max-width: 520px;
  font-size: clamp(1.08rem, 1.35vw, 1.65rem);
  line-height: 1.45;
}

.process-visual {
  height: 47%;
  min-height: 0;
}

.phone-frame,
.dashboard-frame {
  left: 7%;
  bottom: -58px;
  width: 62%;
  min-height: clamp(280px, 17vw, 330px);
  padding: clamp(38px, 3vw, 52px) 24px 28px;
  border-width: clamp(16px, 1.2vw, 22px);
  border-bottom-width: 0;
  border-radius: 44px 44px 0 0;
}

.phone-frame::before,
.dashboard-frame::before {
  top: 13px;
  width: 92px;
  height: 24px;
}

.phone-frame span,
.dashboard-frame span,
.provider-photo span,
.provider-note span {
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.phone-frame strong,
.dashboard-frame strong,
.provider-photo strong {
  font-size: 1.08rem;
}

.phone-frame small,
.dashboard-frame small,
.provider-photo small {
  margin-top: 11px;
  font-size: 0.92rem;
}

.process-bubble,
.labs-card,
.provider-note {
  padding: clamp(16px, 1.2vw, 22px) clamp(18px, 1.4vw, 24px);
  border-radius: 14px;
  font-size: clamp(1rem, 1.2vw, 1.32rem);
  line-height: 1.2;
}

.process-bubble {
  right: 7%;
  bottom: clamp(82px, 6vw, 112px);
  width: clamp(190px, 13vw, 240px);
}

.provider-photo {
  left: 17%;
  right: 7%;
  min-height: clamp(260px, 16vw, 315px);
  padding: clamp(24px, 2vw, 32px);
}

.provider-note {
  left: 7%;
  bottom: clamp(104px, 7vw, 134px);
  width: clamp(190px, 12vw, 230px);
}

.dashboard-frame {
  width: 66%;
  min-height: clamp(295px, 18vw, 350px);
}

.labs-card {
  right: 7%;
  bottom: clamp(120px, 8vw, 156px);
  width: clamp(210px, 13vw, 250px);
}

.process-visual.has-process-image {
  overflow: visible;
}

.process-visual.has-process-image img {
  position: relative;
  z-index: 1;
}

.process-quiz .process-bubble {
  right: 7%;
  bottom: clamp(82px, 6vw, 110px);
}

.process-provider .provider-note {
  left: 7%;
  bottom: clamp(104px, 7vw, 132px);
}

.process-journey .labs-card {
  right: 7%;
  bottom: clamp(118px, 7vw, 150px);
}

@media (max-width: 1200px) {
  .care-process > .container {
    width: min(100% - 48px, 1760px);
  }

  .process-card {
    min-height: 520px;
    padding: 34px 26px 0;
  }

  .process-card h3 {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
  }

  .process-card p {
    font-size: clamp(1rem, 1.5vw, 1.18rem);
  }
}

@media (max-width: 900px) {
  .care-process > .container {
    width: min(100% - 32px, 760px);
  }

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

  .process-card {
    min-height: 500px;
  }

  .process-visual {
    height: 50%;
  }
}

@media (max-width: 640px) {
  .care-process {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .care-process-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .process-card {
    min-height: 470px;
    padding: 28px 22px 0;
  }

  .phone-frame,
  .dashboard-frame {
    min-height: 240px;
    border-width: 14px;
    border-bottom-width: 0;
  }

  .provider-photo {
    min-height: 230px;
  }
}

/* Hero iPhone lock screen */
.hero-redesign .hero-layout {
  grid-template-columns: minmax(340px, 0.95fr) minmax(520px, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

.hero-redesign .has-lockscreen-phone {
  position: relative;
  grid-column: auto;
  min-height: 606px;
  overflow: visible;
  isolation: isolate;
}

.hero-redesign .has-lockscreen-phone .hero-life-card {
  grid-column: 2 / 4;
}

.hero-lockscreen-phone {
  --phone-scale: 1;
  position: absolute;
  top: -64px;
  right: -4px;
  z-index: 10;
  width: 280px;
  height: 606px;
  transform-origin: top right;
  animation: iphoneLockFloat 4s ease-in-out infinite;
}

.iphone-lockscreen,
.iphone-lockscreen * {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
}

.iphone-frame {
  position: relative;
  width: 280px;
  height: 606px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #172235, #03060b 42%, #101722);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 55px;
  box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, 0.6);
}

.iphone-frame::before {
  position: absolute;
  inset: 5px;
  z-index: 20;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  pointer-events: none;
}

.iphone-side-button {
  position: absolute;
  z-index: 1;
  width: 4px;
  background: linear-gradient(180deg, #202a3a, #05070d);
  border-radius: 999px;
}

.iphone-volume-up {
  top: 132px;
  left: -3px;
  height: 58px;
}

.iphone-volume-down {
  top: 206px;
  left: -3px;
  height: 58px;
}

.iphone-power-button {
  top: 170px;
  right: -3px;
  height: 86px;
}

.iphone-screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 606px;
  overflow: hidden;
  background: #07090f;
  border-radius: 54px;
}

.iphone-wallpaper,
.iphone-wallpaper-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iphone-screen .iphone-wallpaper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center center;
}

.iphone-wallpaper-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 7;
  width: 88px;
  height: 27px;
  background: #020307;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.iphone-status-bar {
  position: absolute;
  top: 12px;
  left: 18px;
  right: 18px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

.iphone-status-time {
  display: block;
  width: 32px;
  height: 17px;
}

.iphone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
}

.iphone-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 1px;
  height: 11px;
}

.iphone-signal span {
  display: block;
  width: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.iphone-signal span:nth-child(1) { height: 4px; }
.iphone-signal span:nth-child(2) { height: 6px; }
.iphone-signal span:nth-child(3) { height: 8px; }
.iphone-signal span:nth-child(4) { height: 10px; }

.iphone-wifi {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 10px;
  overflow: hidden;
}

.iphone-wifi::before,
.iphone-wifi::after {
  position: absolute;
  left: 50%;
  content: "";
  border: 2px solid #ffffff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%);
}

.iphone-wifi::before {
  top: 0;
  width: 15px;
  height: 15px;
}

.iphone-wifi::after {
  top: 4px;
  width: 9px;
  height: 9px;
}

.iphone-battery {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 9px;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 2px;
}

.iphone-battery::after {
  position: absolute;
  top: 2px;
  right: -3px;
  width: 2px;
  height: 5px;
  content: "";
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0 2px 2px 0;
}

.iphone-battery span {
  display: block;
  width: 12px;
  height: 5px;
  background: #ffffff;
  border-radius: 1px;
}

.iphone-lock-clock {
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

.iphone-lock-clock span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}

.iphone-lock-clock strong {
  margin-top: 2px;
  font-size: 64px;
  font-weight: 200;
  line-height: 0.94;
  letter-spacing: 0;
}

.iphone-notification-stack {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.iphone-notification {
  position: absolute;
  left: 50%;
  width: 92%;
  background: rgba(255, 255, 255, 0.22);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #ffffff;
  transform: translate3d(-50%, var(--card-y, 460px), 0) scale(0.98);
  opacity: 0;
  transition:
    transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 360ms ease;
}

.iphone-notification {
  top: 0;
  height: 72px;
  padding: 9px 12px;
  border-radius: 16px;
}

.iphone-notification.is-visible {
  transform: translate3d(-50%, var(--card-y, 460px), 0) scale(1);
  opacity: 1;
}

.iphone-notification.is-depth {
  opacity: 0.7;
}

.iphone-lockscreen.is-clearing .iphone-notification.is-visible {
  transform: translate3d(-50%, calc(var(--card-y, 460px) + 22px), 0) scale(0.98);
  opacity: 0;
  transition:
    transform 1000ms ease,
    opacity 700ms ease;
}

.iphone-notification-header {
  position: absolute;
  left: 50%;
  z-index: 60;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  margin: 0 auto 6px;
  color: #ffffff;
  opacity: 0;
  transform: translate3d(-50%, var(--header-y, 275px), 0);
  transition:
    transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 360ms ease;
}

.iphone-notification-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.iphone-notification-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.iphone-notification-controls span {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

.iphone-notification-controls span:first-child {
  padding: 5px 10px;
  font-weight: 500;
}

.iphone-notification-controls span:last-child {
  padding: 5px 9px;
  border-left: 0.5px solid rgba(255, 255, 255, 0.3);
}

.iphone-notification-header.is-visible {
  transform: translate3d(-50%, var(--header-y, 275px), 0);
  opacity: 1;
}

.iphone-lockscreen.is-clearing .iphone-notification-header.is-visible {
  transform: translate3d(-50%, calc(var(--header-y, 275px) + 18px), 0);
  opacity: 0;
  transition:
    transform 1000ms ease,
    opacity 700ms ease;
}

.iphone-notification-meta {
  display: grid;
  grid-template-columns: 18px auto auto 1fr;
  gap: 5px;
  align-items: center;
  min-width: 0;
}

.reminders-app-icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  width: 18px;
  height: 18px;
  padding: 3px 3px 3px 7px;
  background: #ffffff;
  border-radius: 5px;
}

.reminders-app-icon::before,
.reminders-app-icon::after {
  position: absolute;
  left: 3px;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 50%;
}

.reminders-app-icon::before {
  top: 4px;
  background: #ff3b30;
  box-shadow: 0 5px 0 #ffcc00;
}

.reminders-app-icon::after {
  bottom: 4px;
  background: #34c759;
}

.reminders-app-icon i {
  display: block;
  width: 7px;
  height: 1px;
  background: #8e8e93;
  border-radius: 1px;
}

.iphone-app-name {
  color: rgba(235, 235, 245, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.iphone-time-sensitive {
  color: #f5a623;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.iphone-now {
  justify-self: end;
  color: rgba(235, 235, 245, 0.72);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.iphone-notification p {
  display: -webkit-box;
  margin: 3px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: left;
}

.iphone-bottom-dock {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 5;
  display: flex;
  gap: 94px;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.iphone-dock-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.iphone-dock-button svg {
  display: block;
  flex: 0 0 auto;
}

.iphone-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 6;
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transform: translateX(-50%);
}

@keyframes iphoneLockFloat {
  0%,
  100% {
    transform: translateY(0) scale(var(--phone-scale));
  }

  50% {
    transform: translateY(-8px) scale(var(--phone-scale));
  }
}

@media (max-width: 1240px) {
  .hero-redesign .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  }

  .hero-redesign .has-lockscreen-phone {
    min-height: 530px;
  }

  .hero-lockscreen-phone {
    top: -24px;
    right: -8px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-lockscreen-phone {
    --phone-scale: 0.85;
    transform-origin: top right;
  }
}

@media (max-width: 767px) {
  .hero-redesign .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-redesign .has-lockscreen-phone {
    min-height: 390px;
    margin-top: 8px;
  }

  .hero-redesign .has-lockscreen-phone .image-placeholder {
    min-height: 220px;
  }

  .hero-redesign .has-lockscreen-phone .hero-person-card,
  .hero-redesign .has-lockscreen-phone .hero-product-card,
  .hero-redesign .has-lockscreen-phone .hero-life-card {
    grid-column: 1 / -1;
  }

  .hero-lockscreen-phone {
    --phone-scale: 0.65;
    top: 0;
    right: auto;
    left: 50%;
    margin-left: -140px;
    transform-origin: top center;
  }
}

@media (max-width: 560px) {
  .hero-redesign .has-lockscreen-phone {
    grid-template-columns: 1fr;
    min-height: 382px;
  }

  .hero-redesign .has-lockscreen-phone .hero-person-card,
  .hero-redesign .has-lockscreen-phone .hero-product-card,
  .hero-redesign .has-lockscreen-phone .hero-life-card {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lockscreen-phone {
    animation: none;
    transform: scale(var(--phone-scale));
  }

  .iphone-notification,
  .iphone-notification-header {
    transition: none;
  }
}

/* Real-life hero mock-up swap */
.site-header--hero {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header--hero .container {
  width: min(1480px, calc(100% - 56px));
  max-width: 1480px;
}

.site-header--hero .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 92px;
}

.hero-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
  color: #161d1d;
  text-decoration: none;
}

.hero-brand-mark {
  width: 31px;
  height: 31px;
  color: #078b8a;
  flex: 0 0 auto;
}

.hero-brand-type {
  display: inline-flex;
  align-items: baseline;
  color: #171b1c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 2.15vw, 2.18rem);
  line-height: 1;
}

.hero-brand-type strong {
  color: #078b8a;
  font-weight: 400;
}

.site-header--hero .header-nav {
  justify-content: center;
  gap: clamp(26px, 3.5vw, 58px);
  color: #111516;
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  font-weight: 650;
}

.site-header--hero .header-nav a {
  text-decoration: none;
}

.site-header--hero .header-cta {
  min-width: 206px;
  min-height: 50px;
  padding: 0 1.35rem;
  color: #ffffff;
  background: #069995;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(0, 128, 126, 0.22);
  font-size: 1rem;
}

.hero-real-life {
  position: relative;
  min-height: clamp(790px, 66.7vw, 960px);
  padding: 0;
  overflow: hidden;
  background: #f7f2ea;
  color: #1d2225;
}

.hero-real-life::before {
  display: none;
}

.hero-real-life__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f7f2ea;
}

.hero-real-life__scene img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(74vw, 1120px);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-real-life__scene::before,
.hero-real-life__scene::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-real-life__scene::before {
  background:
    linear-gradient(180deg, #f7f2ea 0%, #f7f2ea 8%, rgba(247, 242, 234, 0.88) 10.5%, rgba(247, 242, 234, 0) 17%, rgba(247, 242, 234, 0.16) 100%),
    linear-gradient(90deg, #f7f2ea 0%, rgba(247, 242, 234, 0.99) 28%, rgba(247, 242, 234, 0.94) 43%, rgba(247, 242, 234, 0.46) 58%, rgba(247, 242, 234, 0) 73%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.2) 0%, rgba(247, 242, 234, 0) 32%, rgba(247, 242, 234, 0.18) 100%);
}

.hero-real-life__scene::after {
  background: radial-gradient(circle at 4% 38%, rgba(255, 255, 255, 0.82) 0 12%, rgba(255, 255, 255, 0) 30%);
}

.hero-real-life__inner {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 56px));
  max-width: 1480px;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-real-life__copy {
  width: min(535px, 42vw);
  padding-top: 62px;
}

.hero-proof-kicker,
.hero-no-fees {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #007f82;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.hero-proof-kicker svg,
.hero-no-fees svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  stroke-width: 2.1;
}

.hero-real-life h1 {
  max-width: 560px;
  margin: 40px 0 24px;
  color: #1d2225;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-real-life h1 span {
  display: block;
  color: #0b918c;
}

.hero-real-life__text {
  max-width: 510px;
  margin: 0 0 38px;
  color: #181f22;
  font-size: clamp(1.2rem, 1.55vw, 1.48rem);
  line-height: 1.55;
}

.hero-real-life__cta {
  min-width: min(356px, 100%);
  min-height: 76px;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 34px 0 42px;
  background: #079792;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(0, 133, 128, 0.22);
  color: #ffffff;
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  font-weight: 500;
}

.hero-real-life__cta svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.7;
}

.hero-real-life__cta:hover,
.hero-real-life__cta:focus-visible,
.site-header--hero .header-cta:hover,
.site-header--hero .header-cta:focus-visible {
  background: #07837f;
}

.hero-no-fees {
  color: #171f21;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hero-no-fees svg {
  color: #079792;
}

.hero-real-life .hero-lockscreen-phone {
  --phone-scale: 0.82;
  top: clamp(58px, 5.6vw, 82px);
  right: clamp(280px, 22vw, 360px);
  z-index: 5;
  isolation: isolate;
  transform-origin: top right;
  filter: drop-shadow(0 28px 46px rgba(27, 24, 18, 0.22));
}

.hero-real-life .hero-lockscreen-phone::before {
  position: absolute;
  top: 30px;
  right: -48px;
  z-index: -1;
  width: 54px;
  height: 370px;
  content: "";
  background: linear-gradient(90deg, rgba(247, 242, 234, 0.12), rgba(247, 242, 234, 0.78) 58%, rgba(247, 242, 234, 0.9));
  border-radius: 0 28px 28px 0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-real-life + .press-marquee {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .site-header--hero .header-nav {
    gap: 24px;
  }

  .site-header--hero .header-cta {
    min-width: 176px;
  }

  .hero-real-life__scene img {
    width: 78vw;
    object-position: 43% center;
  }

  .hero-real-life__copy {
    width: min(500px, 48vw);
  }

  .hero-real-life h1 {
    font-size: clamp(3.55rem, 6.2vw, 4.7rem);
  }

  .hero-real-life .hero-lockscreen-phone {
    --phone-scale: 0.68;
    right: clamp(260px, 25vw, 320px);
  }
}

@media (max-width: 860px) {
  .site-header--hero .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .site-header--hero .header-nav {
    display: none;
  }

  .site-header--hero .header-cta {
    min-width: 0;
    min-height: 42px;
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .hero-brand-type {
    font-size: 1.65rem;
  }

  .hero-real-life {
    min-height: 850px;
  }

  .hero-real-life__scene img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 48%;
    object-position: center top;
  }

  .hero-real-life__scene::before {
    background:
      linear-gradient(180deg, #f7f2ea 0%, #f7f2ea 47%, rgba(247, 242, 234, 0.68) 61%, rgba(247, 242, 234, 0.08) 78%, rgba(247, 242, 234, 0) 100%),
      linear-gradient(90deg, rgba(247, 242, 234, 0.55), rgba(247, 242, 234, 0));
  }

  .hero-real-life__inner {
    width: min(100% - 32px, 640px);
    min-height: inherit;
    align-items: flex-start;
    padding-top: 112px;
  }

  .hero-real-life__copy {
    width: 100%;
    padding-top: 0;
  }

  .hero-proof-kicker {
    flex-wrap: wrap;
    row-gap: 6px;
    max-width: 100%;
  }

  .hero-real-life h1 {
    max-width: 540px;
    margin-top: 28px;
    font-size: clamp(3.25rem, 12vw, 4.55rem);
  }

  .hero-real-life__text {
    max-width: 500px;
    font-size: 1.08rem;
  }

  .hero-real-life .hero-lockscreen-phone {
    --phone-scale: 0.48;
    top: auto;
    right: 28px;
    bottom: 120px;
    left: auto;
    margin-left: 0;
    transform-origin: bottom right;
  }
}

@media (max-width: 560px) {
  .site-header--hero .container,
  .hero-real-life__inner {
    width: min(100% - 28px, 640px);
  }

  .site-header--hero .header-cta {
    display: none;
  }

  .site-header--hero .header-inner {
    grid-template-columns: 1fr;
  }

  .hero-real-life {
    min-height: 860px;
  }

  .hero-proof-kicker {
    font-size: 0.78rem;
  }

  .hero-real-life h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-real-life__cta {
    min-height: 64px;
    padding: 0 22px 0 26px;
    font-size: 1.08rem;
  }

  .hero-real-life__scene img {
    height: 45%;
    object-position: 38% top;
  }

  .hero-real-life .hero-lockscreen-phone {
    --phone-scale: 0.42;
    right: 8px;
    bottom: 118px;
  }
}

/* Hero refinement: restore original scale and separate the floating UI cards */
.site-header--hero .brand.wordmark {
  color: #303837;
}

.site-header--hero .brand.wordmark strong {
  color: inherit;
}

.hero-real-life {
  min-height: clamp(640px, 58vw, 740px);
}

.hero-real-life__scene img {
  top: 0;
  right: 0;
  width: min(86vw, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-real-life__scene::before {
  background:
    linear-gradient(180deg, #f7f2ea 0%, #f7f2ea 12%, rgba(247, 242, 234, 0.62) 20%, rgba(247, 242, 234, 0.08) 42%, rgba(247, 242, 234, 0.15) 100%),
    linear-gradient(90deg, #f7f2ea 0%, rgba(247, 242, 234, 0.99) 28%, rgba(247, 242, 234, 0.68) 39%, rgba(247, 242, 234, 0.12) 50%, rgba(247, 242, 234, 0) 59%);
}

.hero-real-life__scene::after {
  background:
    radial-gradient(circle at 2% 38%, rgba(255, 255, 255, 0.58) 0 12%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(0deg, rgba(247, 242, 234, 0.2), rgba(247, 242, 234, 0));
}

.hero-real-life__inner {
  align-items: center;
}

.hero-real-life__copy {
  width: min(500px, 43vw);
  padding-top: 44px;
}

.hero-real-life h1 {
  max-width: 500px;
  margin: 28px 0 20px;
  font-size: clamp(3.55rem, 5vw, 5.2rem);
}

.hero-real-life__text {
  max-width: 480px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.24vw, 1.28rem);
}

.hero-real-life__cta {
  min-width: min(356px, 100%);
  min-height: 64px;
  margin-bottom: 24px;
  padding: 0 28px 0 34px;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
}

.hero-real-life__art {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-real-life .hero-lockscreen-phone {
  --phone-scale: 0.65;
  top: 90px;
  right: clamp(220px, 18vw, 290px);
  z-index: 3;
  isolation: auto;
}

.hero-real-life .hero-lockscreen-phone::before {
  display: none;
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  display: block;
  max-width: none;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(2.3deg);
}

.hero-floating-card h2 {
  margin: 0;
  color: #171b1c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-card-divider {
  height: 1px;
  margin: 14px -18px 16px;
  background: rgba(28, 28, 28, 0.08);
}

.hero-budget-card {
  top: 116px;
  right: -10px;
  width: 252px;
}

.hero-budget-card p {
  margin: 0 0 4px;
  color: #20272a;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-budget-card strong {
  display: block;
  margin-bottom: 12px;
  color: #079792;
  font-size: 2rem;
  line-height: 1;
}

.budget-meter {
  display: block;
  height: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #e4e4e2;
  border-radius: 999px;
}

.budget-meter i {
  display: block;
  width: 78%;
  height: 100%;
  background: #079792;
  border-radius: inherit;
}

.hero-budget-card ul,
.hero-goals-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-budget-card li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.76rem;
}

.hero-budget-card li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #087f80;
}

.hero-budget-card li:nth-child(2) span { background: #de8400; }
.hero-budget-card li:nth-child(3) span { background: #1b95d2; }
.hero-budget-card li:nth-child(4) span { background: #8f6427; }

.hero-budget-card li b,
.hero-budget-card li em {
  font: inherit;
}

.hero-budget-card li em {
  color: #121616;
  font-style: normal;
}

.hero-goals-card {
  top: 420px;
  right: 6px;
  width: 244px;
  transform: rotate(2.2deg);
}

.hero-goals-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: #1d2324;
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-goals-card li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid #c9cdd0;
  border-radius: 5px;
  background: #f7f8f7;
}

.hero-goals-card li.is-done span {
  border-color: #079792;
  background: #079792;
}

.hero-goals-card li.is-done span::before {
  width: 8px;
  height: 5px;
  content: "";
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: translateY(-1px) rotate(-45deg);
}

.hero-goals-card li i {
  width: 16px;
  height: 14px;
  margin-top: 3px;
  background: #c72416;
  clip-path: path("M8 13.5C3.2 9.2 1 7.2 1 4.2 1 2.1 2.6.7 4.5.7c1.1 0 2.3.6 3 1.7C8.2 1.3 9.4.7 10.5.7 12.4.7 14 2.1 14 4.2c0 3-2.2 5-7 9.3Z");
}

@media (max-width: 1120px) {
  .hero-real-life {
    min-height: 680px;
  }

  .hero-real-life__scene img {
    right: 0;
    width: 86vw;
    height: 100%;
  }

  .hero-real-life__copy {
    width: min(470px, 43vw);
  }

  .hero-real-life h1 {
    font-size: clamp(3.3rem, 5vw, 3.95rem);
  }

  .hero-real-life .hero-lockscreen-phone {
    --phone-scale: 0.6;
    top: 92px;
    right: 220px;
  }

  .hero-budget-card {
    top: 110px;
    right: -20px;
    width: 250px;
  }

  .hero-goals-card {
    top: 368px;
    right: -34px;
    width: 270px;
  }
}

@media (max-width: 1120px) {
  .hero-goals-card {
    padding: 14px 18px;
  }

  .hero-goals-card h2 {
    font-size: 0.98rem;
  }

  .hero-goals-card ul {
    gap: 8px;
  }

  .hero-goals-card li {
    gap: 10px;
    font-size: 0.76rem;
    line-height: 1.28;
  }
}

@media (max-width: 860px) {
  .hero-real-life {
    min-height: 820px;
  }

  .hero-real-life__scene img {
    width: 100%;
    height: 46%;
    object-position: center top;
  }

  .hero-real-life__copy {
    width: 100%;
  }

  .hero-real-life__art {
    top: auto;
    bottom: 0;
    height: 390px;
  }

  .hero-real-life .hero-lockscreen-phone {
    --phone-scale: 0.43;
    top: 18px;
    right: auto;
    left: 48%;
    transform-origin: top center;
  }

  .hero-budget-card {
    top: 38px;
    right: 10px;
    width: 190px;
    padding: 16px 14px;
  }

  .hero-goals-card {
    top: 230px;
    right: 34px;
    width: min(270px, calc(100% - 60px));
  }
}

@media (max-width: 560px) {
  .hero-real-life h1 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
  }

  .hero-budget-card {
    display: none;
  }

  .hero-goals-card {
    right: 14px;
    width: min(260px, calc(100% - 28px));
  }
}
