:root {
  --color-bg: #fffaf5;
  --color-bg-soft: #efe7dc;
  --color-bg-coral: #fff0ea;
  --color-bg-deep: #1f1b18;
  --color-text: #1f1b18;
  --color-muted: #6f6259;
  --color-accent: #ff7456;
  --color-accent-dark: #d95c42;
  --color-highlight: #dddd6b;
  --color-border: #e4d8cb;
  --color-white: #ffffff;
  --shadow: 0 24px 80px rgba(31, 27, 24, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, blockquote { margin-top: 0; }
.container { width: min(1380px, 100%); margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, .9);
  border-bottom: 1px solid rgba(228, 216, 203, .7);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-inner > *, .hero > *, .intro-flow > *, .tools-layout > *, .value-section > *, .program-layout > *, .fit-layout > *, .decision > *, .lead-magnet-box > *, .cta-box > * { min-width: 0; }
.brand { display: inline-flex; flex-direction: column; gap: 1px; width: fit-content; letter-spacing: .08em; text-transform: uppercase; }
.brand strong { font-size: .92rem; font-weight: 700; }
.brand span { color: var(--color-muted); font-size: .68rem; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 26px; color: var(--color-muted); font-size: .88rem; font-weight: 600; }
.nav a { transition: color .25s ease; }
.nav a:hover { color: var(--color-text); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .06em;
}
.btn-primary {
  padding: 16px 28px;
  color: var(--color-text);
  background: var(--color-highlight);
  border: 1px solid rgba(31, 27, 24, .08);
  box-shadow: 0 14px 30px rgba(31, 27, 24, .08);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--color-accent); color: var(--color-white); }
.btn-secondary { color: var(--color-text); background: transparent; }
.header-cta { display: none; }
.btn-area {
  min-height: 44px;
  padding: 12px 18px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: 0 12px 24px rgba(224, 111, 88, .22);
}
.btn-area:hover {
  color: var(--color-white);
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  grid-template-areas: "copy image";
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: 54px;
}
.hero-copy { grid-area: copy; align-self: center; }
.hero-image { grid-area: image; }
.eyebrow { margin-bottom: 16px; color: var(--color-accent-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-title, .section-title, .quote, .route-card h3, .value-grid h3, .priority-grid h3, .program-cards h3, .program-includes h3, .fit-grid h3, .decision h3, .video-placeholder strong {
  font-family: "Playfair Display", Georgia, serif;
}
.hero-title { max-width: 900px; margin-bottom: 22px; font-size: clamp(3.2rem, 6.1vw, 6rem); font-weight: 500; line-height: .96; letter-spacing: -.04em; }
.italic-accent { color: var(--color-accent); font-style: italic; font-weight: 500; }
.hero-lead, .body-text { color: var(--color-muted); font-size: 1.02rem; line-height: 1.72; overflow-wrap: break-word; }
.hero-lead { max-width: 600px; margin-bottom: 0; font-weight: 500; }
.body-text { max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.hero-link { min-height: 52px; padding: 0 4px; color: var(--color-accent-dark); }
.hero-image, .about-image, .approach-image, .program-visual, .cta-image { overflow: hidden; border-radius: 30px; background: var(--color-bg-soft); box-shadow: var(--shadow); }
.hero-image { min-height: min(660px, calc(100vh - 156px)); }
.service-band {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  grid-template-areas:
    "copy image"
    "steps image";
  gap: 34px clamp(34px, 5vw, 72px);
  align-items: stretch;
  padding-top: 78px;
  padding-bottom: 78px;
}
.approach-copy {
  display: contents;
}
.approach-intro {
  grid-area: copy;
}
.approach-copy .section-title { max-width: 720px; }
.approach-image {
  grid-area: image;
  min-height: 520px;
}
.approach-image img {
  object-position: center;
}
.features-grid {
  display: grid;
  grid-template-columns: .75fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding-top: 52px;
  padding-bottom: 52px;
}
.features-grid.compact {
  grid-area: steps;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0;
}
.features-grid.compact .feature {
  min-height: 0;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 26px 28px;
  background: rgba(255, 250, 245, .62);
  border: 1px solid rgba(228, 216, 203, .9);
  border-radius: 22px;
}
.feature-kicker {
  max-width: 210px;
  color: var(--color-accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feature {
  display: grid;
  gap: 12px;
}
.feature-icon {
  width: 42px;
  height: 42px;
  color: var(--color-accent-dark);
}
.feature:nth-of-type(2) .feature-icon { color: var(--color-highlight); }
.feature h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}
.feature p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.symptoms-band {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.symptoms-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1fr);
  column-gap: clamp(48px, 6vw, 92px);
  row-gap: 20px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-title { max-width: 780px; margin-bottom: 24px; font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -.03em; }
.symptoms-heading {
  grid-row: 1 / span 2;
  align-self: center;
}
.symptoms-layout .section-title { margin-bottom: 0; }
.symptoms-context {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
}
.symptom-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(146px, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 720px;
}
.symptom-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 92, 66, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  color: var(--color-text);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.symptom-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-accent-dark);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority-section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.reto-promo {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: 78px;
  padding-bottom: 78px;
}
.reto-promo .section-title {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
}
.reto-promo-panel {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(228, 216, 203, .92);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 240, 234, .86), rgba(255, 255, 255, .64));
  box-shadow: 0 18px 54px rgba(31, 27, 24, .07);
}
.reto-promo-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.reto-promo-panel p {
  margin-bottom: 22px;
  color: var(--color-text);
  font-weight: 650;
}
.priority-head {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(320px, .82fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 32px;
}
.priority-copy {
  display: grid;
  gap: 18px;
}
.priority-copy .eyebrow,
.priority-copy .body-text {
  margin: 0;
}
.priority-head .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}
.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.priority-grid article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 250, 245, .74);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.priority-grid article:nth-child(2),
.priority-grid article:nth-child(4) {
  background: rgba(255, 240, 234, .72);
  border-color: rgba(217, 92, 66, .26);
}
.priority-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 116, 86, .42);
}
.priority-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.priority-grid svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-accent-dark);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  letter-spacing: 0;
}
.priority-grid h3 {
  margin-bottom: 8px;
  font-size: 1.42rem;
  line-height: 1.14;
}
.priority-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.5;
}

