:root {
  --bg: #fffdfa;
  --bg-soft: #f8f4eb;
  --surface: #ffffff;
  --surface-soft: #fbf8f1;
  /* Typography system:
     Heading font: Cormorant Garamond
     Body font: Manrope
     Display size: clamp(46px, 5vw, 60px)
     Title size: clamp(30px, 3vw, 36px)
     Body size: clamp(17px, 1.28vw, 19px)
  */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --type-size-body: clamp(17px, 1.28vw, 19px);
  --type-size-title: clamp(30px, 3vw, 36px);
  --type-size-display: clamp(46px, 5vw, 60px);
  --text: #302925;
  --muted: #766f67;
  --line: #e8e3d8;
  --rose: #ad746f;
  --rose-dark: #8f5954;
  --sage: #8fa184;
  --sage-dark: #607257;
  --olive-soft: #dfe7d8;
  --cream: #fffdf8;
  --fruit: #c8927d;
  --citrus: #e8c979;
  --lime: #bfdc82;
  --shadow: 0 24px 62px rgba(75, 58, 44, 0.1);
  --shadow-soft: 0 14px 36px rgba(75, 58, 44, 0.07);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 247, 240, 1) 46%, rgba(255, 255, 255, 1)),
    var(--bg);
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(232, 242, 224, 0.72), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(242, 248, 238, 0.86), transparent 26%),
    radial-gradient(circle at 76% 68%, rgba(214, 233, 204, 0.4), transparent 22%),
    radial-gradient(circle at 10% 88%, rgba(248, 252, 245, 0.7), transparent 18%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 286px) minmax(0, 1fr) auto;
  gap: clamp(10px, 1.5vw, 18px);
  align-items: center;
  padding: 8px clamp(18px, 4vw, 44px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(223, 232, 216, 0.62);
  backdrop-filter: blur(14px);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(91, 104, 82, 0.06);
}

.brand {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(24px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 0.98;
  white-space: nowrap;
}

.brand-subtitle {
  display: grid;
  gap: 1px;
  max-width: 310px;
  color: var(--muted);
  font-size: clamp(12px, 0.9vw, 13px);
  font-weight: 600;
  line-height: 1.35;
}

.brand-subtitle span {
  display: block;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
  color: #4b433c;
  font-size: clamp(13px, 0.9vw, 14px);
  font-weight: 600;
}

.nav a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover {
  color: var(--sage-dark);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links-single {
  gap: 0;
}

.social-links a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(143, 89, 84, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  color: var(--rose-dark);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-icon-image {
  width: 21px;
  height: 21px;
  object-fit: contain;
  display: block;
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(96, 114, 87, 0.38);
  background: rgba(223, 231, 216, 0.52);
  color: var(--sage-dark);
}

.section {
  position: relative;
  padding: clamp(98px, 10vw, 150px) 0;
  overflow: hidden;
}

section[id],
.section-heading[id],
.about-copy[id] {
  scroll-margin-top: 118px;
}

.about-copy[id] {
  scroll-margin-top: 240px;
}

.hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: end;
  padding-top: 64px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 247, 239, 0.94) 52%, rgba(242, 247, 239, 0.84) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -62px;
  height: 138px;
  z-index: 1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23fffdfa' d='M0 58C123 117 272 145 430 114C578 85 655 21 792 29C938 38 1024 127 1170 128C1286 128 1369 87 1440 59V180H0Z'/%3E%3C/svg%3E")
      center bottom / 100% 100% no-repeat;
  filter: drop-shadow(0 -10px 18px rgba(143, 89, 84, 0.07));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(70svh - 64px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(36px, 5vw, 66px) 0 clamp(56px, 6vw, 90px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rose-dark);
  font-size: var(--type-size-body);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 800px;
  font-size: var(--type-size-display);
  line-height: 1.02;
}

h2 {
  font-size: var(--type-size-display);
}

h3 {
  font-family: var(--font-heading);
  font-size: var(--type-size-title);
  font-weight: 600;
  line-height: 1.12;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 26px;
  color: #5f554d;
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 38px;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--type-size-body);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(143, 89, 84, 0.12);
}

.button-primary,
.button-soft,
.button-secondary {
  color: #fffaf2;
  border-radius: 999px;
  background: linear-gradient(135deg, #9a625d, #8b5752);
  border-color: #8b5752;
}

.button-primary:hover,
.button-soft:hover,
.button-secondary:hover {
  background: linear-gradient(135deg, #8d5853, #784b47);
  border-color: #784b47;
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.section-cta-row.center {
  justify-content: center;
}

.section-cta-row-spaced {
  margin-top: 48px;
}

.section-cta-row .button {
  min-width: 188px;
}

.under-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  max-height: 620px;
  margin-bottom: 8px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 34px rgba(59, 42, 32, 0.17));
}

.portrait-ground {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 34px;
  width: min(420px, 76%);
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(96, 114, 87, 0.2), rgba(143, 89, 84, 0.08) 54%, transparent 72%);
  filter: blur(6px);
}

.hero-fact {
  position: absolute;
  z-index: 5;
  right: clamp(0px, 1.8vw, 16px);
  left: auto;
  bottom: 92px;
  max-width: 188px;
  padding: 13px 15px;
  border: 1px solid rgba(232, 222, 210, 0.84);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 34px rgba(75, 58, 44, 0.1);
  backdrop-filter: blur(18px);
}

.hero-fact span {
  display: block;
  color: var(--sage-dark);
  font-family: var(--font-heading);
  font-size: var(--type-size-title);
  font-weight: 600;
  line-height: 1.12;
}

.hero-fact p {
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.45;
}

.botanical {
  display: none;
}

.decor-asset,
.leaf-sprig,
.about-branch,
.final-branch {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 10px 22px rgba(152, 175, 138, 0.06));
  will-change: transform, opacity;
}

.decor-asset {
  height: auto;
  object-fit: contain;
}

.hero-leaf-left {
  left: clamp(-18px, 2vw, 18px);
  top: 104px;
  width: clamp(144px, 13vw, 198px);
  opacity: 0.1;
}

.hero-leaf-right {
  right: clamp(6px, 3vw, 34px);
  top: 96px;
  width: clamp(120px, 10vw, 164px);
  opacity: 0.1;
}

.hero-lemon {
  right: clamp(134px, 15vw, 224px);
  top: 138px;
  width: clamp(104px, 9vw, 146px);
  opacity: 0.22;
}

.hero-tape {
  right: clamp(24px, 7vw, 92px);
  top: 194px;
  width: clamp(168px, 16vw, 228px);
  opacity: 0.17;
  --ribbon-rotate: 8deg;
}

.hero-route {
  left: clamp(28px, 4vw, 74px);
  top: 148px;
  width: clamp(420px, 60vw, 760px);
  opacity: 0.12;
}

