:root {
  --bg: #f8f4ea;
  --paper: #fffdf6;
  --paper-strong: #fffaf0;
  --ink: #0f2226;
  --muted: #62717c;
  --soft: #8b988d;
  --green: #007f45;
  --green-2: #0d9a64;
  --mint: #e5f3df;
  --line: rgba(15, 34, 38, 0.13);
  --line-soft: rgba(15, 34, 38, 0.08);
  --lavender: #eee3ff;
  --lavender-ink: #8758d3;
  --blue: #e1edff;
  --blue-ink: #276bd4;
  --orange: #fff0dc;
  --orange-ink: #ed6f1a;
  --gold: #ffedbf;
  --shadow: 0 22px 70px rgba(21, 42, 35, 0.12);
  --shadow-soft: 0 14px 42px rgba(21, 42, 35, 0.08);
  --hero-x: 0;
  --hero-y: 0;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(255, 253, 246, 0.95) 0 34%, rgba(225, 244, 229, 0.8) 54%, rgba(255, 253, 246, 0.92) 75%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.2), rgba(228, 244, 228, 0.22), rgba(255, 253, 246, 0.4)),
    repeating-linear-gradient(90deg, rgba(15, 34, 38, 0.018) 0 1px, transparent 1px 120px);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/wellness/botanical-paper-texture.png");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: min(1680px, 150vw) auto;
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(39, 107, 212, 0.45);
  outline-offset: 4px;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

h1,
h2,
.brand span {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.1vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  color: var(--green);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.site-header,
main,
.site-footer {
  width: min(1328px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  padding: 30px 0 12px;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  font-size: 1.58rem;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 127, 69, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  font-size: 0.94rem;
  font-weight: 760;
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-cta,
.header-pro {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.button-primary {
  background: linear-gradient(180deg, #068a4c, #00783f);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 127, 69, 0.22);
}

.button-primary:hover {
  background: linear-gradient(180deg, #007c43, #006936);
  box-shadow: 0 20px 42px rgba(0, 127, 69, 0.28);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 246, 0.72);
}

.button-secondary:hover {
  border-color: rgba(0, 127, 69, 0.3);
  color: var(--green);
  box-shadow: 0 14px 34px rgba(21, 42, 35, 0.08);
  transform: translateY(-2px);
}

.button-pro {
  border-color: rgba(13, 95, 74, 0.18);
  background: #102a28;
  color: #f8fff7;
  box-shadow: 0 14px 30px rgba(16, 42, 40, 0.16);
}

.button-pro:hover {
  background: #0b3a32;
  box-shadow: 0 18px 38px rgba(16, 42, 40, 0.22);
  transform: translateY(-2px);
}

.button-large {
  min-width: 190px;
  min-height: 64px;
  border-radius: 14px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(570px, 1.08fr);
  gap: 38px;
  align-items: start;
  min-height: 570px;
  padding: 8px 0 0;
}

.hero::before {
  position: absolute;
  inset: -34px -48px 12px -48px;
  z-index: -2;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(248, 244, 234, 0.76), rgba(248, 244, 234, 0.18), rgba(232, 244, 228, 0.28)),
    url("assets/wellness/botanical-paper-texture.png") center / cover no-repeat;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 10%;
  bottom: 8px;
  z-index: -1;
  width: 540px;
  height: 170px;
  border-radius: 55% 45% 50% 50%;
  background: rgba(196, 226, 197, 0.35);
  filter: blur(2px);
  transform: rotate(-7deg);
  content: "";
}

.hero-copy {
  align-self: start;
  padding-top: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 127, 69, 0.09);
  border-radius: 999px;
  background: rgba(229, 243, 223, 0.85);
  color: #005d34;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  overflow: hidden;
  width: 18px;
  height: 18px;
  border-radius: 6px 16px 6px 16px;
  background: var(--green);
  color: transparent;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 44px;
}

.trust-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
}

.trust-chip {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 48px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(21, 42, 35, 0.08);
}

.trust-chip strong,
.trust-chip > span,
.trust-chip > span > span {
  display: block;
}

.trust-chip strong {
  margin-bottom: 2px;
  font-size: 0.76rem;
}

.trust-chip > span > span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 550px;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  margin: 0;
  border: 1px solid rgba(255, 253, 246, 0.72);
  border-radius: 34px;
  aspect-ratio: 1.49;
  background: rgba(255, 253, 246, 0.8);
  box-shadow: var(--shadow);
  animation: heroPhotoFloat 8.4s ease-in-out infinite;
  transition:
    box-shadow 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translate3d(calc(var(--hero-x) * -12px), calc(var(--hero-y) * -9px), 0);
  will-change: transform;
}

.hero-photo-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(15, 34, 38, 0.22));
  content: "";
  pointer-events: none;
}