.value-section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.value-head {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(320px, .82fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}
.value-copy {
  display: grid;
  gap: 18px;
}
.value-copy .eyebrow,
.value-copy .body-text {
  margin: 0;
}
.value-head .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.value-grid article {
  min-height: 244px;
  padding: 26px;
  background: rgba(255, 250, 245, .74);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.value-grid article:nth-child(2),
.value-grid article:nth-child(5) {
  background: rgba(255, 240, 234, .72);
  border-color: rgba(217, 92, 66, .28);
}
.value-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 116, 86, .42);
}
.value-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.value-grid h3 {
  margin-bottom: 8px;
  font-size: 1.46rem;
  line-height: 1.14;
}
.value-grid p {
  margin: 0;
  color: var(--color-muted);
}

.video-section {
  padding: 86px 0;
  background: var(--color-bg-coral);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.video-layout {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(360px, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.video-copy .section-title {
  max-width: 760px;
}
.video-placeholder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 360px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--color-text);
  background: linear-gradient(135deg, rgba(255, 250, 245, .86), rgba(239, 231, 220, .72));
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  padding-left: 5px;
  border-radius: 999px;
  color: var(--color-text);
  background: var(--color-highlight);
  box-shadow: 0 18px 44px rgba(31, 27, 24, .1);
}
.video-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
}
.video-placeholder p {
  max-width: 420px;
  margin: 0;
  color: var(--color-muted);
}

.intro-flow {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.about-image { min-height: 570px; }
.intro-copy .body-text + .body-text { margin-top: 18px; }
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  min-height: 50px;
  padding: 14px 22px;
  color: var(--color-text);
  background: var(--color-highlight);
  border: 1px solid rgba(31, 27, 24, .08);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(31, 27, 24, .08);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.subtle-link {
  background: var(--color-highlight);
  border-color: rgba(31, 27, 24, .08);
  color: var(--color-text);
  box-shadow: 0 14px 30px rgba(31, 27, 24, .08);
}
.subtle-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.tools-section {
  padding: 82px 0;
  background: var(--color-bg-coral);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.tools-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.tools-copy .body-text + .body-text { margin-top: 16px; }
.tools-visual {
  display: grid;
  gap: 18px;
  align-items: start;
}
.tools-image {
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow);
}
.tools-image img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.tools-grid article {
  min-width: 0;
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 250, 245, .72);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow-wrap: anywhere;
}
.tools-grid article:nth-child(2),
.tools-grid article:nth-child(3) {
  background: rgba(239, 231, 220, .58);
}
.tools-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.tools-grid h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.tools-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: .98rem;
  line-height: 1.48;
}