.hero-circles {
  left: clamp(-34px, 1vw, 12px);
  top: 122px;
  width: clamp(270px, 28vw, 390px);
  opacity: 0.1;
}

.story-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  color: #4b433c;
  font-size: var(--type-size-body);
  font-weight: 600;
}

.story-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease;
}

.story-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.story-nav a:hover {
  color: var(--sage-dark);
}

.story-nav a:hover::after {
  transform: scaleX(1);
}

body.story-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 246, 240, 1) 48%, rgba(255, 255, 255, 1)),
    var(--bg);
}

body.story-page::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(232, 242, 224, 0.62), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(246, 236, 228, 0.66), transparent 26%),
    radial-gradient(circle at 72% 70%, rgba(214, 233, 204, 0.34), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(248, 252, 245, 0.64), transparent 18%);
}

.story-main {
  overflow: hidden;
}

.story-hero {
  position: relative;
  padding-top: 104px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 246, 239, 0.98) 54%, rgba(234, 243, 229, 0.88) 100%);
}

.story-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 134px;
  z-index: 1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23fffdfa' d='M0 70C134 125 286 146 442 118C604 89 688 26 830 30C972 34 1075 116 1212 121C1307 124 1386 91 1440 64V180H0Z'/%3E%3C/svg%3E")
      center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.story-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: end;
}

.story-intro {
  max-width: 760px;
  padding: clamp(28px, 5vw, 60px) 0 clamp(82px, 9vw, 118px);
}

.story-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.story-visual img {
  position: relative;
  z-index: 2;
  width: min(438px, 96%);
  max-height: 620px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 34px rgba(59, 42, 32, 0.14));
}

.story-ground {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 40px;
  width: min(430px, 88%);
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(96, 114, 87, 0.18), rgba(143, 89, 84, 0.08) 52%, transparent 72%);
  transform: translateX(-50%);
  filter: blur(6px);
}

.story-leaf-left {
  left: clamp(-10px, 2vw, 22px);
  top: 120px;
  width: clamp(138px, 12vw, 200px);
  opacity: 0.12;
}

.story-lemon {
  right: clamp(28px, 8vw, 114px);
  top: 146px;
  width: clamp(104px, 10vw, 154px);
  opacity: 0.1;
}

.story-article-section {
  margin-top: -38px;
  padding-top: clamp(92px, 8vw, 136px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.96));
}

.story-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.story-article,
.story-cta {
  border: 1px solid rgba(232, 222, 210, 0.86);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 40px rgba(75, 58, 44, 0.07);
  backdrop-filter: blur(12px);
}

.story-article {
  padding: clamp(26px, 4vw, 50px);
}

.story-article > h2:first-child {
  margin-top: 0;
}

.story-article h2 {
  margin-top: clamp(34px, 4vw, 50px);
  font-size: var(--type-size-title);
  line-height: 1.12;
}

.story-article p {
  color: #4f463e;
  font-size: var(--type-size-body);
  line-height: 1.84;
}

.story-article p + p,
.story-article h2 + p {
  margin-top: 18px;
}

.story-article hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid rgba(214, 203, 190, 0.72);
}

.story-article ul {
  margin: 18px 0 0;
  padding-left: 24px;
  color: #4f463e;
}

.story-article li + li {
  margin-top: 10px;
}

.story-article-action {
  margin-top: 22px;
}

.story-article-action .button {
  min-width: 220px;
  justify-content: center;
}

.story-cta {
  position: sticky;
  top: 118px;
  padding: clamp(24px, 3vw, 34px);
}

.story-cta h2 {
  margin-top: 14px;
  font-size: var(--type-size-title);
  line-height: 1.12;
}

.story-cta p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.story-cta .button {
  margin-top: 24px;
}

.pain-leaf {
  left: clamp(10px, 3vw, 44px);
  top: 36px;
  width: clamp(102px, 9vw, 148px);
  opacity: 0.1;
}

.pain-leaf-right {
  right: clamp(14px, 4vw, 60px);
  bottom: 42px;
  width: clamp(84px, 7vw, 124px);
  opacity: 0.1;
}

.pain-blob {
  right: clamp(-12px, 3vw, 44px);
  top: 62px;
  width: clamp(150px, 15vw, 230px);
  opacity: 0.08;
}

.old-path-blob-left {
  left: clamp(-26px, 2vw, 12px);
  top: 112px;
  width: clamp(210px, 18vw, 290px);
  opacity: 0.09;
}

.old-path-blob-right {
  right: clamp(-10px, 3vw, 46px);
  bottom: 32px;
  width: clamp(170px, 15vw, 230px);
  opacity: 0.08;
}

.instead-blob {
  right: clamp(8px, 5vw, 76px);
  top: 78px;
  width: clamp(210px, 18vw, 300px);
  opacity: 0.09;
}

.instead-circle {
  right: clamp(62px, 9vw, 148px);
  bottom: 48px;
  width: clamp(124px, 10vw, 168px);
  opacity: 0.08;
}

.approach-route {
  right: clamp(10px, 4vw, 56px);
  top: 26px;
  width: clamp(112px, 10vw, 154px);
  opacity: 0.14;
}

.approach-leaf {
  left: clamp(-8px, 4vw, 42px);
  bottom: 16px;
  width: clamp(132px, 12vw, 184px);
  opacity: 0.13;
}

.changes-circles {
  left: clamp(14px, 4vw, 56px);
  top: 14px;
  width: clamp(160px, 18vw, 236px);
  opacity: 0.1;
}

.testimonials-lemon {
  right: clamp(18px, 5vw, 72px);
  top: 38px;
  width: clamp(92px, 8vw, 128px);
  opacity: 0.18;
}

.program-tape {
  right: clamp(12px, 5vw, 58px);
  top: 24px;
  width: clamp(168px, 16vw, 232px);
  opacity: 0.16;
  --ribbon-rotate: 12deg;
}

.program-circles {
  left: clamp(8px, 4vw, 42px);
  bottom: 18px;
  width: clamp(164px, 17vw, 228px);
  opacity: 0.1;
}

.final-leaf {
  right: clamp(10px, 5vw, 62px);
  top: 40px;
  width: clamp(138px, 13vw, 186px);
  opacity: 0.14;
}

.about-blob {
  right: clamp(18px, 6vw, 96px);
  top: 76px;
  width: clamp(240px, 22vw, 340px);
  opacity: 0.1;
}

.about-leaf {
  right: clamp(4px, 4vw, 56px);
  bottom: 84px;
  width: clamp(126px, 11vw, 182px);
  opacity: 0.09;
}

.final-route {
  right: clamp(26px, 6vw, 94px);
  top: 18px;
  width: clamp(150px, 12vw, 196px);
  opacity: 0.12;
  transform: rotate(180deg);
}

.final-circles {
  left: clamp(10px, 4vw, 56px);
  bottom: 18px;
  width: clamp(200px, 18vw, 280px);
  opacity: 0.08;
}