.hero-photo-card:hover {
  box-shadow: 0 28px 84px rgba(21, 42, 35, 0.17);
}

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

.hero-badges {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  gap: 22px;
}

.mini-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 253, 246, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
  will-change: transform;
}

.mini-badge:nth-child(1) {
  animation: badgeFloat 7.5s ease-in-out infinite;
}

.mini-badge:nth-child(2) {
  animation: badgeFloat 8.2s ease-in-out 450ms infinite;
}

.mini-badge:nth-child(3) {
  animation: badgeFloat 8.8s ease-in-out 900ms infinite;
}

.mini-badge:hover {
  box-shadow: 0 18px 48px rgba(21, 42, 35, 0.12);
  transform: translateY(-4px);
}

.mini-badge img,
.mini-icon {
  flex: 0 0 auto;
  border-radius: 12px;
}

.mini-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  font-weight: 900;
}

img.mini-icon {
  display: block;
  object-fit: cover;
}

.mini-icon.blue {
  background: var(--blue);
  color: var(--blue-ink);
}

.mini-icon.lavender {
  background: var(--lavender);
  color: var(--lavender-ink);
}

.mini-badge strong,
.mini-badge span span {
  display: block;
}

.mini-badge strong {
  margin-bottom: 2px;
  font-size: 0.8rem;
}

.mini-badge span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
}

.problem-band,
.feature-band,
.privacy-card,
.principle-card,
.faq-card,
.final-cta {
  border: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.64);
  box-shadow: 0 10px 36px rgba(21, 42, 35, 0.04);
  backdrop-filter: blur(16px);
}

.problem-band,
.feature-card,
.privacy-card,
.principle-card,
.faq-card,
.final-cta,
.step-card,
details {
  transition:
    border-color 220ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.problem-band:hover,
.feature-card:hover,
.privacy-card:hover,
.principle-card:hover,
.faq-card:hover,
.final-cta:hover,
.step-card:hover {
  border-color: rgba(0, 127, 69, 0.22);
  box-shadow: 0 18px 48px rgba(21, 42, 35, 0.08);
  transform: translateY(-3px);
}

.problem-band {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) repeat(3, minmax(210px, 1fr));
  gap: 34px;
  align-items: stretch;
  margin-top: 18px;
  padding: 46px 56px;
  border-radius: 28px;
}

.problem-title {
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.problem-title h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.1;
}

.problem-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 0 0 0 28px;
  border-left: 1px solid rgba(15, 34, 38, 0.055);
}

.problem-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.section-eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.icon-circle,
.step-icon,
.feature-icon {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}

img.icon-circle,
img.step-icon,
img.feature-icon {
  display: block;
  object-fit: cover;
  padding: 0;
  background: transparent;
  box-shadow: 0 10px 24px rgba(21, 42, 35, 0.08);
}

.icon-circle {
  width: 70px;
  height: 70px;
}

.workflow {
  padding: 58px 0 68px;
}

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

.center-heading h2 {
  margin-bottom: 6px;
}

.center-heading p {
  margin-bottom: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 58px 1fr 58px 1fr;
  gap: 32px;
  align-items: center;
}

.step-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.step-icon {
  width: 82px;
  height: 82px;
  font-size: 1.05rem;
}

.step-arrow {
  color: rgba(15, 34, 38, 0.22);
  font-size: 2.1rem;
  text-align: center;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.feature-band {
  padding: 46px 40px 36px;
  border-radius: 28px;
}

.feature-band .center-heading {
  margin-bottom: 44px;
}

.feature-band .center-heading h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.1rem, 2.7vw, 2.76rem);
  line-height: 1.08;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  min-height: 214px;
  padding: 22px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(255, 253, 246, 0.66);
  text-align: center;
}

.feature-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
}

.feature-icon.lavender {
  background: var(--lavender);
  color: var(--lavender-ink);
}

.feature-icon.blue {
  background: var(--blue);
  color: var(--blue-ink);
}

.feature-icon.orange {
  background: var(--orange);
  color: var(--orange-ink);
}

.feature-icon.gold {
  background: var(--gold);
  color: #d89010;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.lower-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 1.15fr;
  gap: 28px;
  margin-top: 22px;
}