.route { padding-top: 76px; padding-bottom: 72px; border-top: 1px solid var(--color-border); }
.route-head {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}
.route-head .section-title { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.route-card, .program-cards article, .decision article {
  min-height: 236px;
  padding: 26px;
  background: rgba(255, 250, 245, .72);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.route-card:hover, .program-cards article:hover, .decision article:hover { transform: translateY(-3px); background: rgba(255,255,255,.78); border-color: rgba(255,116,86,.42); }
.route-card span, .program-cards span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.route-card h3, .program-cards h3, .decision h3 { margin-bottom: 8px; font-size: 1.48rem; line-height: 1.15; }
.route-card strong { display: block; margin-bottom: 12px; color: var(--color-text); }
.route-card p, .program-cards p, .decision p { margin-bottom: 0; color: var(--color-muted); }
.primary-step {
  background: linear-gradient(180deg, var(--color-bg-coral), rgba(255, 250, 245, .82));
  border-color: rgba(255,116,86,.42);
  box-shadow: 0 18px 48px rgba(217, 92, 66, .08);
}
.program-step {
  background: linear-gradient(180deg, rgba(255, 240, 234, .98), rgba(255, 250, 245, .82));
  border-color: rgba(217, 92, 66, .42);
  box-shadow: 0 18px 48px rgba(31, 27, 24, .07);
}
.route-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  margin-top: 18px;
  padding: 18px 22px;
  color: var(--color-muted);
  background: rgba(255, 250, 245, .62);
  border: 1px solid var(--color-border);
  border-radius: 18px;
}
.route-note strong {
  color: var(--color-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
}
.route-note p { margin: 0; }
.mini-cta {
  display: inline-flex;
  margin-top: 22px;
  color: var(--color-accent-dark);
  font-weight: 800;
}

.patient-proof {
  padding: 88px 0;
  background: var(--color-bg-coral);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.patient-proof-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.patient-proof-head .section-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.proof-note {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--color-accent-dark);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.5;
}

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

.patient-proof-grid blockquote {
  min-height: 220px;
  margin: 0;
  padding: 26px;
  background: rgba(255, 250, 245, .78);
  border: 1px solid rgba(228, 216, 203, .92);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(31, 27, 24, .05);
}

.patient-proof-grid blockquote:nth-child(2),
.patient-proof-grid blockquote:nth-child(3) {
  background: rgba(255, 255, 255, .62);
}

.patient-proof-grid p {
  margin: 0;
  color: var(--color-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.program-section { padding: 88px 0; scroll-margin-top: 112px; background: var(--color-bg-soft); }
.program-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  grid-template-areas:
    "copy copy"
    "showcase detail"
    "bottom bottom";
  gap: 22px clamp(34px, 6vw, 80px);
  align-items: start;
}
.program-copy { grid-area: copy; }
.program-copy .section-title,
.program-copy .body-text {
  max-width: 760px;
}
.program-copy .body-text + .body-text { margin-top: 16px; }
.program-showcase {
  grid-area: showcase;
  width: min(520px, 100%);
  margin-top: 2px;
}
.program-price {
  width: 100%;
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 250, 245, .72);
  border: 1px solid var(--color-border);
  border-radius: 22px;
}
.program-price span { color: var(--color-accent-dark); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.program-price strong { display: block; margin: 6px 0 8px; font-family: "Playfair Display", Georgia, serif; font-size: 3.2rem; font-weight: 500; line-height: 1; }
.program-price p { margin: 0; color: var(--color-muted); }
.program-visual {
  width: 100%;
  min-height: 430px;
  margin: 0;
}
.program-visual img {
  object-position: center;
}
.program-detail {
  grid-area: detail;
  display: grid;
  gap: 18px;
}
.program-cards { display: grid; gap: 16px; }
.program-cards article { min-height: 0; }
.program-cards span { margin-bottom: 18px; }
.program-bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-top: 4px;
}
.program-includes {
  display: contents;
}
.program-includes article,
.program-price {
  padding: 26px;
  background: rgba(255, 250, 245, .72);
  border: 1px solid var(--color-border);
  border-radius: 22px;
}
.program-includes h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
  line-height: 1.15;
}
.program-includes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.program-includes li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
  line-height: 1.5;
}
.program-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-accent);
}

.monthly-layout {
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "detail"
    "bottom";
}

.monthly-detail {
  align-self: stretch;
}

.monthly-layout .program-showcase {
  display: none;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 245, .76);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(31, 27, 24, .06);
}

.featured-service {
  background: linear-gradient(180deg, rgba(255, 240, 234, .98), rgba(255, 250, 245, .86));
  border-color: rgba(255, 116, 86, .42);
}

.program-service {
  background: linear-gradient(180deg, rgba(231, 238, 226, .92), rgba(255, 250, 245, .78));
  border-color: rgba(137, 145, 115, .34);
}

.service-kicker {
  margin-bottom: 18px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1.04;
}

.service-descriptor {
  display: block;
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.45;
}