.two-column,
.approach-layout,
.about-layout,
.program-layout,
.faq-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

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

.two-column > .section-cta-row,
.approach-layout > .section-cta-row,
.faq-layout > .section-cta-row {
  grid-column: 1 / -1;
}

.section-heading {
  max-width: 690px;
}

.section-heading.center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.narrow p,
.approach-copy p,
.about-copy p,
.program-copy p,
.final-content p {
  margin-top: 22px;
  color: var(--muted);
  font-size: var(--type-size-body);
}

.pain-section {
  margin-top: 0;
  padding-top: clamp(122px, 10vw, 156px);
  padding-bottom: clamp(54px, 6vw, 86px);
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.94));
}

.pain-section .section-heading h2 {
  font-family: var(--font-heading);
  font-size: var(--type-size-display);
  line-height: 1.02;
  font-weight: 600;
}

.pain-section > .container + .container {
  margin-top: clamp(42px, 5vw, 62px);
}

.pain-section::before,
.instead-section::before,
.changes-section::before,
.testimonials-section::before,
.program-section::before,
.final-section::before {
  content: none;
}

.pain-section::after,
.changes-section::after,
.testimonials-section::after,
.program-section::after {
  content: none;
}

.pain-list {
  display: grid;
  gap: 18px;
  list-style: none;
}

.large-check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(232, 222, 210, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 12px 30px rgba(75, 58, 44, 0.055);
  color: #443c36;
  font-size: var(--type-size-body);
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pain-item {
  position: relative;
  padding: 8px 0 8px 34px;
  color: #443c36;
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.65;
  transition: color 200ms ease, transform 200ms ease;
}

.pain-item::before,
.check-list li::before,
.large-check-list li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 9px 9px 9px 2px;
  background: var(--sage);
  transform: rotate(-35deg);
}

.pain-item::before,
.large-check-list li::before {
  left: 22px;
  top: 29px;
}

.pain-item::before {
  left: 4px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: none;
}

.pain-item:hover {
  color: var(--sage-dark);
  transform: translateX(5px);
}

.soft-statement {
  max-width: 920px;
  margin: clamp(46px, 6vw, 76px) auto 0;
  padding: 0 clamp(10px, 3vw, 40px);
  color: #4f463e;
  font-family: var(--font-heading);
  font-size: var(--type-size-title);
  font-style: normal;
  line-height: 1.12;
  font-weight: 600;
  text-align: center;
}

.pain-section .soft-statement {
  margin-top: 0;
}

.pivot-section {
  background:
    linear-gradient(135deg, rgba(235, 243, 229, 0.54), rgba(255, 250, 244, 0.82)),
    var(--bg);
}

.pivot-section .narrow {
  text-align: center;
}

.muted-section {
  background: linear-gradient(180deg, rgba(252, 249, 243, 0.52), rgba(255, 255, 255, 0.96));
}

.leaf-sprig {
  width: 142px;
  height: 206px;
  opacity: 0.14;
  background-image: url("assets/user-decor/leaf-line.png");
}

.sprig-left {
  left: 6vw;
  top: 40px;
  transform: rotate(-10deg);
}

.sprig-right {
  right: 7vw;
  top: 26px;
  transform: rotate(12deg);
}

.sprig-pivot-right {
  right: 6vw;
  bottom: 22px;
  opacity: 0.09;
  transform: rotate(154deg);
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

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

.info-card,
.testimonial-card,
.entry-card,
.program-list,
.check-panel,
.faq-item {
  border: 1px solid rgba(232, 222, 210, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 24px rgba(75, 58, 44, 0.04);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.info-card:hover,
.testimonial-card:hover,
.entry-card:hover,
.large-check-list li:hover,
.program-list:hover,
.check-panel:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 89, 84, 0.22);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 34px rgba(75, 58, 44, 0.08);
}

.old-path-section .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(75, 58, 44, 0.08);
}

.info-card {
  min-height: 244px;
  padding: 25px;
  will-change: transform;
}

.info-card.pale {
  background: rgba(255, 250, 242, 0.9);
}

.card-grid .info-card:hover {
  transform: translateY(-4px);
}

.changes-section .info-card:hover {
  transform: translateY(-4px);
}

.card-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--sage-dark);
  font-size: var(--type-size-body);
  font-weight: 700;
}

.info-card h3 {
  margin-bottom: 14px;
}

.info-card p,
.testimonial-card p,
.entry-card p,
.program-list p,
.check-panel p,
.faq-answer p {
  color: var(--muted);
  font-size: var(--type-size-body);
}

.not-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.not-list span,
.entry-tag {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(143, 89, 84, 0.18);
  border-radius: 999px;
  color: var(--rose-dark);
  background: rgba(255, 247, 238, 0.9);
  font-size: var(--type-size-body);
  font-weight: 700;
}

.instead-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.96)),
    var(--bg);
}

.instead-section .not-list span {
  display: block;
  max-width: 520px;
  padding: 9px 0 9px 20px;
  border: 0;
  border-left: 2px solid rgba(143, 89, 84, 0.32);
  border-radius: 0;
  background: transparent;
  color: #6b5f56;
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.instead-section .check-panel {
  padding: clamp(8px, 1.5vw, 14px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.instead-section .check-panel:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.instead-section .check-list {
  gap: 0;
}

.instead-section .check-list li {
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid rgba(232, 222, 210, 0.86);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.instead-section .check-list li::before {
  top: 26px;
  left: 4px;
}

.check-panel,
.program-list {
  padding: clamp(24px, 4vw, 38px);
}

.lead {
  margin-bottom: 18px;
  color: var(--text) !important;
  font-weight: 700;
}

.instead-section .lead {
  font-family: var(--font-heading);
  font-size: var(--type-size-title);
  line-height: 1.12;
}

.check-list,
.large-check-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.check-list li,
.large-check-list li {
  position: relative;
  color: #453d36;
  font-weight: 600;
}

.check-list li {
  padding-left: 28px;
}

.check-list li::before {
  left: 0;
  top: 11px;
}

.panel-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
  font-weight: 600;
  text-align: center;
}

.instead-summary {
  display: grid;
  justify-items: center;
}

.instead-summary .panel-note {
  width: min(760px, 100%);
  margin-top: 28px;
}

.instead-summary .section-cta-row {
  justify-content: center;
  margin-top: 28px;
}

.approach-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 244, 0.74));
}

.approach-layout {
  align-items: start;
}

.approach-copy {
  align-self: start;
  position: static;
}

.accent-line {
  margin-top: 28px !important;
  color: var(--sage-dark) !important;
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
  font-weight: 600;
}

.steps-list {
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(232, 222, 210, 0.92);
}

.step span {
  color: var(--sage-dark);
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  font-weight: 700;
  line-height: 1.65;
}

.step p {
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.65;
}

.about-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 236, 0.38));
}

