:root {
  --page: #f2f6ef;
  --surface: #ffffff;
  --surface-soft: #eaf1e8;
  --surface-strong: #dbe9df;
  --ink: #12231d;
  --muted: #607069;
  --line: #d9e2d9;
  --line-strong: #bac9bf;
  --green: #1f7359;
  --green-dark: #155440;
  --green-soft: #dceee3;
  --green-pale: #edf7f0;
  --danger: #a7443e;
  --white: #ffffff;
  --shell: 1216px;
  --gutter: clamp(20px, 4vw, 48px);
  --shadow-screen: 0 32px 80px rgba(18, 35, 29, 0.14), 0 2px 8px rgba(18, 35, 29, 0.08);
  --radius-screen: 28px;
  --radius-card: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

figure,
p,
h1,
h2,
h3,
ul,
ol,
dl {
  margin-top: 0;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #f3b751;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 246, 239, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-name strong {
  font-weight: 800;
}

.brand-name span {
  color: var(--green);
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: #394a43;
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 240ms var(--ease-out, ease);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  background: transparent;
}

.nav-toggle i {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: var(--surface);
  border-color: #8fa499;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-full {
  width: 100%;
}

.button-on-dark {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-on-dark:hover {
  background: var(--green-soft);
  border-color: var(--green-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 17px;
  height: 2px;
  flex: none;
  background: currentColor;
}

.light-eyebrow {
  color: #a8d6bf;
}

.hero {
  overflow: hidden;
  padding: clamp(58px, 6.5vw, 96px) 0 72px;
  background: var(--page);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
}

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

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5.4vw, 76px);
  font-weight: 780;
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #43554d;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 13px;
}

.telegram-entry-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -7px 0 18px;
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.telegram-entry-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-note {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof {
  max-width: 580px;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.hero-proof span {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 16px;
  color: #46574f;
  font-size: 12px;
  line-height: 1.4;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span + span {
  border-left: 1px solid var(--line);
}

.hero-proof i {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.hero-product {
  width: min(100%, 398px);
  margin: 0 auto;
}

.hero-screen-shell {
  position: relative;
  height: clamp(630px, 58vw, 736px);
  overflow: hidden;
  background: #f4f7f2;
  border: 1px solid #cad6cc;
  border-radius: var(--radius-screen);
  box-shadow: var(--shadow-screen);
}

.hero-screen-shell img {
  width: 100%;
  height: auto;
}

.family-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.25;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(84px, 8.2vw, 124px) 0;
}

.section-copy h2,
.section-heading h2,
.pricing-copy h2,
.faq-intro h2,
.final-card h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.pricing-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.problem-section {
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line);
  color: #31433b;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 850;
}

.product-evidence {
  width: min(100%, 370px);
  margin: 0 auto;
}

.product-screen-crop {
  height: 640px;
  overflow: hidden;
  background: #f4f7f2;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-screen);
  box-shadow: var(--shadow-screen);
}

.product-screen-crop img {
  width: 100%;
  height: auto;
}

.family-visual figcaption strong {
  color: var(--ink);
}

.demo-section {
  color: var(--white);
  background: #102f25;
}

.demo-section .center-heading {
  max-width: 780px;
  margin: 0 auto 62px;
  text-align: center;
}

.demo-section .eyebrow {
  justify-content: center;
  color: #99d0b5;
}

.demo-section .section-heading h2 {
  color: var(--white);
}

.demo-section .section-heading > p:not(.eyebrow) {
  color: #b8c8c0;
}

.product-tour {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(300px, 0.82fr) minmax(240px, 0.76fr);
  align-items: center;
  gap: clamp(38px, 5vw, 74px);
}

.tour-rail {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-tab {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 23px 0;
  color: #8fa49a;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  cursor: pointer;
}

.tour-tab > span {
  grid-row: 1 / 3;
  color: #809c90;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.tour-tab strong {
  font-size: 20px;
  line-height: 1.2;
}

.tour-tab small {
  font-size: 12px;
}

.tour-tab.is-active {
  color: var(--white);
}

.tour-tab.is-active > span {
  color: #a9dfc3;
}

.tour-stage {
  margin: 0;
}

.tour-screen {
  height: 640px;
  overflow: hidden;
  background: #f4f7f2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-screen);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.28);
}

.tour-screen img {
  width: 100%;
  height: auto;
}


.tour-copy {
  align-self: center;
}

.tour-step {
  margin-bottom: 18px;
  color: #9bd0b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tour-copy > p:not(.tour-step):not(.demo-message) {
  margin-bottom: 28px;
  color: #bdcbc4;
  font-size: 16px;
  line-height: 1.7;
}

.tour-next {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #8ebba6;
  font-weight: 760;
  cursor: pointer;
}

.tour-next span {
  font-size: 20px;
}

.demo-message {
  max-width: 280px;
  margin: 22px 0 0;
  color: #8fa49a;
  font-size: 12px;
  line-height: 1.55;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 62px;
}

.demo-section .section-cta span {
  color: #9fb1a8;
  font-size: 13px;
}

.outcomes-section {
  background: #fafbf8;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 62px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.outcome-card {
  position: relative;
  grid-column: span 6;
  min-width: 0;
  min-height: 720px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 48px 48px 0;
  background: #f4efe5;
  border: 1px solid var(--line);
  border-radius: 32px;
}

.outcome-large {
  grid-column: 1 / -1;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding: 64px 64px 0;
}

.outcome-card--status {
  color: var(--white);
  background: var(--green-dark);
  border-color: #234f40;
}

.outcome-card--analytics {
  background: #f4efe5;
}

.outcome-card--money {
  background: #dfede4;
}

.outcome-copy {
  position: relative;
  z-index: 2;
}

.outcome-index {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  color: var(--green-dark);
  border: 1px solid rgba(18, 35, 29, 0.2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.outcome-card--status .outcome-index {
  color: #c5ead6;
  border-color: rgba(197, 234, 214, 0.42);
}

.card-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-card h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.038em;
}

.outcome-copy > p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.outcome-card--status .card-kicker,
.outcome-card--status .outcome-copy > p {
  color: #c5d8cf;
}

.outcome-card--analytics .outcome-copy > p,
.outcome-card--money .outcome-copy > p {
  color: #53645c;
}

.outcome-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  color: #e9f4ee;
  list-style: none;
  font-size: 13px;
  font-weight: 750;
}

.outcome-facts li {
  padding: 0 16px;
}

.outcome-facts li:first-child {
  padding-left: 0;
}

.outcome-facts li + li {
  border-left: 1px solid rgba(233, 244, 238, 0.28);
}

.outcome-screen {
  position: relative;
  z-index: 1;
  width: min(100%, 450px);
  height: 500px;
  flex: 0 0 auto;
  align-self: center;
  margin: auto auto -78px;
  overflow: hidden;
  background: #f4f7f2;
  border: 1px solid rgba(18, 35, 29, 0.14);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(18, 35, 29, 0.18), 0 2px 8px rgba(18, 35, 29, 0.08);
}

.outcome-screen-wide {
  width: min(100%, 470px);
  height: 590px;
  margin: 0 auto -92px;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 80px rgba(4, 20, 15, 0.34), 0 2px 8px rgba(4, 20, 15, 0.18);
}

.outcome-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.outcome-card--analytics::after,
.outcome-card--money::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 150px;
  width: 280px;
  height: 1px;
  background: rgba(18, 35, 29, 0.13);
  transform: rotate(-28deg);
  transform-origin: right center;
}

.outcome-screen figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.features-section {
  background: var(--surface-soft);
}

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

.center-heading .eyebrow {
  justify-content: center;
}

.compact-heading {
  max-width: 790px;
}

.feature-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
}

.feature-group {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 25px;
  padding: 42px 44px 46px 0;
  border-bottom: 1px solid var(--line-strong);
}

.feature-group:nth-child(odd) {
  border-right: 1px solid var(--line-strong);
}

.feature-group:nth-child(even) {
  padding-left: 44px;
}

.feature-group-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--green);
  background: transparent;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}

