:root {
  --ink: #171615;
  --muted: #6b625e;
  --paper: #fbfaf8;
  --soft: #f1eee8;
  --white: #ffffff;
  --line: rgba(23, 22, 21, 0.12);
  --gold: #c7a364;
  --sage: #72887b;
  --rose: #b46b75;
  --shadow: 0 24px 70px rgba(23, 22, 21, 0.14);
  --anchor-offset: calc(var(--site-nav-height, 60px) + var(--quick-access-height, 50px) + 18px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.plantar-page {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.plantar-page img {
  display: block;
  max-width: 100%;
}

.plantar-page main {
  overflow: clip;
}

.plantar-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background: #171615;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 17, 16, 0.9) 0%, rgba(18, 17, 16, 0.62) 42%, rgba(18, 17, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 17, 16, 0.74) 0%, rgba(18, 17, 16, 0) 52%);
}

.hero-inner,
.section-grid,
.results-inner,
.notes-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  padding: 160px 0 78px;
}

.hero-copy {
  max-width: 790px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.hero-copy h1,
.section-copy h2,
.target-copy h2,
.benefits-head h2,
.results-inner h2,
.notes-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(3.45rem, 8vw, 8.2rem);
  line-height: 0.9;
}

.hero-copy p {
  max-width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.target-section,
.benefits-section,
.results-section,
.notes-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.overview-section {
  position: relative;
  padding: clamp(78px, 9vw, 124px) 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 238, 232, 0.95), rgba(251, 250, 248, 0.72) 48%, rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 12% 18%, rgba(199, 163, 100, 0.16), transparent 31%),
    radial-gradient(circle at 86% 30%, rgba(114, 136, 123, 0.16), transparent 28%);
}

.overview-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(23, 22, 21, 0.06);
  border-radius: 8px;
  pointer-events: none;
}

.section-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.74fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.section-copy h2,
.target-copy h2,
.benefits-head h2,
.results-inner h2,
.notes-copy h2 {
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.96;
}

.section-copy,
.target-copy,
.benefits-head,
.results-inner > div,
.notes-copy {
  min-width: 0;
}

.section-copy p,
.target-copy p,
.benefits-grid p,
.results-inner p,
.notes-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-copy p,
.target-copy p,
.notes-copy p {
  max-width: 660px;
}

.overview-readmore {
  max-width: 660px;
  margin-top: 24px;
}

.overview-readmore summary {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(199, 163, 100, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 22, 21, 0.06);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.overview-readmore summary::-webkit-details-marker {
  display: none;
}

.overview-readmore summary::after {
  content: "+";
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  font-size: 0.9rem;
  line-height: 1;
}

.overview-readmore summary:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 163, 100, 0.58);
  box-shadow: 0 16px 40px rgba(23, 22, 21, 0.09);
}

.overview-readmore[open] summary::after {
  content: "-";
}

.overview-readmore-content {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.overview-readmore-content > p {
  margin-top: 0;
}

.overview-note {
  max-width: 610px;
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid rgba(114, 136, 123, 0.26);
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(23, 22, 21, 0.06);
}

.overview-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-stack article,
.steps article,
.benefits-grid article,
.notes-list article,
.result-metrics article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 22, 21, 0.07);
}

.info-stack article {
  position: relative;
  min-height: 142px;
  padding: 28px 28px 26px 92px;
  overflow: hidden;
  border-color: rgba(23, 22, 21, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    var(--white);
  box-shadow: 0 22px 58px rgba(23, 22, 21, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-stack article::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 68px;
  width: 1px;
  background: linear-gradient(180deg, rgba(199, 163, 100, 0), rgba(199, 163, 100, 0.42), rgba(199, 163, 100, 0));
}

.info-stack article:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 163, 100, 0.34);
  box-shadow: 0 28px 70px rgba(23, 22, 21, 0.11);
}