.about-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: start;
}

.about-layout-simple {
  grid-template-columns: minmax(0, 1fr);
}

.about-side {
  display: grid;
  gap: 22px;
  align-content: start;
  align-self: start;
  padding-top: clamp(10px, 2vw, 26px);
}

.about-lead {
  max-width: 760px;
  margin-top: 18px !important;
  color: var(--sage-dark) !important;
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
  font-weight: 600;
}

.about-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.about-visual::before {
  content: none;
}

.about-visual::after,
.final-visual::after {
  content: none;
}

.about-visual img {
  position: relative;
  z-index: 2;
  width: min(360px, 86%);
  filter: drop-shadow(0 20px 26px rgba(59, 42, 32, 0.12));
}

.about-branch,
.final-branch {
  z-index: 1;
  width: 142px;
  height: 214px;
  opacity: 0.16;
  background-image: url("assets/user-decor/leaf-line.png");
}

.about-branch {
  right: 8%;
  top: 70px;
  transform: rotate(16deg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-grid span {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(232, 222, 210, 0.86);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.78), rgba(255, 247, 238, 0.5));
  color: #453d36;
  font-size: var(--type-size-body);
  font-weight: 700;
  line-height: 1.5;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.proof-grid span:nth-child(1),
.proof-grid span:nth-child(5) {
  grid-column: span 4;
}

.proof-grid span:nth-child(2) {
  grid-column: span 2;
}

.proof-grid span:nth-child(3),
.proof-grid span:nth-child(4) {
  grid-column: span 3;
}

.proof-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 114, 87, 0.24);
  box-shadow: var(--shadow-soft);
}

.proof-pills {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 0;
  list-style: none;
}

.proof-pills li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 16px 18px 16px 44px;
  border: 1px solid rgba(228, 220, 209, 0.88);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  color: #4a413a;
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.65;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.proof-pills li:last-child {
  grid-column: auto;
  max-width: none;
  justify-self: stretch;
}

.proof-pills li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(196, 221, 180, 0.18);
  transform: translateY(-50%);
}

.proof-pills li:hover {
  transform: translateX(4px);
  border-color: rgba(143, 89, 84, 0.22);
  background: rgba(255, 253, 248, 0.9);
}

.large-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-section .two-column {
  align-items: start;
}

.audience-list {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.audience-list li {
  padding: 17px 0 17px 34px;
  border: 0;
  border-bottom: 1px solid rgba(232, 222, 210, 0.9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: var(--type-size-body);
}

.audience-list li::before {
  left: 4px;
  top: 27px;
  border-radius: 50%;
  transform: none;
}

.audience-list li:hover {
  transform: translateX(5px);
  border-color: rgba(232, 222, 210, 0.9);
  background: transparent;
  box-shadow: none;
  color: var(--sage-dark);
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 246, 238, 0.84)),
    var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.testimonial-grid-soft {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 18px) / 2));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 89, 84, 0.26) transparent;
}

.testimonial-gallery::-webkit-scrollbar {
  height: 8px;
}

.testimonial-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(143, 89, 84, 0.26);
}

.testimonial-card {
  min-height: 274px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.testimonial-card p {
  color: #433c36;
  font-size: var(--type-size-body);
}

.testimonial-card span {
  margin-top: 24px;
  color: var(--sage-dark);
  font-size: var(--type-size-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-card-soft {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-card-soft:hover {
  transform: translateY(-6px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.testimonial-bubble {
  position: relative;
  padding: 24px 24px 22px;
  border: 1px solid rgba(232, 222, 210, 0.9);
  border-radius: 24px 24px 24px 12px;
  background: linear-gradient(150deg, rgba(255, 253, 248, 0.96), rgba(248, 252, 245, 0.88));
  box-shadow: 0 16px 34px rgba(75, 58, 44, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -11px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(232, 222, 210, 0.9);
  border-bottom: 1px solid rgba(232, 222, 210, 0.9);
  background: rgba(249, 252, 246, 0.96);
  transform: rotate(45deg);
}

.testimonial-card-soft:hover .testimonial-bubble {
  transform: translateY(-3px);
  border-color: rgba(143, 89, 84, 0.18);
  box-shadow: 0 22px 40px rgba(75, 58, 44, 0.1);
}

.testimonial-shot {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(232, 222, 210, 0.88);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(245, 250, 241, 0.92));
  box-shadow: 0 14px 28px rgba(75, 58, 44, 0.08);
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-shot:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 89, 84, 0.18);
  box-shadow: 0 22px 40px rgba(75, 58, 44, 0.11);
}

.testimonial-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  background: #f6f3ee;
}

.start-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.84));
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(34px, 5vw, 58px);
}

.lead-magnet-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(28px, 4.4vw, 42px);
  border: 1px solid rgba(223, 232, 216, 0.92);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at top right, rgba(214, 234, 199, 0.34), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(245, 250, 241, 0.88));
  box-shadow: 0 18px 42px rgba(75, 58, 44, 0.08);
  overflow: hidden;
}

.lead-magnet-panel::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 221, 180, 0.34), transparent 72%);
  pointer-events: none;
}

.lead-magnet-copy {
  position: relative;
  z-index: 1;
}

.lead-magnet-copy h3 {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
}