.privacy-card,
.principle-card,
.faq-card {
  min-height: 248px;
  border-radius: 24px;
}

.privacy-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(229, 243, 223, 0.76), rgba(255, 253, 246, 0.55)),
    rgba(255, 253, 246, 0.72);
}

.privacy-card img {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.privacy-card p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.privacy-card a {
  color: var(--green);
  font-weight: 850;
}

.principle-card {
  padding: 34px;
}

.principle-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.principle-card h2 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.principle-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.faq-card {
  padding: 30px;
}

.faq-card h2 {
  margin-bottom: 18px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
}

details {
  border-top: 1px solid var(--line-soft);
}

details:hover {
  border-color: rgba(0, 127, 69, 0.22);
  transform: translateX(3px);
}

summary {
  position: relative;
  padding: 14px 22px 14px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 0;
  content: "›";
}

details[open] summary::after {
  transform: rotate(90deg);
}

details p {
  margin: -2px 0 14px;
  font-size: 0.86rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 72px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(229, 243, 223, 0.72), rgba(255, 253, 246, 0.76), rgba(229, 243, 223, 0.66)),
    url("assets/wellness/botanical-paper-texture.png") center / cover no-repeat,
    rgba(255, 253, 246, 0.72);
}

.final-cta img {
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.wellness-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p {
  margin-bottom: 0;
}

.final-actions {
  display: grid;
  gap: 10px;
  text-align: center;
}

.final-actions span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  gap: 72px;
}

@media (max-width: 1320px) {
  .problem-band {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 40px;
  }

  .problem-title,
  .problem-item {
    padding: 0;
    border-left: 0;
  }

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

@media (max-width: 1180px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 48px, 980px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .hero::before {
    inset: -18px -24px 0 -24px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-actions {
    margin-bottom: 34px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-pro,
  .header-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

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

  .problem-band {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 40px;
  }

  .problem-title,
  .problem-item {
    padding: 0;
    border-left: 0;
  }

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

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

}

@media (max-width: 780px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    padding-top: 16px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    font-size: 1.25rem;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .header-pro {
    min-width: 118px;
  }

  .hero {
    padding-top: 26px;
    overflow: hidden;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow {
    order: 1;
  }

  #hero-title {
    order: 2;
  }

  .hero-subtitle {
    order: 3;
  }

  .hero-actions {
    order: 5;
  }

  .hero-visual {
    order: 4;
  }

  .trust-chips {
    order: 6;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(2.72rem, 12vw, 4.1rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

  .button-large {
    width: 100%;
  }

  .trust-chips {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 16px;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background: rgba(255, 253, 246, 0.54);
    box-shadow: 0 12px 34px rgba(21, 42, 35, 0.05);
    backdrop-filter: blur(16px);
  }

  .trust-chip {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 58px;
  }

  .trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .trust-chip strong {
    font-size: 0.98rem;
  }

  .trust-chip > span > span {
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 22px;
    contain: none;
    overflow: visible;
  }

  .hero-photo-card {
    border-radius: 24px;
    aspect-ratio: 4 / 3;
  }

  .hero-badges {
    display: none;
  }

  .problem-band,
  .feature-band,
  .privacy-card,
  .principle-card,
  .faq-card,
  .final-cta {
    border-radius: 20px;
  }

  .problem-band {
    gap: 30px;
    padding: 36px 28px;
  }

  .problem-title h2 {
    font-size: clamp(2rem, 9.6vw, 2.65rem);
  }

  .problem-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .problem-item h3 {
    font-size: 1.1rem;
  }

  .problem-item p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .step-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
  }

  .icon-circle {
    width: 68px;
    height: 68px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-arrow {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow {
    padding: 46px 0 56px;
  }

  .center-heading {
    margin-bottom: 38px;
  }

  .feature-band {
    padding: 38px 26px 30px;
  }

  .feature-band .center-heading {
    margin-bottom: 34px;
  }

  .feature-band .center-heading h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

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

  .privacy-card .wellness-photo {
    height: 210px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  .final-cta img {
    margin: 0 auto;
  }

  .site-footer,
  .site-footer nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer nav {
    display: grid;
  }
}

@media (max-width: 480px) {
  .trust-chip {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .trust-icon {
    width: 56px;
    height: 56px;
  }

  .problem-band {
    gap: 28px;
    padding: 32px 22px;
  }

  .problem-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
  }

  .icon-circle {
    width: 64px;
    height: 64px;
  }
}

@keyframes heroPhotoFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

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