.info-stack article > span {
  position: absolute;
  top: 26px;
  left: 24px;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.info-stack strong,
.steps h3,
.benefits-grid h3,
.notes-list h3 {
  display: block;
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.info-stack p,
.steps p,
.benefits-grid p,
.notes-list p {
  margin: 0;
}

.target-section {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.9fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

.image-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(23, 22, 21, 0.08);
  background:
    radial-gradient(circle at 18% 14%, rgba(199, 163, 100, 0.18), transparent 32%),
    var(--soft);
  box-shadow: 0 30px 80px rgba(23, 22, 21, 0.16);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.01);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 22, 21, 0.02) 32%, rgba(23, 22, 21, 0.68) 100%),
    linear-gradient(90deg, rgba(23, 22, 21, 0.34), rgba(23, 22, 21, 0) 58%);
}

.image-panel-badge {
  position: absolute;
  left: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 1;
  display: grid;
  gap: 7px;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(23, 22, 21, 0.34);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.image-panel-badge span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-panel-badge strong {
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.06;
}

.target-copy {
  max-width: 690px;
}

.target-copy > p {
  max-width: 620px;
  margin-top: 22px;
}

.steps-disclosure {
  max-width: 690px;
  margin-top: 28px;
}

.steps-disclosure summary {
  width: max-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(199, 163, 100, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 248, 0.72)),
    rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(23, 22, 21, 0.07);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.steps-disclosure summary::-webkit-details-marker {
  display: none;
}

.steps-disclosure summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1;
}

.steps-disclosure summary:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 163, 100, 0.58);
  box-shadow: 0 18px 44px rgba(23, 22, 21, 0.1);
}

.steps-disclosure[open] summary::after {
  content: "-";
}

.steps-label-close {
  display: none;
}

.steps-disclosure[open] .steps-label-open {
  display: none;
}

.steps-disclosure[open] .steps-label-close {
  display: inline;
}

.steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 18px;
  animation: stepsReveal 240ms ease;
}

@keyframes stepsReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 126px;
  padding: 22px 24px;
  overflow: hidden;
  border-color: rgba(23, 22, 21, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 248, 0.88)),
    var(--white);
  box-shadow: 0 18px 48px rgba(23, 22, 21, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--sage));
  opacity: 0;
  transition: opacity 180ms ease;
}

.steps article:hover {
  transform: translateX(4px);
  border-color: rgba(199, 163, 100, 0.34);
  box-shadow: 0 24px 64px rgba(23, 22, 21, 0.1);
}

.steps article:hover::before {
  opacity: 1;
}

.steps span {
  grid-row: span 2;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(199, 163, 100, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)),
    rgba(199, 163, 100, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.steps h3 {
  align-self: end;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.12rem;
}

.steps p {
  color: var(--muted);
  line-height: 1.62;
}

.benefits-section {
  background:
    linear-gradient(180deg, rgba(241, 238, 232, 0.85), rgba(251, 250, 248, 1));
}

.benefits-head {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 34px;
}

.benefits-head h2 {
  max-width: 850px;
}

.benefits-grid {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.benefits-grid article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: #171615;
}

.benefits-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.benefits-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 22, 21, 0.02) 28%, rgba(23, 22, 21, 0.58) 72%, rgba(23, 22, 21, 0.88) 100%),
    linear-gradient(90deg, rgba(23, 22, 21, 0.78) 0%, rgba(23, 22, 21, 0.24) 62%, rgba(23, 22, 21, 0.08) 100%);
}

.benefits-grid article:hover img {
  transform: scale(1.035);
}

.benefits-grid article:nth-child(2) img {
  object-position: 72% center;
}

.benefits-grid div {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: clamp(22px, 3vw, 30px);
}