.lead-magnet-copy p {
  max-width: 560px;
  margin-top: 16px;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(226, 235, 220, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(75, 58, 44, 0.055);
}

.lead-form-field {
  display: grid;
  gap: 10px;
}

.lead-form-label {
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  font-weight: 700;
  line-height: 1.45;
  color: #5b554d;
}

.lead-form-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(210, 223, 200, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  font-weight: 500;
  line-height: 1;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form-input::placeholder {
  font-family: var(--font-body);
  color: rgba(88, 80, 72, 0.52);
}

.lead-form-input:focus {
  outline: none;
  border-color: rgba(132, 161, 111, 0.82);
  box-shadow: 0 0 0 4px rgba(196, 221, 180, 0.22);
  background: #fff;
}

.lead-form-button {
  width: 100%;
  justify-content: center;
}

.lead-form-button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, #b48d88, #a7807b);
  border-color: #a7807b;
  box-shadow: none;
}

.lead-form-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 2px;
  color: #74685e;
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.lead-form-checkbox {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #2f2924;
}

.lead-form-consent a {
  color: #6b514b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lead-form-consent a:hover {
  color: #2f2924;
}

.lead-form-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.lead-form-note a {
  color: var(--sage-dark);
  font-weight: 700;
}

.lead-form-note a:hover {
  color: #6a4f4a;
}

.lead-form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.lead-form-status.is-info {
  background: rgba(248, 240, 226, 0.8);
  color: #6b5949;
}

.lead-form-status.is-success {
  background: rgba(232, 244, 225, 0.9);
  color: #426038;
}

.lead-form-status.is-error {
  background: rgba(252, 236, 232, 0.9);
  color: #8b4d47;
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(620px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(223, 232, 216, 0.96);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 20px 48px rgba(75, 58, 44, 0.16);
  backdrop-filter: blur(14px);
}

.cookie-notice p {
  margin: 0;
  color: #5f554d;
  font-family: var(--font-body);
  font-size: var(--type-size-small);
  line-height: 1.55;
}

.cookie-notice a {
  color: var(--sage-dark);
  font-weight: 700;
}

.cookie-notice a:hover {
  color: #6a4f4a;
}

.cookie-notice-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #2f2924;
  border-radius: 999px;
  background: #2f2924;
  color: #fffaf1;
  font-family: var(--font-body);
  font-size: var(--type-size-small);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cookie-notice-button:hover {
  transform: translateY(-1px);
  background: #44372f;
  box-shadow: 0 10px 20px rgba(75, 58, 44, 0.16);
}

.changes-section .section-heading {
  margin-bottom: 8px;
}

.changes-section .card-grid {
  margin-top: clamp(42px, 5vw, 70px);
}

body.has-modal {
  overflow: hidden;
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.exit-modal[hidden] {
  display: none;
}

.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 42, 36, 0.38);
  backdrop-filter: blur(8px);
}

.exit-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: clamp(28px, 4.6vw, 40px);
  border: 1px solid rgba(230, 235, 224, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(214, 234, 199, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(246, 250, 242, 0.94));
  box-shadow: 0 24px 60px rgba(51, 42, 36, 0.16);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.exit-modal.is-visible .exit-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.exit-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(75, 58, 44, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.exit-modal-close::before,
.exit-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #5a5148;
}

.exit-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.exit-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.exit-modal-close:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(75, 58, 44, 0.12);
}

.exit-modal-card h2 {
  margin-top: 10px;
}

.exit-modal-card p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 16px;
  margin-bottom: 0;
}

.exit-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.exit-modal-actions .button {
  min-width: 220px;
  justify-content: center;
}

.entry-card {
  padding: clamp(26px, 4vw, 42px);
}

.entry-card h3 {
  max-width: 520px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
}

.entry-card p {
  max-width: 560px;
  margin-top: 16px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.entry-tag {
  padding: 8px 13px;
  font-family: var(--font-body);
  font-size: var(--type-size-body);
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.program-section {
  background: linear-gradient(135deg, rgba(238, 246, 233, 0.68), rgba(255, 249, 244, 0.96));
}

.program-copy .button {
  margin-top: 30px;
}

.faq-layout {
  align-items: start;
}

.faq-layout > .section-heading {
  padding-top: clamp(48px, 5vw, 72px);
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: var(--type-size-body);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(223, 231, 216, 0.5);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-dark);
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
}

.faq-question[aria-expanded="true"] + .faq-answer p {
  padding-bottom: 22px;
}

.final-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 138px) 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 236, 0.58));
}

.final-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  min-height: 560px;
}

.final-layout-center {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}

.final-content {
  max-width: 760px;
  padding-bottom: clamp(58px, 7vw, 104px);
}

.final-content-center {
  max-width: 840px;
  margin-inline: auto;
  padding-bottom: 0;
  text-align: center;
}

.final-content h2 {
  max-width: 760px;
}

.final-content p {
  max-width: 650px;
}

.final-content .button {
  margin-top: 32px;
}

.final-content-center h2,
.final-content-center p {
  margin-inline: auto;
}

.final-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.final-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: min(430px, 92%);
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(96, 114, 87, 0.18), rgba(143, 89, 84, 0.08) 52%, transparent 74%);
  transform: translateX(-50%);
  filter: blur(5px);
}

.final-visual::after {
  background: linear-gradient(180deg, rgba(242, 247, 238, 0), rgba(251, 248, 241, 0.74) 74%);
}

.final-visual img {
  position: relative;
  z-index: 2;
  width: min(400px, 100%);
  max-height: 540px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 28px rgba(59, 42, 32, 0.15));
}

.final-branch {
  right: 4%;
  top: 58px;
  transform: rotate(12deg);
}

.requisites-section {
  padding-top: 0;
  padding-bottom: 48px;
}

.requisites-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(143, 89, 84, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.92)),
    var(--surface);
  box-shadow: 0 24px 54px rgba(75, 58, 44, 0.08);
}

.requisites-card .section-heading {
  margin-bottom: 12px;
}

.requisites-card .section-heading h2 {
  margin-bottom: 0;
}

.requisites-list {
  display: grid;
}

.requisite-item + .requisite-item {
  border-top: 1px solid var(--line);
}

.requisite-item {
  padding: 20px 0;
}

.requisite-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.4;
}

.requisite-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.requisite-value {
  margin: 0;
  color: var(--text);
  font-size: var(--type-size-body);
  font-weight: 600;
  line-height: 1.55;
  word-break: break-word;
}

.copy-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  box-shadow: 0 10px 22px rgba(75, 58, 44, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  color: var(--rose-dark);
  border-color: rgba(143, 89, 84, 0.24);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 14px 24px rgba(75, 58, 44, 0.12);
  transform: translateY(-1px);
}

.copy-button:focus-visible {
  outline: 2px solid rgba(143, 89, 84, 0.2);
  outline-offset: 2px;
}

.copy-button.is-copied {
  color: var(--sage-dark);
  border-color: rgba(96, 114, 87, 0.28);
  background: rgba(239, 246, 233, 0.96);
}

.copy-button-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.copy-button-icon::before,
.copy-button-icon::after {
  content: "";
  position: absolute;
  border: 1.8px solid currentColor;
  border-radius: 4px;
  transition: inherit;
}

.copy-button-icon::before {
  inset: 5px 1px 1px 5px;
  background: transparent;
}

.copy-button-icon::after {
  inset: 1px 5px 5px 1px;
  background: rgba(255, 255, 255, 0.96);
}

body.thanks-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 246, 240, 1) 48%, rgba(255, 255, 255, 1)),
    var(--bg);
}

body.thanks-page::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(232, 242, 224, 0.7), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(246, 236, 228, 0.62), transparent 26%),
    radial-gradient(circle at 74% 68%, rgba(214, 233, 204, 0.34), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(248, 252, 245, 0.62), transparent 18%);
}

.thanks-main {
  overflow: hidden;
}

.thanks-section {
  position: relative;
  min-height: calc(100vh - 150px);
  padding: 148px 0 92px;
}

.thanks-leaf {
  left: clamp(-8px, 2vw, 28px);
  top: 154px;
  width: clamp(132px, 12vw, 188px);
  opacity: 0.1;
}

.thanks-lemon {
  right: clamp(20px, 6vw, 96px);
  top: 186px;
  width: clamp(108px, 10vw, 156px);
  opacity: 0.08;
}

.thanks-blob {
  right: clamp(56px, 10vw, 164px);
  bottom: 110px;
  width: clamp(170px, 14vw, 240px);
  opacity: 0.08;
}