.service-price {
  display: block;
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.15rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.service-price small {
  color: var(--color-muted);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.service-saving {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 18px;
  padding: 8px 12px;
  color: var(--color-text);
  background: var(--color-highlight);
  border: 1px solid rgba(31, 27, 24, .08);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--color-muted);
  line-height: 1.62;
}

.service-card h4 {
  margin: auto 0 12px;
  color: var(--color-text);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
}

.service-cta {
  width: 100%;
  margin-top: 24px;
}

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

.fit-section {
  padding: 82px 0;
  background: var(--color-bg-coral);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.fit-layout {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(340px, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.fit-layout .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fit-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 250, 245, .76);
  border: 1px solid var(--color-border);
  border-radius: 22px;
}
.fit-grid article:first-child {
  background: rgba(255, 255, 255, .7);
  border-color: rgba(255, 116, 86, .35);
}
.fit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.15;
}
.fit-grid p {
  margin: 0;
  color: var(--color-muted);
}

.decision { padding-top: 88px; padding-bottom: 88px; display: grid; grid-template-columns: minmax(280px, .75fr) minmax(320px, 1.25fr); gap: 50px; align-items: start; }
.decision-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.decision-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.decision article { min-height: 210px; }
.decision-card {
  position: relative;
  overflow: hidden;
}
.decision-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(217, 92, 66, .42);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}
.decision-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.decision-card strong {
  color: var(--color-text);
}
.clarity-path {
  background: linear-gradient(180deg, var(--color-bg-coral), rgba(255, 250, 245, .72));
  border-color: rgba(255, 116, 86, .32);
}
.valuation-path {
  background: linear-gradient(180deg, rgba(255, 250, 245, .84), rgba(239, 231, 220, .52));
  border-color: rgba(228, 216, 203, .9);
}
.program-path {
  background: linear-gradient(180deg, rgba(255, 240, 234, .94), rgba(255, 250, 245, .72));
  border-color: rgba(217, 92, 66, .38);
}
.instagram-route {
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
  align-items: center;
}
.instagram-route .mini-cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0;
  white-space: nowrap;
}

.lead-magnet {
  padding: 88px 0;
  background: var(--color-bg-coral);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.lead-magnet-box {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .78fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.lead-magnet-copy .section-title { max-width: 760px; }
.lead-points {
  display: grid;
  gap: 12px;
  max-width: 590px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.lead-points li {
  position: relative;
  padding-left: 30px;
  color: var(--color-text);
  font-weight: 700;
}
.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(217, 92, 66, .42);
  border-radius: 999px;
  background: var(--color-highlight);
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 250, 245, .78);
  border: 1px solid rgba(228, 216, 203, .9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--color-text);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lead-form label span {
  display: block;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  min-height: 48px;
  width: 100%;
  padding: 13px 15px;
  color: var(--color-text);
  background: rgba(255, 250, 245, .92);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.lead-form input:focus {
  border-color: rgba(217, 92, 66, .55);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 116, 86, .12);
}
.lead-form .form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 2px 0 4px;
  color: var(--color-muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.lead-form .form-consent input { margin-top: 4px; accent-color: var(--color-accent-dark); }
.lead-form .form-consent span {
  display: block;
  min-width: 0;
}
.lead-form .form-consent a {
  color: var(--color-accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lead-form .btn-primary {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.lead-form .btn-primary:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-note {
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: .88rem;
  line-height: 1.45;
}
.form-note a {
  color: var(--color-accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lead-form .mini-cta { margin-top: 0; justify-content: center; }

.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.guide-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.guide-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(221, 221, 107, .22), transparent 32%),
    rgba(31, 27, 24, .52);
  backdrop-filter: blur(12px);
}
.guide-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255,250,245,.96), rgba(255,240,234,.96)),
    var(--color-bg);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  box-shadow: 0 34px 110px rgba(31, 27, 24, .28);
  transform: translateY(18px) scale(.98);
  transition: transform .28s ease;
}
.guide-modal.is-open .guide-modal__dialog { transform: translateY(0) scale(1); }
.guide-modal__dialog:focus { outline: none; }
.guide-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--color-text);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(228, 216, 203, .9);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(31, 27, 24, .08);
  transition: transform .2s ease, background .2s ease;
}
.guide-modal__close:hover { transform: translateY(-1px); background: var(--color-white); }
.guide-modal__close span {
  display: block;
  margin-top: -2px;
  font-size: 1.9rem;
  line-height: 1;
}
.guide-modal__copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.guide-modal__copy p {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.guide-modal__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-modal__points li {
  position: relative;
  padding-left: 26px;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.4;
}
.guide-modal__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--color-highlight);
  box-shadow: 0 0 0 1px rgba(217, 92, 66, .35);
}
.guide-modal__form {
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 60px rgba(31, 27, 24, .12);
}

