: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;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 76px) 0;
  background:
    linear-gradient(180deg, #fbfaf8 0%, #f5f0e8 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(23, 22, 21, 0.08);
  border-bottom: 1px solid rgba(23, 22, 21, 0.08);
  pointer-events: none;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.64fr) minmax(560px, 1fr) minmax(158px, auto);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(23, 22, 21, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 16px 44px rgba(23, 22, 21, 0.08);
}

.pricing-copy {
  min-width: 0;
}

.pricing-copy .section-kicker {
  margin-bottom: 10px;
}

.pricing-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 500;
  line-height: 0.98;
}

.pricing-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, max-content);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  min-width: 0;
  padding: 0 clamp(20px, 2.4vw, 30px);
  border-left: 1px solid rgba(23, 22, 21, 0.1);
  border-right: 1px solid rgba(23, 22, 21, 0.1);
}

.pricing-service {
  min-width: 0;
}

.pricing-service span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-service h3 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.03rem, 1.35vw, 1.24rem);
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.pricing-price {
  text-align: right;
}

.pricing-price span {
  display: block;
  margin-bottom: 7px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-price strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 500;
  line-height: 0.9;
  white-space: nowrap;
}

.pricing-actions {
  display: grid;
  gap: 10px;
  min-width: 158px;
}

.pricing-appointment,
.pricing-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-appointment {
  background: var(--ink);
  color: var(--white);
}

.pricing-secondary {
  border: 1px solid rgba(23, 22, 21, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.4);
}

.picofy-pricing-card {
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0;
  overflow: hidden;
}

.picofy-pricing-card .pricing-copy {
  padding: clamp(24px, 3.2vw, 38px) clamp(22px, 4vw, 44px) 0;
}

.picofy-pricing-card .pricing-copy h2 {
  max-width: 920px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.picofy-price-list {
  display: grid;
  border-top: 1px solid rgba(23, 22, 21, 0.1);
}

.picofy-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, auto);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px) clamp(22px, 4vw, 44px);
  border-bottom: 1px solid rgba(23, 22, 21, 0.1);
}

.picofy-price-service {
  min-width: 0;
}

.picofy-price-service h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.1vw, 1.72rem);
  font-weight: 650;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.picofy-price-service a {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(23, 22, 21, 0.58);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.2;
  text-underline-offset: 2px;
}

.picofy-price-amount {
  display: grid;
  justify-items: end;
  min-width: 118px;
  color: var(--ink);
  text-align: right;
}

.picofy-price-amount span {
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.picofy-price-amount strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.picofy-pricing-card .pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(22px, 4vw, 44px) clamp(24px, 3.2vw, 38px);
}

@media (max-width: 1180px) {
  .pricing-card {
    grid-template-columns: minmax(0, 1fr) minmax(168px, auto);
  }

  .pricing-copy {
    grid-column: 1 / -1;
  }

  .pricing-row {
    padding-left: 0;
    border-left: 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;
}


.treatment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.treatment-appointment {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.treatment-appointment:hover {
  transform: translateY(-2px);
  background: #2a2927;
}

.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;
}

.picofy-scroll-story {
  --picofy-video-progress: 0;
  --picofy-sticky-offset: calc(var(--site-nav-height, 60px) + var(--quick-access-height, 50px));
  --picofy-story-scroll-range: 100vh;
  --picofy-story-scroll-range: 100svh;
  --picofy-story-stack-height: 1200px;
  position: relative;
  height: calc(var(--picofy-story-stack-height) + var(--picofy-story-scroll-range));
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(251, 250, 248, 0), rgba(241, 238, 232, 0.92) 58%, rgba(251, 250, 248, 1));
}

.picofy-scroll-story-sticky {
  position: sticky;
  top: var(--picofy-sticky-offset);
  z-index: 1;
  display: block;
  overflow: visible;
  background: transparent;
  contain: layout paint;
}

.picofy-scroll-video {
  position: relative;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.picofy-scroll-video-frame {
  width: 100%;
  max-width: 100%;
  line-height: 0;
  background: transparent;
}

.picofy-scroll-video-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: transparent;
}

.picofy-scroll-story.is-video-waiting .picofy-scroll-video-media {
  opacity: 0.96;
}

@supports not (overflow: clip) {
  .picofy-scroll-story,
  .picofy-scroll-video {
    overflow: hidden;
  }
}

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

.picofy-scroll-story .benefits-section {
  padding-top: clamp(24px, 3vw, 42px);
}

.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);
}

.before-after-section {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 6vw, 76px) 0;
  background:
    linear-gradient(180deg, #fbfaf8 0%, #f4f0e8 100%);
}

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

.before-after-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  gap: clamp(18px, 3vw, 28px);
}

.before-after-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.54fr);
  row-gap: 14px;
  column-gap: clamp(18px, 4vw, 52px);
  align-items: start;
  min-width: 0;
}

.before-after-copy .section-kicker {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin-bottom: 0;
}