.benefits-grid h3 {
  color: var(--white);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.benefits-grid p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.results-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 12%, rgba(199, 163, 100, 0.26), transparent 30%),
    radial-gradient(circle at 90% 24%, rgba(114, 136, 123, 0.2), transparent 32%),
    radial-gradient(circle at 48% 105%, rgba(180, 107, 117, 0.14), transparent 34%),
    linear-gradient(135deg, #171615 0%, #252321 54%, #11100f 100%);
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 42%, black 0%, rgba(0, 0, 0, 0.72) 48%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 42%, black 0%, rgba(0, 0, 0, 0.72) 48%, transparent 78%);
  opacity: 0.5;
}

.results-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: -1;
  width: min(880px, 88vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 201, 136, 0.48), transparent);
  transform: translateX(-50%);
}

.results-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.76fr);
  gap: clamp(38px, 8vw, 96px);
  align-items: center;
}

.results-inner > div:first-child {
  max-width: 680px;
}

.results-section .section-kicker {
  color: rgba(229, 201, 136, 0.92);
}

.results-inner h2 {
  max-width: 690px;
  color: #fffaf0;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
}

.results-inner p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
}

.result-metrics {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 18px;
}

.result-metrics::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(229, 201, 136, 0.5), rgba(114, 136, 123, 0.42), transparent);
}

.result-metrics article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 104px;
  padding: 22px 24px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.result-metrics article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--sage));
  opacity: 0.75;
}

.result-metrics article::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -46px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(229, 201, 136, 0.12);
  filter: blur(4px);
}

.result-metrics article:hover {
  transform: translateX(4px);
  border-color: rgba(229, 201, 136, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.05);
}

.result-metrics strong {
  position: relative;
  z-index: 1;
  color: #e5c988;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.result-metrics span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.notes-section {
  background: var(--paper);
}

.notes-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.notes-list {
  display: grid;
  gap: 12px;
}

.notes-list article {
  padding: 26px;
}

.notes-list article:first-child {
  border-color: rgba(114, 136, 123, 0.34);
  background:
    linear-gradient(180deg, rgba(114, 136, 123, 0.1), rgba(255, 255, 255, 0)),
    var(--white);
}

.plantar-page .faq {
  background: var(--soft);
}

.plantar-page .faq-title-main {
  color: var(--ink);
}

.plantar-page .reviews .container,
.plantar-page .footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 980px) {
  .hero-inner,
  .section-grid,
  .target-section,
  .results-inner,
  .notes-inner {
    grid-template-columns: 1fr;
  }

  .target-section {
    width: min(1160px, calc(100% - 40px));
  }

  .section-grid {
    align-items: start;
  }

  .overview-note {
    max-width: none;
  }

  .image-panel,
  .image-panel img {
    min-height: 420px;
  }

  .steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .plantar-page .reviews .container,
  .plantar-page .footer .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-inner,
  .section-grid,
  .target-section,
  .benefits-head,
  .benefits-grid,
  .results-inner,
  .notes-inner {
    width: calc(100% - 28px);
  }

  .plantar-hero {
    min-height: 88vh;
  }

  .hero-inner {
    display: block;
    padding: 128px 0 46px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow-wrap: break-word;
  }

  .hero-copy h1 {
    font-size: clamp(2.72rem, 14vw, 4.05rem);
  }

  .hero-copy p {
    width: 100%;
    max-width: 340px;
    font-size: 0.98rem;
    line-height: 1.72;
    white-space: normal;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .btn {
    padding-inline: 16px;
  }

  .overview-section::before {
    inset: 14px;
  }

  .overview-note {
    margin-top: 26px;
    padding: 18px;
  }

  .info-stack article {
    min-height: 0;
    padding: 22px 20px 22px 72px;
  }

  .info-stack article::before {
    left: 54px;
  }

  .info-stack article > span {
    top: 22px;
    left: 18px;
  }

  .overview-section,
  .target-section,
  .benefits-section,
  .results-section,
  .notes-section {
    padding: 64px 0;
  }

  .image-panel,
  .image-panel img {
    min-height: 350px;
  }

  .benefits-grid article,
  .benefits-grid img {
    min-height: 300px;
  }

  .result-metrics article {
    grid-template-columns: 1fr;
  }

}