.testimonial { padding: 92px 0; text-align: center; background: var(--color-bg); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.quote { max-width: 840px; margin: 0 auto 24px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.03em; }
.testimonial cite { color: var(--color-muted); font-style: normal; font-weight: 700; }

.cta { padding-top: 88px; padding-bottom: 96px; }
.cta-box { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: stretch; overflow: hidden; padding: clamp(34px, 5vw, 62px); background: var(--color-bg-soft); border-radius: 30px; }
.cta-copy p { max-width: 560px; }
.cta-image {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  aspect-ratio: auto;
}
.cta-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer { padding: 34px 0; border-top: 1px solid var(--color-border); color: var(--color-muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: .9rem; }
.footer-meta {
  display: grid;
  gap: 8px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: .78rem;
  font-weight: 760;
}
.footer-legal a {
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .25s ease;
}
.footer-legal a:hover {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--color-text);
  background: rgba(255, 250, 245, .78);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.footer-contact-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-btn:hover {
  transform: translateY(-2px);
  color: var(--color-white);
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.footer-contact-btn.instagram:hover {
  background: #c13584;
  border-color: #c13584;
}
.footer-contact-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #0f2d1d;
}
.footer-contact-btn.email:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.lowtox-page .header .brand { color: var(--color-text); }
.lowtox-hero {
  min-height: calc(92vh - 84px);
}
.lowtox-hero .hero-title {
  max-width: 830px;
  font-size: clamp(3rem, 5.5vw, 5.55rem);
}
.lowtox-hero-image img {
  object-position: center;
}
.lowtox-rationale {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, .92fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  padding-top: 66px;
  padding-bottom: 66px;
}
.lowtox-rationale .section-title {
  margin-bottom: 0;
}
.lowtox-rationale-copy {
  display: grid;
  gap: 16px;
}
.lowtox-rationale-copy .body-text {
  margin-bottom: 0;
}
.lowtox-detail {
  padding-top: 88px;
  padding-bottom: 88px;
}
.lowtox-split {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}
.lowtox-card-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lowtox-card {
  min-height: 308px;
  padding: 26px;
  background: rgba(255, 250, 245, .74);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.lowtox-card:nth-child(2) {
  margin-top: 34px;
  background: rgba(239, 231, 220, .58);
}
.lowtox-card:nth-child(3) {
  background: rgba(255, 240, 234, .72);
  border-color: rgba(217, 92, 66, .26);
}
.lowtox-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 116, 86, .42);
}
.lowtox-card span,
.lowtox-products span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lowtox-card h3,
.lowtox-products h3,
.lowtox-offer strong {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.14;
}
.lowtox-card p,
.lowtox-products p,
.lowtox-offer p {
  margin: 0;
  color: var(--color-muted);
}
.lowtox-ringana {
  padding-bottom: 76px;
}
.lowtox-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.lowtox-products article {
  min-height: 268px;
  padding: 24px;
  background: rgba(255, 250, 245, .74);
  border: 1px solid var(--color-border);
  border-radius: 22px;
}
.lowtox-products article:nth-child(even) {
  background: rgba(255, 240, 234, .68);
  border-color: rgba(217, 92, 66, .22);
}
.lowtox-products span {
  margin-bottom: 22px;
  font-size: .68rem;
}
.lowtox-products h3 {
  font-size: 1.34rem;
}
.lowtox-offer {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 26px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 24px;
}
.lowtox-offer strong {
  margin: 0;
}
.lowtox-offer .mini-cta {
  margin-top: 0;
  white-space: nowrap;
}
.lowtox-microcopy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--color-accent-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lowtox-principles {
  padding-top: 78px;
  padding-bottom: 78px;
}
.lowtox-mini-grid,
.lowtox-decision-grid {
  display: grid;
  gap: 16px;
}
.lowtox-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lowtox-mini-grid article,
.lowtox-decision-card {
  min-height: 244px;
  padding: 26px;
  background: rgba(255, 250, 245, .74);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.lowtox-mini-grid article:nth-child(2),
.lowtox-decision-card-muted {
  background: rgba(255, 240, 234, .7);
  border-color: rgba(217, 92, 66, .24);
}
.lowtox-mini-grid article:hover,
.lowtox-decision-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(255, 116, 86, .42);
}
.lowtox-mini-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--color-accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lowtox-mini-grid h3,
.lowtox-decision-card h3,
.lowtox-transparency .section-title {
  font-family: "Playfair Display", Georgia, serif;
}
.lowtox-mini-grid h3,
.lowtox-decision-card h3 {
  margin-bottom: 12px;
  font-size: 1.48rem;
  line-height: 1.14;
}
.lowtox-mini-grid p {
  margin: 0;
  color: var(--color-muted);
}
.lowtox-highlight {
  margin: 0;
  padding: 20px 24px;
  color: var(--color-text);
  background: rgba(255, 250, 245, .72);
  border: 1px solid rgba(217, 92, 66, .24);
  border-radius: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.12;
}
.lowtox-decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lowtox-ringana-grid {
  margin-top: 6px;
}
.lowtox-decision-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lowtox-decision-card li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
  line-height: 1.5;
}
.lowtox-decision-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-accent);
}
.lowtox-decision-card-muted li::before {
  background: var(--color-highlight);
  box-shadow: 0 0 0 1px rgba(31, 27, 24, .08);
}
.lowtox-transparency .container {
  display: grid;
  justify-items: center;
}
.lowtox-transparency .section-title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}
.lowtox-transparency .body-text {
  max-width: 840px;
  margin: 0 auto;
}
.lowtox-process .route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lowtox-process .route-card {
  min-height: 286px;
}