.feature-group h3 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #45574f;
  list-style: none;
}

.feature-group li {
  position: relative;
  padding-left: 17px;
  font-size: 14px;
}

.feature-group li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: #7f968a;
}

.family-section {
  background: var(--surface);
}

.family-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(68px, 9vw, 136px);
}

.family-visual {
  width: min(100%, 390px);
  margin: 0 auto;
}

.family-screen {
  height: 650px;
  overflow: hidden;
  background: #f4f7f2;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-screen);
  box-shadow: var(--shadow-screen);
}

.family-screen img {
  width: 100%;
  height: auto;
}

.family-visual figcaption {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.family-points {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.family-points article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.family-points strong {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.family-points span {
  color: #405249;
  font-size: 14px;
}

.fit-section {
  padding-block: 0;
  background: var(--surface);
}

.fit-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 70px;
  padding: 58px clamp(34px, 5vw, 72px);
  color: var(--white);
  background: #173f32;
  border-radius: 22px;
}

.fit-card h2 {
  margin-bottom: 17px;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.fit-card > div > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #bdcdc5;
  font-size: 16px;
  line-height: 1.7;
}

.fit-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
}

.fit-time {
  color: #a9c9ba;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-action small {
  color: #9aafa5;
  font-size: 11px;
  text-align: center;
}

.pricing-section {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}

.price-timeline {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-timeline li {
  display: grid;
  grid-template-columns: 155px minmax(130px, 0.55fr) 1fr;
  align-items: baseline;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-timeline span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-timeline strong {
  font-size: 17px;
}

.price-timeline small {
  color: var(--muted);
  font-size: 13px;
}

.price-card {
  padding: 40px;
  background: var(--green-pale);
  border: 1px solid #bad2c2;
  border-radius: var(--radius-card);
}

.price-badge {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-value {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-bottom: 4px;
}

.price-value strong {
  font-size: 88px;
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.price-value span {
  padding-bottom: 9px;
  font-size: 20px;
  font-weight: 750;
}

.price-card > p {
  margin-bottom: 25px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid #c8d9cd;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.price-card > small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.trust-section {
  background: var(--surface-soft);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line-strong);
}

.trust-cards article {
  min-height: 250px;
  padding: 32px 26px 32px 0;
}

.trust-cards article + article {
  padding-left: 26px;
  border-left: 1px solid var(--line-strong);
}

.trust-cards article > span {
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.trust-cards h3 {
  margin-bottom: 13px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.trust-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.trust-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.trust-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
}

.trust-links a + a {
  padding-left: 20px;
  border-left: 1px solid var(--line-strong);
}

.trust-links span {
  color: var(--green);
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 114px;
}

.faq-intro a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--green);
  font-size: 22px;
  font-weight: 400;
  transition: transform 150ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -2px 0 25px;
  color: var(--muted);
  line-height: 1.7;
}

.final-section {
  padding: 0 0 90px;
  background: var(--surface);
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 70px;
  padding: 62px clamp(34px, 5vw, 72px);
  color: var(--white);
  background: #0f2e24;
}

.final-card h2 {
  margin-bottom: 0;
}

.final-action {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.final-action > span {
  color: #a8bbb2;
  font-size: 12px;
  text-align: center;
}

.site-footer {
  padding: 60px 0 52px;
  color: #d9e4df;
  background: #0a2019;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) 0.5fr 0.5fr 1fr;
  gap: 50px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 290px;
  margin: 20px 0 0;
  color: #8fa59b;
  font-size: 14px;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #b6c6bf;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  color: #8fa59b;
  font-size: 12px;
}

.footer-legal strong {
  color: #cedbd5;
  font-size: 11px;
  line-height: 1.4;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(49px, 6vw, 66px);
  }

  .product-tour {
    grid-template-columns: 0.7fr 0.9fr;
  }

  .tour-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    column-gap: 44px;
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 34px;
  }

  .tour-copy h3 {
    grid-column: 1;
  }

  .tour-copy > p:not(.tour-step):not(.demo-message),
  .tour-next,
  .demo-message {
    grid-column: 2;
  }

  .tour-copy .tour-step {
    grid-column: 1;
  }

  .trust-cards,
  .trust-links {
    grid-template-columns: 1fr 1fr;
  }

  .trust-cards article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .trust-cards article:nth-child(4) {
    border-top: 1px solid var(--line-strong);
  }

  .trust-links a:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 1024px) {
  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .outcome-card {
    grid-column: auto;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(280px, 1.16fr);
    align-items: center;
    gap: 36px;
    padding: 44px 44px 0;
  }

  .outcome-index {
    margin-bottom: 32px;
  }

  .outcome-screen,
  .outcome-screen-wide {
    width: min(100%, 390px);
    height: 470px;
    margin: auto auto -62px;
  }

  .outcome-card--money .outcome-copy {
    order: 2;
  }

  .outcome-card--money {
    grid-template-columns: minmax(280px, 1.16fr) minmax(0, 0.84fr);
  }

  .outcome-card--money .outcome-screen {
    order: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(242, 246, 239, 0.97);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav a::after {
    right: auto;
    bottom: 8px;
    width: 28px;
  }

  .hero-grid,
  .problem-grid,
  .family-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-product {
    width: 370px;
  }

  .problem-grid,
  .family-grid,
  .pricing-grid,
  .faq-grid {
    gap: 64px;
  }

  .product-evidence,
  .family-visual {
    width: 360px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-map {
    grid-template-columns: 1fr;
  }

  .feature-group,
  .feature-group:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .fit-card,
  .final-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .price-card {
    max-width: 520px;
  }

  .faq-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid #234238;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
  }

  body {
    padding-bottom: 68px;
  }

  .header-inner {
    min-height: 66px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .site-nav {
    inset-block-start: 66px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

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

  .hero {
    padding: 36px 0 58px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 11vw, 52px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 10px;
  }

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

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

  .hero-proof span,
  .hero-proof span:first-child {
    min-height: auto;
    padding: 7px 0;
  }

  .offer-note {
    margin-bottom: 16px;
  }

  .hero-proof span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-product,
  .product-evidence,
  .family-visual {
    width: min(100%, 348px);
  }

  .hero-screen-shell {
    height: 690px;
  }

  .hero-grid {
    gap: 34px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 88px;
    padding: 18px 14px;
  }

  .trust-grid > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .trust-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .pricing-copy h2,
  .faq-intro h2,
  .final-card h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .product-screen-crop,
  .family-screen {
    height: 610px;
  }

  .demo-section .center-heading,
  .center-heading {
    margin-bottom: 46px;
    text-align: left;
  }

  .demo-section .eyebrow,
  .center-heading .eyebrow {
    justify-content: flex-start;
  }

  .product-tour {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .tour-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
  }

  .tour-tab {
    min-width: 0;
    min-height: 96px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tour-tab > span {
    grid-row: auto;
    margin-bottom: 6px;
  }

  .tour-tab strong {
    font-size: 16px;
  }

  .tour-tab small {
    display: none;
  }

  .tour-stage {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .tour-screen {
    height: 610px;
  }

  .tour-copy {
    grid-column: auto;
    display: block;
    padding-top: 28px;
  }

  .tour-copy > p:not(.tour-step):not(.demo-message) {
    margin-bottom: 20px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 48px;
    text-align: center;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcome-card,
  .outcome-large {
    grid-column: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 22px 0;
    border-radius: 24px;
  }

  .outcome-card--money .outcome-copy,
  .outcome-card--money .outcome-screen {
    order: initial;
  }

  .outcome-card--money {
    grid-template-columns: 1fr;
  }

  .outcome-index {
    width: 40px;
    height: 40px;
    margin-bottom: 26px;
  }

  .outcome-facts {
    margin-top: 28px;
  }

  .outcome-screen-wide,
  .outcome-screen-analytics,
  .outcome-screen-money {
    width: min(100%, 390px);
    height: 420px;
    margin: 0 auto -54px;
    border-radius: 22px;
  }

  .feature-group,
  .feature-group:nth-child(even) {
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding-block: 32px;
  }

  .feature-group-icon {
    font-size: 25px;
  }

  .fit-section {
    padding: 0;
  }

  .fit-card,
  .final-card {
    width: 100%;
    padding: 50px var(--gutter);
    border-radius: 0;
  }

  .price-timeline li {
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
  }

  .price-timeline small {
    grid-column: 1 / -1;
  }

  .price-card {
    padding: 32px 24px;
  }

  .trust-cards,
  .trust-links {
    grid-template-columns: 1fr;
  }

  .trust-cards article,
  .trust-cards article + article,
  .trust-cards article:nth-child(3) {
    min-height: 0;
    padding: 28px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    border-left: 0;
  }

  .trust-cards article > span {
    margin-bottom: 18px;
  }

  .trust-links a,
  .trust-links a + a,
  .trust-links a:nth-child(3) {
    padding: 15px 0;
    border-left: 0;
  }

  .final-section {
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child,
  .footer-legal {
    grid-column: 1 / -1;
  }

  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 110;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    color: var(--white);
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    box-shadow: 0 12px 30px rgba(15, 46, 36, 0.28);
    font-size: 14px;
    font-weight: 800;
  }
}

@media (max-width: 420px) {
  .hero-screen-shell {
    height: min(680px, 174vw);
  }


  .trust-grid strong {
    font-size: 14px;
  }

  .trust-grid span {
    font-size: 11px;
  }

  .product-screen-crop,
  .family-screen,
  .tour-screen {
    height: min(610px, 155vw);
  }

  .outcome-screen-wide,
  .outcome-screen-analytics,
  .outcome-screen-money {
    height: 390px;
  }

  .family-points article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-value strong {
    font-size: 76px;
  }

  .footer-grid {
    gap: 34px 24px;
  }
}

/* Precision polish: rhythm, tactility, and purposeful motion. */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
summary {
  text-wrap: pretty;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(18, 35, 29, 0.055);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.nav-toggle i {
  transform-origin: 50% 50%;
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.nav-toggle[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.button {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.button svg,
.mobile-sticky-cta span,
.trust-links span {
  transition: transform 220ms var(--ease-out);
}

.hero-screen-shell,
.product-screen-crop,
.family-screen,
.tour-screen,
.outcome-screen,
.price-card {
  transition: border-color 240ms ease, box-shadow 320ms var(--ease-out), transform 320ms var(--ease-out);
}

.tour-tab {
  position: relative;
  transition: color 220ms ease, background-color 220ms ease;
}

.tour-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #a9dfc3;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 320ms var(--ease-out);
}

.tour-tab strong,
.tour-tab small {
  transition: transform 260ms var(--ease-out), color 220ms ease;
}

.tour-tab.is-active::after {
  transform: scaleX(1);
}

.tour-tab.is-active strong,
.tour-tab.is-active small {
  transform: translateX(3px);
}

.tour-next {
  transition: color 180ms ease, border-color 180ms ease, transform 220ms var(--ease-out);
}

.feature-group {
  transition: background-color 240ms ease;
}

.feature-group h3,
.trust-cards h3 {
  transition: color 200ms ease, transform 240ms var(--ease-out);
}

.family-points article,
.price-timeline li,
.trust-links a,
.faq-list summary {
  transition: color 180ms ease, background-color 200ms ease, transform 220ms var(--ease-out);
}

.faq-list details[open] summary {
  color: var(--green-dark);
}

.faq-list details[open] p {
  animation: faq-enter 260ms var(--ease-out) both;
}

.problem-section {
  padding-block: 110px 122px;
}

.demo-section {
  padding-block: 128px 134px;
}

.outcomes-section {
  padding-block: 132px 112px;
}

.features-section {
  padding-block: 108px 116px;
}

.family-section {
  padding-block: 132px 126px;
}

.pricing-section {
  padding-block: 122px 110px;
}

.trust-section {
  padding-block: 106px 120px;
}

.faq-section {
  padding-block: 124px 110px;
}

.outcomes-section .split-heading {
  margin-bottom: 70px;
}

.trust-section .split-heading {
  margin-bottom: 56px;
}

.family-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.family-points {
  margin-top: 36px;
}

.price-card {
  padding: 42px 40px 38px;
}

.faq-list summary {
  padding-block: 22px;
}

.faq-intro a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.mobile-sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 220ms ease, transform 360ms var(--ease-out), box-shadow 220ms ease, visibility 0s linear 360ms;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 620ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-18px, 0, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(18px, 0, 0);
}

.motion-ready [data-reveal="scale"] {
  transform: translate3d(0, 14px, 0) scale(0.985);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-product-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes faq-enter {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-nav-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: hero-copy-enter 720ms var(--ease-out) both;
  }

  .hero-copy > :nth-child(1) { animation-delay: 40ms; }
  .hero-copy > :nth-child(2) { animation-delay: 110ms; }
  .hero-copy > :nth-child(3) { animation-delay: 190ms; }
  .hero-copy > :nth-child(4) { animation-delay: 270ms; }
  .hero-copy > :nth-child(5) { animation-delay: 330ms; }
  .hero-copy > :nth-child(6) { animation-delay: 390ms; }

  .hero-screen-shell {
    animation: hero-product-enter 880ms var(--ease-out) 150ms both;
  }

  .button:active,
  .tour-tab:active,
  .tour-next:active,
  .nav-toggle:active {
    transform: scale(0.98);
  }

}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .site-nav.is-open {
    animation: mobile-nav-enter 200ms var(--ease-out) both;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    box-shadow: 0 11px 24px rgba(31, 115, 89, 0.2);
  }

  .button:hover svg,
  .mobile-sticky-cta:hover span,
  .trust-links a:hover span {
    transform: translateX(3px);
  }

  .hero-screen-shell:hover,
  .product-screen-crop:hover,
  .family-screen:hover {
    border-color: #9eb5a5;
    box-shadow: 0 38px 88px rgba(18, 35, 29, 0.17), 0 4px 12px rgba(18, 35, 29, 0.09);
    transform: translateY(-4px);
  }

  .tour-screen:hover {
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 36px 86px rgba(0, 0, 0, 0.34);
    transform: translateY(-3px);
  }

  .tour-tab:hover {
    color: #d8e5de;
    background: rgba(255, 255, 255, 0.025);
  }

  .tour-next:hover {
    color: #bde9d2;
    border-color: #bde9d2;
    transform: translateX(3px);
  }

  .outcome-screen:hover {
    border-color: var(--line-strong);
    box-shadow: 0 18px 42px rgba(18, 35, 29, 0.075);
    transform: translateY(-3px);
  }

  .feature-group:hover {
    background: rgba(255, 255, 255, 0.42);
  }

  .feature-group:hover h3,
  .trust-cards article:hover h3 {
    color: var(--green-dark);
    transform: translateX(2px);
  }

  .family-points article:hover,
  .price-timeline li:hover {
    background: rgba(234, 241, 232, 0.42);
    transform: translateX(4px);
  }

  .price-card:hover {
    border-color: #98b9a5;
    box-shadow: 0 24px 58px rgba(18, 35, 29, 0.1);
    transform: translateY(-4px);
  }

  .trust-links a:hover,
  .faq-list summary:hover {
    color: var(--green-dark);
  }
}

@media (max-width: 900px) {
  .site-nav a { min-height: 48px; }
  .problem-section { padding-block: 96px 102px; }
  .demo-section { padding-block: 104px 112px; }
  .outcomes-section { padding-block: 104px 94px; }
  .features-section { padding-block: 92px 100px; }
  .family-section { padding-block: 104px 102px; }
  .pricing-section { padding-block: 100px 92px; }
  .trust-section { padding-block: 92px 102px; }
  .faq-section { padding-block: 100px 90px; }
}

@media (max-width: 720px) {
  .problem-section { padding-block: 68px 78px; }
  .demo-section { padding-block: 82px 88px; }
  .outcomes-section { padding-block: 84px 72px; }
  .features-section { padding-block: 72px 82px; }
  .family-section { padding-block: 84px 80px; }
  .pricing-section { padding-block: 82px 72px; }
  .trust-section { padding-block: 74px 82px; }
  .faq-section { padding-block: 82px 72px; }

  .outcomes-section .split-heading,
  .trust-section .split-heading {
    margin-bottom: 46px;
  }

  .price-card {
    padding: 32px 24px 28px;
  }
}

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

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