.before-after-copy h2 {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

.before-after-copy p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.before-after-stage {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(10px, 1.4vw, 14px);
  border: 1px solid rgba(23, 22, 21, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    #fffaf3;
  box-shadow: 0 18px 42px rgba(23, 22, 21, 0.08);
  contain: layout paint;
}

.before-after-feature {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(23, 22, 21, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 248, 0.82)),
    #f5f1ea;
  box-shadow: 0 8px 20px rgba(23, 22, 21, 0.06);
  contain: layout paint style;
}

.before-after-feature-photo {
  position: relative;
  width: 100%;
  height: clamp(360px, 52vw, 620px);
  display: grid;
  place-items: center;
  padding: clamp(8px, 1.2vw, 14px);
  overflow: hidden;
  background: linear-gradient(180deg, #f8f4ed, #eee8de);
}

.before-after-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.before-after-feature figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 12px 15px;
  border-top: 1px solid rgba(23, 22, 21, 0.08);
  background: #fffdf9;
  color: var(--ink);
}

.before-after-feature figcaption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(114, 136, 123, 0.12);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.before-after-feature figcaption strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.before-after-thumbs {
  display: flex;
  gap: 10px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  contain: layout paint;
}

.before-after-thumbs:focus-visible {
  outline: 2px solid rgba(199, 163, 100, 0.72);
  outline-offset: 3px;
}

.before-after-thumbs::-webkit-scrollbar {
  height: 8px;
}

.before-after-thumbs::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(23, 22, 21, 0.06);
}

.before-after-thumbs::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(114, 136, 123, 0.58);
}

.before-after-thumb {
  flex: 0 0 clamp(118px, 14vw, 164px);
  display: grid;
  grid-template-rows: 96px auto;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 22, 21, 0.1);
  border-radius: 8px;
  appearance: none;
  background: #fffdf9;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  scroll-snap-align: start;
  text-align: left;
}

.before-after-thumb.is-active {
  border-color: rgba(199, 163, 100, 0.64);
  background: #fffaf0;
  box-shadow: inset 0 0 0 2px rgba(199, 163, 100, 0.18);
}

.before-after-thumb:focus-visible {
  outline: 2px solid rgba(199, 163, 100, 0.72);
  outline-offset: 3px;
}

.before-after-thumb-media {
  display: grid;
  height: 96px;
  place-items: center;
  padding: 6px;
  overflow: hidden;
  background: #f3eee5;
}

.before-after-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.before-after-thumb-label {
  display: block;
  padding: 9px 10px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .before-after-thumb {
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }

  .before-after-thumb:hover {
    transform: translateY(-1px);
    border-color: rgba(199, 163, 100, 0.4);
    background: #fffaf0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .before-after-thumbs {
    scroll-behavior: auto;
  }

  .before-after-thumb {
    transition: none;
  }
}

@media (max-width: 980px) {
  .before-after-copy {
    grid-template-columns: 1fr;
  }

  .before-after-copy p {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    margin: 0;
  }

  .before-after-feature-photo {
    height: clamp(340px, 58vw, 520px);
  }

  .before-after-thumb {
    flex-basis: min(34vw, 150px);
    grid-template-rows: 88px auto;
  }

  .before-after-thumb-media {
    height: 88px;
  }
}

@media (max-width: 640px) {
  .before-after-inner {
    width: calc(100% - 28px);
  }

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

  .before-after-section {
    padding: 52px 0;
  }

  .before-after-stage {
    padding: 8px;
    box-shadow: 0 10px 24px rgba(23, 22, 21, 0.07);
  }

  .before-after-feature {
    box-shadow: none;
  }

  .before-after-feature-photo {
    height: clamp(300px, 72vw, 430px);
    padding: 8px;
  }

  .before-after-feature figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .before-after-feature figcaption strong {
    text-align: left;
  }

  .before-after-thumbs {
    gap: 8px;
    padding-bottom: 6px;
  }

  .before-after-thumb {
    flex-basis: 112px;
    grid-template-rows: 82px auto;
  }

  .before-after-thumb-media {
    height: 82px;
  }
}

.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,
  .pricing-inner,
  .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;
  }



  .treatment-actions,
  .treatment-appointment {
    width: 100%;
  }

  .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,
  .pricing-inner,
  .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,
  .pricing-section,
  .target-section,
  .benefits-section,
  .results-section,
  .notes-section {
    padding: 64px 0;
  }

  .pricing-card {
    grid-template-columns: 1fr;
    gap: 18px;
    box-shadow: 0 14px 36px rgba(23, 22, 21, 0.08);
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(23, 22, 21, 0.1);
    border-right: 0;
    border-bottom: 1px solid rgba(23, 22, 21, 0.1);
    border-left: 0;
  }

  .pricing-price {
    text-align: left;
  }

  .pricing-actions {
    gap: 16px;
  }

  .pricing-appointment,
  .pricing-secondary {
    width: 100%;
  }

  .picofy-price-row {
    grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
    gap: 14px;
    padding: 20px 18px;
  }

  .picofy-pricing-card .pricing-copy {
    padding: 24px 18px 0;
  }

  .picofy-pricing-card .pricing-copy h2 {
    font-size: clamp(1.42rem, 7.5vw, 2rem);
  }

  .picofy-price-service h3 {
    font-size: clamp(1.02rem, 5.1vw, 1.36rem);
    line-height: 1.32;
  }

  .picofy-price-amount {
    min-width: 92px;
  }

  .picofy-price-amount span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .picofy-price-amount strong {
    font-size: clamp(1.2rem, 5.6vw, 1.48rem);
  }

  .picofy-pricing-card .pricing-actions {
    padding: 0 18px 24px;
  }

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

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

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

}