@media (max-width: 1120px) {
  .route-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .priority-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .patient-proof-layout,
  .patient-proof-grid { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .lowtox-card-stack,
  .lowtox-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lowtox-card:nth-child(2) {
    margin-top: 0;
  }
  .lowtox-offer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .lowtox-mini-grid,
  .lowtox-process .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .approach-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "steps";
  }
  .approach-image { min-height: 460px; }
}

@media (max-width: 980px) {
  .header-inner, .hero, .approach-layout, .features-grid, .symptoms-layout, .reto-promo, .priority-head, .value-head, .video-layout, .intro-flow, .tools-layout, .route-head, .program-layout, .program-includes, .fit-layout, .decision, .lead-magnet-box, .cta-box, .lowtox-rationale, .lowtox-split { grid-template-columns: 1fr; }
  .header-inner { display: flex; justify-content: space-between; }
  .nav, .header-cta { display: none; }
  .btn-area { display: inline-flex; }
  .features-grid.compact { grid-template-columns: 1fr; }
  .program-layout {
    grid-template-areas:
      "copy"
      "showcase"
      "detail"
      "bottom";
  }
  .program-bottom {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .program-includes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .symptom-list {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
  .service-options {
    grid-template-columns: 1fr;
  }
  .monthly-bottom {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    grid-template-areas:
      "copy"
      "image";
    padding-top: 34px;
  }
  .hero-copy { align-self: auto; }
  .hero-image { min-height: 430px; }
  .about-image { min-height: 460px; }
  .approach-image { min-height: 420px; }
  .route-head .body-text { max-width: 720px; }
  .instagram-route {
    grid-template-columns: 1fr;
  }
  .instagram-route .mini-cta {
    justify-self: stretch;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .container { width: 100%; max-width: 100vw; padding: 0 20px; }
  .header-inner { height: 70px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .brand { max-width: 100%; letter-spacing: .06em; }
  .brand strong { font-size: .8rem; }
  .brand span { max-width: 178px; font-size: .52rem; line-height: 1.2; white-space: normal; overflow: visible; text-overflow: clip; }
  .header-actions { display: flex; }
  .header-cta {
    display: none;
  }
  .btn-area {
    display: inline-flex;
    min-height: 40px;
    width: auto;
    padding: 11px 14px;
    font-size: .62rem;
    white-space: nowrap;
  }
  .lowtox-page .btn-area {
    max-width: 104px;
    min-height: 38px;
    padding: 9px 10px;
    font-size: .55rem;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }
  .lowtox-page .header-actions {
    display: none;
  }
  .lowtox-page .header-inner {
    grid-template-columns: 1fr;
  }
  .eyebrow { max-width: 34ch; margin-bottom: 12px; font-size: .66rem; letter-spacing: .08em; }
  .hero-eyebrow { display: none; }
  .hero { gap: 18px; padding-top: 24px; padding-bottom: 40px; }
  .hero-title { max-width: 11.8ch; margin-bottom: 16px; font-size: clamp(2.6rem, 11.2vw, 3.35rem); line-height: .95; }
  .lowtox-hero .hero-title {
    max-width: 11.2ch;
    font-size: clamp(2.62rem, 11.8vw, 3.35rem);
  }
  .hero-lead, .body-text { max-width: 35ch; font-size: .98rem; line-height: 1.62; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 22px; }
  .btn-primary, .btn-secondary { width: 100%; min-height: 50px; }
  .hero-link { justify-content: center; color: var(--color-accent-dark); }
  .hero-image, .about-image, .approach-image, .program-visual, .cta-image { min-height: 335px; border-radius: 22px; }
  .cta-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .approach-layout { gap: 28px; padding-top: 50px; padding-bottom: 50px; }
  .features-grid { gap: 28px; padding-top: 42px; padding-bottom: 42px; }
  .features-grid.compact { gap: 12px; padding-top: 0; padding-bottom: 0; }
  .features-grid.compact .feature { min-height: 0; grid-template-columns: 36px minmax(0, 1fr); gap: 12px; padding: 18px; border-radius: 18px; }
  .feature-kicker { max-width: none; margin-bottom: 0; }
  .feature { gap: 8px; }
  .feature-icon { width: 36px; height: 36px; }
  .feature h3 { font-size: 1.35rem; }
  .feature p { font-size: .9rem; line-height: 1.5; }
  .symptoms-layout { gap: 22px; padding-top: 40px; padding-bottom: 40px; }
  .symptoms-heading { grid-row: auto; }
  .symptoms-context { grid-column: auto; margin: 0; }
  .section-title { margin-bottom: 18px; font-size: clamp(2rem, 9vw, 2.72rem); line-height: 1.08; }
  .symptom-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .symptom-list span { min-height: 38px; padding: 8px 10px; font-size: .86rem; white-space: normal; }
  .symptom-list svg { width: 18px; height: 18px; stroke-width: 3.2; }
  .intro-flow, .tools-section, .reto-promo, .priority-section, .value-section, .video-section, .route, .program-section, .fit-section, .decision, .lead-magnet, .testimonial, .cta { padding-top: 56px; padding-bottom: 56px; }
  .lowtox-rationale {
    gap: 18px;
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .lowtox-detail {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .lowtox-card-stack,
  .lowtox-products,
  .lowtox-mini-grid,
  .lowtox-decision-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .lowtox-card,
  .lowtox-card:nth-child(2),
  .lowtox-card:nth-child(3),
  .lowtox-card:hover,
  .lowtox-products article,
  .lowtox-products article:nth-child(even),
  .lowtox-mini-grid article,
  .lowtox-mini-grid article:nth-child(2),
  .lowtox-mini-grid article:hover,
  .lowtox-decision-card,
  .lowtox-decision-card-muted,
  .lowtox-decision-card:hover {
    min-height: 0;
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transform: none;
  }
  .lowtox-card:last-child,
  .lowtox-products article:last-child,
  .lowtox-mini-grid article:last-child,
  .lowtox-decision-card:last-child {
    border-bottom: 0;
  }
  .lowtox-card span,
  .lowtox-products span,
  .lowtox-mini-grid span {
    display: none;
  }
  .lowtox-card h3,
  .lowtox-products h3,
  .lowtox-mini-grid h3,
  .lowtox-decision-card h3 {
    font-size: 1.25rem;
  }
  .lowtox-card p,
  .lowtox-products p,
  .lowtox-offer p,
  .lowtox-mini-grid p,
  .lowtox-decision-card li {
    font-size: .94rem;
    line-height: 1.5;
  }
  .lowtox-microcopy {
    max-width: 32ch;
    font-size: .68rem;
    line-height: 1.45;
  }
  .lowtox-page .hero-eyebrow {
    display: block;
  }
  .lowtox-highlight {
    padding: 18px 20px;
    font-size: 1.42rem;
  }
  .lowtox-process .route-grid {
    grid-template-columns: 1fr;
  }
  .lowtox-process .route-card {
    min-height: 0;
  }
  .lowtox-offer {
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
  }
  .lowtox-offer .mini-cta {
    width: 100%;
    justify-content: center;
  }
  .intro-copy { order: -1; }
  .value-head { gap: 18px; margin-bottom: 24px; }
  .value-head .section-title { font-size: clamp(2rem, 8.4vw, 2.65rem); }
  .priority-head { gap: 18px; margin-bottom: 24px; }
  .priority-head .section-title { font-size: clamp(2rem, 8.4vw, 2.65rem); }
  .priority-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .priority-grid article,
  .priority-grid article:nth-child(2),
  .priority-grid article:nth-child(4),
  .priority-grid article:hover {
    min-height: 0;
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transform: none;
  }
  .priority-grid article:last-child { border-bottom: 0; }
  .priority-grid span { display: none; }
  .priority-grid h3 { font-size: 1.25rem; }
  .priority-grid p { font-size: .94rem; line-height: 1.5; }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .value-grid article,
  .value-grid article:nth-child(2),
  .value-grid article:nth-child(5),
  .value-grid article:hover {
    min-height: 0;
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transform: none;
  }
  .value-grid article:last-child { border-bottom: 0; }
  .value-grid span { display: none; }
  .value-grid h3 { font-size: 1.25rem; }
  .value-grid p { font-size: .94rem; line-height: 1.5; }
  .route-head { gap: 18px; margin-bottom: 24px; }
  .route-head .section-title { font-size: clamp(2rem, 8.4vw, 2.65rem); }
  .route-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .46);
  }
  .route-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .route-card:last-child { border-bottom: 0; }
  .route-card.primary-step,
  .route-card.program-step {
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .route-card.program-step:last-child { border-bottom: 0; }
  .route-card.primary-step {
    background: linear-gradient(180deg, var(--color-bg-coral), rgba(255, 250, 245, .82));
  }
  .route-card.program-step {
    background: linear-gradient(180deg, rgba(255, 240, 234, .98), rgba(255, 250, 245, .88));
  }
  .route-card span { display: none; }
  .route-card h3 { margin-bottom: 4px; font-size: 1.28rem; }
  .route-card strong { margin-bottom: 8px; font-size: .94rem; }
  .route-card p { font-size: .93rem; line-height: 1.5; }
  .route-card .mini-cta { margin-top: 12px; }
  .route-note {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
  }
  .route-note p { font-size: .93rem; line-height: 1.5; }
  .program-cards article, .decision article { min-height: 0; padding: 22px; border-radius: 18px; }
  .primary-step { order: -1; }
  .program-price strong { font-size: 2.75rem; }
  .program-cards {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .program-cards article {
    display: block;
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .program-cards article:last-child { border-bottom: 0; }
  .program-cards span { margin-bottom: 7px; font-size: .68rem; opacity: .78; }
  .program-cards h3 { font-size: 1.26rem; }
  .program-cards p { font-size: .93rem; line-height: 1.5; }
  .program-showcase {
    display: grid;
    gap: 14px;
    width: 100%;
    margin-top: 0;
  }
  .program-price {
    width: 100%;
    padding: 22px;
  }
  .program-visual { width: 100%; min-height: 310px; }
  .program-detail { gap: 14px; }
  .program-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }
  .program-includes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .program-includes article {
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .program-includes article:last-child { border-bottom: 0; }
  .program-includes h3 { font-size: 1.24rem; }
  .program-includes li { font-size: .93rem; line-height: 1.45; }
  .service-options {
    gap: 14px;
  }
  .monthly-layout .program-showcase {
    display: none;
  }
  .service-card {
    min-height: 0;
    padding: 22px;
    border-radius: 18px;
  }
  .service-card h3 {
    font-size: 1.55rem;
  }
  .service-price {
    font-size: 3rem;
  }
  .service-card p,
  .service-card li {
    font-size: .93rem;
  }
  .service-card h4 {
    margin-top: 18px;
  }
  .fit-layout { gap: 22px; }
  .fit-layout .section-title { font-size: clamp(2rem, 8.4vw, 2.65rem); }
  .fit-grid {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .fit-grid article,
  .fit-grid article:first-child {
    min-height: 0;
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .fit-grid article:last-child { border-bottom: 0; }
  .fit-grid h3 { font-size: 1.24rem; }
  .fit-grid p { font-size: .94rem; line-height: 1.5; }
  .decision { gap: 22px; }
  .decision-grid {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 250, 245, .62);
  }
  .decision article,
  .decision article:hover {
    padding: 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transform: none;
  }
  .decision article:last-child { border-bottom: 0; }
  .decision-card::after { display: none; }
  .decision-card span { display: none; }
  .decision h3 { font-size: 1.25rem; }
  .decision p { font-size: .94rem; line-height: 1.5; }
  .video-layout { gap: 24px; }
  .video-placeholder {
    grid-template-columns: 1fr;
    min-height: 280px;
    padding: 24px;
    border-radius: 24px;
  }
  .video-play {
    width: 62px;
    height: 62px;
  }
  .lead-magnet-box { gap: 26px; }
  .lead-points { gap: 10px; margin-top: 20px; }
  .lead-points li { padding-left: 26px; font-size: .94rem; line-height: 1.45; }
  .lead-form { padding: 22px; border-radius: 22px; }
  .guide-modal {
    align-items: end;
    padding: 10px;
  }
  .guide-modal__dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 26px 18px 18px;
    border-radius: 24px;
  }
  .guide-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
  .guide-modal__copy h2 {
    max-width: 88%;
    margin-bottom: 12px;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .guide-modal__copy p {
    margin-bottom: 16px;
    font-size: .94rem;
    line-height: 1.55;
  }
  .guide-modal__points { display: none; }
  .guide-modal__form { padding: 18px; border-radius: 18px; }
  .quote { font-size: clamp(1.9rem, 8vw, 2.65rem); }
  .testimonial .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .quote { max-width: 330px; margin-left: auto; margin-right: auto; text-align: center; }
  .text-link { width: 100%; max-width: 330px; text-align: center; }
  .tools-layout, .tools-visual { gap: 26px; }
  .tools-visual { grid-template-columns: 1fr; }
  .tools-image {
    height: auto;
    border-radius: 22px;
    background: var(--color-bg-soft);
    box-shadow: var(--shadow);
  }
  .tools-image img {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 22px;
  }
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .tools-grid article,
  .tools-grid article:nth-child(2),
  .tools-grid article:nth-child(3) {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .tools-grid article:last-child { border-bottom: 0; }
  .tools-grid span { display: none; }
  .tools-grid h3 {
    margin-bottom: 3px;
    font-size: 1.22rem;
  }
  .tools-grid p {
    font-size: .92rem;
    line-height: 1.45;
  }
  .cta-box { gap: 28px; padding: 26px; border-radius: 24px; }
  .footer { padding-bottom: 30px; }
  .footer-inner { flex-direction: column; align-items: stretch; }
  .footer-meta { text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-contact { justify-content: stretch; }
  .footer-contact-btn { flex: 1 1 100%; }
}