.thanks-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(223, 232, 216, 0.92);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(214, 234, 199, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(246, 250, 242, 0.94));
  box-shadow: 0 24px 56px rgba(75, 58, 44, 0.1);
  text-align: center;
}

.thanks-card h1 {
  margin-top: 14px;
  margin-bottom: 0;
}

.thanks-card p {
  max-width: 600px;
  margin: 18px auto 0;
  color: #5f554d;
}

.thanks-subtitle {
  max-width: 560px;
  margin-top: 18px;
  color: var(--sage-dark);
  font-family: var(--font-heading);
  font-size: var(--type-size-title);
  font-weight: 600;
  line-height: 1.12;
}

.thanks-copy {
  max-width: 560px;
  margin: 22px auto 0;
}

.thanks-list {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  color: #5f554d;
}

.thanks-list li {
  position: relative;
  padding-left: 18px;
}

.thanks-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.thanks-actions .button {
  min-width: 280px;
}

.thanks-note {
  font-size: var(--type-size-body);
  line-height: 1.65;
}

.thanks-chat-block {
  max-width: 560px;
  margin: 34px auto 0;
  padding: 26px 24px;
  border: 1px solid rgba(228, 220, 209, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  text-align: left;
  box-shadow: 0 14px 28px rgba(75, 58, 44, 0.06);
}

.thanks-chat-block p {
  margin: 0;
}

.thanks-chat-block .thanks-list {
  max-width: none;
  margin: 18px 0 0;
}

body.policy-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 246, 240, 1) 48%, rgba(255, 255, 255, 1)),
    var(--bg);
}

body.policy-page::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 242, 224, 0.72), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(246, 236, 228, 0.6), transparent 24%),
    radial-gradient(circle at 80% 72%, rgba(214, 233, 204, 0.28), transparent 20%);
}

.policy-main {
  overflow: hidden;
}

.policy-section {
  position: relative;
  min-height: calc(100vh - 150px);
  padding: 148px 0 92px;
}

.policy-leaf {
  left: clamp(-6px, 2vw, 28px);
  top: 160px;
  width: clamp(128px, 11vw, 184px);
  opacity: 0.1;
}

.policy-blob {
  right: clamp(16px, 5vw, 86px);
  top: 190px;
  width: clamp(126px, 11vw, 176px);
  opacity: 0.08;
}

.policy-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(223, 232, 216, 0.92);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(214, 234, 199, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(246, 250, 242, 0.94));
  box-shadow: 0 24px 56px rgba(75, 58, 44, 0.1);
}

.policy-card h1 {
  margin-top: 14px;
  margin-bottom: 0;
}

.policy-card h2 {
  margin: 32px 0 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--sage-dark);
}

.policy-card p,
.policy-card li {
  color: #5f554d;
  font-size: var(--type-size-body);
  line-height: 1.75;
}

.policy-card a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-card a:hover {
  color: #6a4f4a;
}

.policy-card p + p,
.policy-card ul + p,
.policy-card p + ul {
  margin-top: 22px;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 18px;
}

.policy-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}

.policy-signature {
  margin-top: 32px;
  color: var(--sage-dark);
  font-weight: 700;
}

.footer {
  padding: 28px 0 32px;
  background: #2b2520;
  color: rgba(255, 250, 242, 0.78);
  font-size: var(--type-size-body);
}

.footer-content {
  display: grid;
  gap: 18px;
}

.footer-inner {
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
}

.footer-requisites {
  display: grid;
  gap: 6px;
  max-width: 860px;
  color: rgba(255, 250, 242, 0.62);
  font-size: var(--type-size-body);
  line-height: 1.6;
}

.footer-requisites p {
  margin: 0;
}

.footer-requisites-title {
  color: rgba(255, 250, 242, 0.8);
  font-size: var(--type-size-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  font-weight: 700;
}

.float-soft {
  animation: decorFloatSoft 12s ease-in-out infinite;
}

.float-gentle {
  animation: decorFloatGentle 16s ease-in-out infinite;
}

.float-slow {
  animation: decorFloatSlow 18s ease-in-out infinite;
}

.float-sway {
  animation: decorSway 15s ease-in-out infinite;
}

.float-ribbon {
  animation: tapeDrift 19s ease-in-out infinite;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.instant-reveal.has-js .reveal {
  transition: none !important;
}

.card-grid .reveal:nth-child(2),
.testimonial-grid .reveal:nth-child(2),
.entry-grid .reveal:nth-child(2),
.pain-list .reveal:nth-child(2) {
  --reveal-delay: 80ms;
}

.card-grid .reveal:nth-child(3),
.testimonial-grid .reveal:nth-child(3) {
  --reveal-delay: 150ms;
}

.card-grid .reveal:nth-child(4),
.testimonial-grid .reveal:nth-child(4) {
  --reveal-delay: 220ms;
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

@keyframes decorFloatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes decorFloatGentle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(3deg);
  }
}

@keyframes decorFloatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(-2deg);
  }
}

@keyframes decorSway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(6px, -8px, 0) rotate(4deg);
  }
}

@keyframes tapeDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--ribbon-rotate, 10deg));
  }

  50% {
    transform: translate3d(4px, -8px, 0) rotate(calc(var(--ribbon-rotate, 10deg) + 4deg));
  }
}

@keyframes branchSway {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(8px) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .card-grid.four,
  .testimonial-grid,
  .testimonial-grid-soft {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card,
  .testimonial-card {
    min-height: auto;
  }

  .approach-copy {
    position: static;
  }

  .hero-tape,
  .program-tape {
    width: 156px;
  }
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand social"
      "nav nav";
    row-gap: 8px;
    column-gap: 14px;
    padding: 8px clamp(16px, 3vw, 28px) 10px;
  }

  .brand {
    grid-area: brand;
  }

  .brand-name {
    font-size: clamp(22px, 1.8vw, 26px);
  }

  .brand-subtitle {
    font-size: 11.5px;
  }

  .nav {
    grid-area: nav;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 2px;
    font-size: 13px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .social-links {
    grid-area: social;
    justify-content: end;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(220px, 300px) auto;
    grid-template-areas: none;
  }

  .brand,
  .nav,
  .social-links {
    grid-area: auto;
  }

  .nav,
  .story-nav {
    display: none;
  }

  .social-links {
    justify-content: end;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    align-items: start;
    padding-top: 94px;
  }

  .hero::after {
    height: 128px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-content {
    padding: 38px 0 0;
  }

  .section-heading {
    max-width: 100%;
  }

  .entry-grid,
  .results-grid,
  .proofs-gallery,
  .faq-list {
    gap: 14px;
  }

  .lead-magnet-panel,
  .check-panel,
  .program-list {
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
  }

  .lead-form,
  .result-card,
  .info-card,
  .entry-card,
  .faq-item {
    border-radius: 20px;
  }

  .lead-form {
    padding: 20px;
  }

  .lead-magnet-panel::after {
    right: -28px;
    bottom: -34px;
    width: 132px;
    height: 132px;
    opacity: 0.7;
  }

  .hero-leaf-left {
    top: 144px;
    width: 138px;
  }

  .hero-leaf-right {
    width: 132px;
  }

  .hero-lemon {
    right: 74px;
    top: 168px;
    width: 92px;
  }

  .hero-tape {
    right: 18px;
    top: 198px;
    width: 150px;
  }

  .hero-route {
    left: auto;
    right: 10px;
    bottom: 18px;
    width: 94px;
  }

  .hero-circles {
    right: 8px;
    bottom: 10px;
    width: 176px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: -34px;
  }

  .hero-visual img {
    width: min(468px, 92vw);
    margin-bottom: 10px;
  }

  .hero-fact {
    right: clamp(8px, 4vw, 20px);
    left: auto;
    bottom: 104px;
  }

  .story-hero {
    padding-top: 98px;
  }

  .story-hero-layout,
  .story-article-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-intro {
    padding: 30px 0 20px;
  }

  .story-visual {
    min-height: 420px;
    margin-top: -14px;
  }

  .story-visual img {
    width: min(390px, 92vw);
  }

  .story-cta {
    position: static;
  }

  .results-note {
    margin-top: 24px;
    text-align: left;
  }

  .faq-layout > .section-heading {
    padding-top: 0;
  }

  .faq-layout {
    gap: 24px;
  }

  .pain-leaf {
    left: -18px;
    top: 16px;
    width: 110px;
  }

  .pain-route {
    right: 10px;
    width: 92px;
  }

  .path-citrus {
    left: auto;
    right: 12px;
    bottom: 20px;
    width: 88px;
  }

  .approach-route {
    right: 10px;
    top: 18px;
    width: 104px;
  }

  .approach-leaf {
    left: auto;
    right: 8px;
    bottom: 16px;
    width: 118px;
  }

  .changes-circles,
  .program-circles,
  .testimonials-lemon,
  .final-leaf {
    width: 120px;
    opacity: 0.08;
  }

  .two-column,
  .approach-layout,
  .about-layout,
  .program-layout,
  .faq-layout,
  .final-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .instead-summary {
    display: block;
  }

  .instead-summary .section-cta-row {
    margin-top: 28px;
  }

  .section-heading.center {
    text-align: left;
  }

  .about-visual {
    min-height: 420px;
  }

  .final-layout {
    min-height: auto;
  }

  .final-content {
    padding-bottom: 24px;
  }

  .final-visual {
    min-height: 420px;
  }

  .leaf-sprig,
  .about-branch,
  .final-branch {
    width: 120px;
    height: 182px;
    opacity: 0.1;
  }

  .large-check-list,
  .entry-grid,
  .testimonial-grid-soft {
    grid-template-columns: 1fr;
  }

  .testimonial-gallery {
    grid-auto-columns: minmax(280px, 72%);
  }

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

  .proof-pills {
    gap: 12px;
  }

  .proof-pills li {
    padding: 18px 18px 18px 42px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 10px;
    padding: 12px 14px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-subtitle {
    max-width: 360px;
    font-size: 11px;
  }

  .social-links {
    justify-content: start;
  }

  .social-links a {
    min-width: 38px;
    height: 32px;
    font-size: 11px;
  }

  .hero-actions {
    gap: 12px;
  }

  .testimonial-gallery {
    grid-auto-columns: 84%;
  }

  .lead-magnet-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .lead-form {
    padding: 18px;
    border-radius: 22px;
  }

  .lead-form-consent {
  }

  .lead-form-input {
    min-height: 54px;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-notice-button {
    width: 100%;
  }

  .section-cta-row .button {
    width: 100%;
    min-width: 0;
  }

  .exit-modal {
    padding: 18px;
  }

  .exit-modal-card {
    padding: 24px 18px 20px;
    border-radius: 26px;
  }

  .exit-modal-actions {
    flex-direction: column;
  }

  .exit-modal-actions .button {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 56px 0;
  }

  .pain-section::before,
  .instead-section::before,
  .changes-section::before,
  .testimonials-section::before,
  .program-section::before,
  .final-section::before {
    top: -58px;
    height: 138px;
    opacity: 0.3;
  }

  .pain-section::after,
  .changes-section::after,
  .testimonials-section::after,
  .program-section::after {
    bottom: -8px;
    height: 120px;
    opacity: 0.2;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero::after {
    height: 96px;
  }

  .leaf-sprig,
  .about-branch,
  .final-branch,
  .botanical-one,
  .hero-leaf-right,
  .hero-tape,
  .hero-route,
  .approach-route,
  .program-tape,
  .program-circles,
  .final-leaf,
  .pain-leaf-right,
  .pain-blob,
  .old-path-blob-left,
  .old-path-blob-right,
  .instead-blob,
  .instead-circle,
  .about-blob,
  .about-leaf,
  .final-route,
  .final-circles,
  .results-blob-left,
  .results-blob-right {
    display: none;
  }

  .hero-leaf-left {
    left: -28px;
    top: 132px;
    width: 96px;
    opacity: 0.12;
  }

  .hero-lemon {
    right: 12px;
    top: 182px;
    width: 72px;
    opacity: 0.14;
  }

  .hero-circles {
    right: -26px;
    bottom: 58px;
    width: 136px;
    opacity: 0.08;
  }

  .pain-leaf {
    left: -34px;
    top: 10px;
    width: 82px;
    opacity: 0.08;
  }

  .approach-leaf,
  .changes-circles,
  .testimonials-lemon {
    width: 88px;
    opacity: 0.07;
  }

  .approach-leaf {
    right: -16px;
    bottom: 8px;
  }

  .hero-subtitle {
    margin-top: 20px;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    min-height: 52px;
    padding-inline: 16px;
  }

  .hero-visual {
    min-height: 340px;
    margin-top: -14px;
  }

  .hero-visual img {
    width: min(344px, 94vw);
    margin-bottom: 4px;
  }

  .portrait-ground {
    bottom: 42px;
  }

  .hero-fact {
    right: 6px;
    left: auto;
    bottom: 86px;
    max-width: 152px;
    padding: 11px 12px;
  }

  .story-hero {
    padding-top: 110px;
  }

  .story-hero::after {
    height: 92px;
  }

  .story-leaf-left {
    left: -26px;
    top: 136px;
    width: 92px;
    opacity: 0.12;
  }

  .story-lemon {
    right: 10px;
    top: 188px;
    width: 70px;
    opacity: 0.14;
  }

  .story-visual {
    min-height: 330px;
  }

  .story-visual img {
    width: min(320px, 90vw);
  }

  .story-ground {
    bottom: 28px;
    height: 84px;
  }

  .story-article,
  .story-cta {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .botanical {
    opacity: 0.18;
  }

  .card-grid.four,
  .testimonial-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .testimonial-card {
    padding: 22px;
  }

  .step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .about-visual {
    min-height: 430px;
  }

  .about-visual::before {
    width: 330px;
    height: 330px;
    bottom: 42px;
  }

  .about-visual img {
    width: min(340px, 96vw);
  }

  .faq-question {
    padding: 20px 18px;
  }

  .faq-answer p {
    padding-inline: 18px;
  }

  .final-section {
    padding-top: 58px;
  }

  .final-visual {
    min-height: 380px;
  }

  .final-visual img {
    width: min(330px, 95vw);
  }

  .proof-pills {
    grid-template-columns: 1fr;
  }

  .about-side {
    padding-top: 0;
  }

  .requisites-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .thanks-section {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 70px;
  }

  .thanks-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .thanks-chat-block,
  .policy-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .thanks-actions .button {
    width: 100%;
  }

  .policy-section {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 70px;
  }

  .requisite-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .copy-button {
    justify-self: start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

}

h1,
h2,
.thanks-card h1,
.policy-card h1 {
  font-family: var(--font-heading);
  font-size: var(--type-size-display);
  line-height: 1.02;
}

h3,
.brand-name,
.soft-statement,
.hero-fact span,
.panel-note,
.accent-line,
.about-lead,
.thanks-subtitle,
.story-article h2,
.story-cta h2,
.exit-modal-card h2,
.lead {
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
}

body,
.brand-subtitle,
.nav,
.story-nav,
.eyebrow,
.hero-subtitle,
.section-heading p:not(.eyebrow),
.narrow p,
.approach-copy p,
.about-copy p,
.program-copy p,
.final-content p,
.info-card p,
.testimonial-card p,
.testimonial-card span,
.entry-card p,
.program-list p,
.check-panel p,
.check-list li,
.proof-grid span,
.proof-pills li,
.faq-question,
.faq-answer p,
.not-list span,
.entry-tag,
.lead-form-label,
.lead-form-note,
.lead-form-status,
.lead-form-consent,
.requisite-label,
.requisite-value,
.footer,
.footer-requisites,
.footer-requisites-title,
.thanks-card p,
.thanks-list li,
.thanks-note,
.thanks-chat-block p,
.policy-card p,
.policy-card li,
.pain-item,
.large-check-list li,
.audience-list li,
.button,
.under-note,
.hero-fact p,
.card-number {
  font-family: var(--font-body);
  font-size: var(--type-size-body);
}

.brand-subtitle,
.eyebrow,
.footer-requisites-title,
.testimonial-card span,
.entry-tag,
.not-list span,
.hero-fact p,
.under-note,
.card-number {
  line-height: 1.45;
}

.section-heading p:not(.eyebrow),
.narrow p,
.approach-copy p,
.about-copy p,
.program-copy p,
.final-content p,
.hero-subtitle,
.info-card p,
.testimonial-card p,
.entry-card p,
.program-list p,
.check-panel p,
.check-list li,
.proof-grid span,
.proof-pills li,
.faq-question,
.faq-answer p,
.policy-card p,
.policy-card li,
.thanks-card p,
.thanks-list li,
.thanks-chat-block p,
.lead-form-note,
.lead-form-consent,
.requisite-value,
.pain-item,
.large-check-list li,
.audience-list li {
  line-height: 1.65;
}

.about-copy .about-lead,
.approach-copy .accent-line,
.check-panel .lead,
.program-list .lead,
.thanks-card .thanks-subtitle {
  font-family: var(--font-heading);
  font-size: var(--type-size-title) !important;
  line-height: 1.12;
}

/* ── БЛОК ПРУФОВ / РЕЗУЛЬТАТЫ ───────────────────────────── */
.results-strip {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 242, 0.82) 100%);
  border-top: 1px solid rgba(223, 232, 216, 0.44);
  border-bottom: 1px solid rgba(223, 232, 216, 0.44);
}

.results-blob-left {
  left: clamp(-24px, 2vw, 12px);
  top: 42px;
  width: clamp(190px, 18vw, 270px);
  opacity: 0.09;
}

.results-blob-right {
  right: clamp(-10px, 2vw, 32px);
  bottom: 36px;
  width: clamp(200px, 18vw, 280px);
  opacity: 0.08;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(28px, 4vw, 48px);
}

.result-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(223, 232, 216, 0.72);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 24px);
  text-align: center;
  box-shadow: 0 10px 24px rgba(91, 104, 82, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(91, 104, 82, 0.08);
}

.result-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--rose-dark, #8f5954);
  line-height: 1;
  margin-bottom: 8px;
}

.result-name {
  font-size: var(--type-size-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sage, #5b6852);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.result-text {
  font-size: var(--type-size-body);
  color: var(--text-muted, #6b7280);
  line-height: 1.65;
  margin: 0;
}

.results-note {
  margin-top: clamp(20px, 3vw, 32px);
  font-size: var(--type-size-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sage, #5b6852);
  text-transform: uppercase;
}

.results-note.center {
  text-align: center;
}

@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ГАЛЕРЕЯ СКРИНОВ / ПРУФЫ ────────────────────────────── */
.proofs-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(28px, 4vw, 44px);
}

.proof-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(91, 104, 82, 0.06);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(223, 232, 216, 0.72);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.proof-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(91, 104, 82, 0.09);
}

.proof-shot img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.proof-shot--before-after img {
  object-position: center;
  height: 420px;
}

.proof-shot figcaption {
  padding: 10px 14px;
  font-size: var(--type-size-body);
  font-weight: 600;
  color: var(--sage, #5b6852);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .proofs-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-shot img {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .proofs-gallery {
    grid-template-columns: 1fr;
  }
  .proof-shot img {
    height: 340px;
  }

  .footer-content {
    gap: 14px;
  }

  .footer-inner {
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── КАРТИНКИ В СТАТЬЕ (story.html) ────────────────────── */
.story-proof-image {
  margin: clamp(28px, 4vw, 48px) 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(91,104,82,0.12);
  border: 1px solid rgba(223,232,216,0.7);
  background: #fff;
}

.story-proof-image img {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: contain;
  background: #f9f7f2;
}

.story-proof-image--wide img {
  max-height: 700px;
  object-fit: cover;
  object-position: top;
}

.story-proof-image figcaption {
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage, #5b6852);
  text-align: center;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(223,232,216,0.6);
}

.story-proofs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin: clamp(28px, 4vw, 48px) 0;
}

.story-proofs-row .story-proof-image {
  margin: 0;
}

.story-proofs-row .story-proof-image img {
  max-height: 420px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 700px) {
  .story-proofs-row {
    grid-template-columns: 1fr;
  }
  .story-proofs-row .story-proof-image img {
    max-height: 380px;
  }
}
