:root {
  --forest: #173f35;
  --leaf: #2f7d5b;
  --mint: #d9efe1;
  --cream: #fbf8ef;
  --paper: #fffdf8;
  --clay: #b96f46;
  --gold: #e3b04b;
  --rose: #f4c7b5;
  --ink: #18302a;
  --muted: #62736c;
  --line: rgba(23, 63, 53, 0.14);
  --shadow: 0 22px 70px rgba(18, 45, 38, 0.14);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--gold);
  color: var(--forest);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: block;
  padding: 10px 18px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--forest);
  border-bottom: 1px solid rgba(23, 63, 53, 0.08);
  box-shadow: 0 10px 34px rgba(18, 45, 38, 0.06);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.header-inner {
  width: min(1180px, 100%);
  min-height: calc(var(--header-height) - 20px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--forest);
  box-shadow: 0 10px 40px rgba(18, 45, 38, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .header-inner {
  min-height: 42px;
}

.site-header.is-scrolled .header-cta,
.header-cta {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 12px 28px rgba(227, 176, 75, 0.26);
}

.mobile-header {
  display: none;
}

.brand,
.site-nav,
.header-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.9rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.68);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  opacity: 0.9;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ctaGlow 2.8s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: clamp(680px, 88svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--forest);
  isolation: isolate;
  background: var(--paper);
  padding: calc(var(--header-height) + 34px) 18px 0;
}

.hero-shell {
  width: min(1180px, 100%);
  min-height: calc(clamp(680px, 88svh, 820px) - var(--header-height) - 34px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}

.hero-content {
  width: min(650px, 100%);
  margin: 0 0 clamp(46px, 8vw, 86px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 11.6ch;
  font-size: clamp(2.75rem, 5.7vw, 5.25rem);
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.12;
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: min(640px, 72svh);
  display: grid;
  align-items: end;
  justify-items: center;
}

.hero-person {
  width: min(460px, 100%);
  max-height: min(640px, 72svh);
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(4, 18, 15, 0.34));
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button-primary {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 16px 38px rgba(227, 176, 75, 0.32);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(227, 176, 75, 0.5);
  opacity: 0;
  animation: pulseRing 2.4s ease-out infinite;
}

.button-ghost {
  color: var(--forest);
  border: 1px solid rgba(23, 63, 53, 0.32);
  background: rgba(23, 63, 53, 0.04);
  backdrop-filter: blur(8px);
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.hero-author {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(23, 63, 53, 0.68);
  color: white;
  backdrop-filter: blur(18px);
}

.hero-author span,
.hero-author strong {
  display: block;
}

.hero-author span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-author strong {
  margin-top: 4px;
  line-height: 1.25;
}

.metric-band {
  width: 100%;
  max-width: none;
  margin: 28px 0 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  overflow: hidden;
}

.metric {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--forest);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.metric span:last-child {
  color: var(--muted);
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.benefit-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card,
.comparison-list,
.testimonial-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(18, 45, 38, 0.06);
}

.benefit-card {
  min-height: 280px;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 125, 91, 0.35);
  box-shadow: var(--shadow);
}

.benefit-card svg,
.deliverables svg,
.list-title svg,
.revelation svg {
  width: 30px;
  height: 30px;
  color: var(--leaf);
  stroke-width: 1.8;
}

.benefit-card h3 {
  margin-top: 24px;
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pain-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: center;
  background: var(--forest);
  color: white;
  margin-top: clamp(18px, 4vw, 42px);
  margin-bottom: clamp(18px, 4vw, 42px);
  padding: clamp(54px, 8vw, 92px) max(18px, calc((100% - 1180px) / 2));
  border-radius: 0;
}

.pain-copy {
  max-width: 760px;
}

.pain-copy .eyebrow,
.comparison .eyebrow,
.checkout .eyebrow {
  color: var(--gold);
}

.pain-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.symptom-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.symptom-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  animation: softFloat 5s ease-in-out infinite;
}

.symptom-panel span:nth-child(2n) {
  animation-delay: 0.8s;
}

.symptom-panel span:nth-child(3n) {
  animation-delay: 1.4s;
}

.revelation {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(227, 176, 75, 0.14);
  border: 1px solid rgba(227, 176, 75, 0.28);
}

.revelation p {
  margin: 0;
  font-weight: 800;
}

.solution-section,
.specialist,
.offer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.solution-visual,
.specialist-photo {
  position: relative;
}

.solution-visual img,
.specialist-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(18, 45, 38, 0.14);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: softFloat 4.5s ease-in-out infinite;
}

.note-one {
  left: -18px;
  top: 18%;
}

.note-two {
  right: -18px;
  bottom: 14%;
  animation-delay: 0.9s;
}

.solution-copy p:not(.eyebrow),
.specialist-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.journey-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.journey-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.journey-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}

.journey-list p {
  margin: 0;
}

.testimonials {
  width: 100%;
  max-width: none;
  background: var(--paper);
  padding: clamp(58px, 8vw, 98px) max(18px, calc((100% - 1180px) / 2));
  border-radius: 0;
}

.testimonial-gallery {
  columns: 3 250px;
  column-gap: 16px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.testimonial-print {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(18, 45, 38, 0.1);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-print:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-print img {
  width: 100%;
  height: auto;
}

.testimonial-print-wide {
  padding: 8px;
}

.testimonial-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.testimonial-track {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(26px, 5vw, 54px);
  opacity: 0;
  transform: translateX(34px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--forest);
  font-size: clamp(1.22rem, 3vw, 2rem);
  line-height: 1.3;
  font-weight: 850;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
}

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  background: var(--mint);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 63, 53, 0.22);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--leaf);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.comparison {
  width: 100%;
  max-width: none;
  background: var(--forest);
  color: white;
  padding: clamp(58px, 8vw, 98px) max(18px, calc((100% - 1180px) / 2));
  border-radius: 0;
}

.comparison-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.comparison-list {
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.comparison-list.natural {
  background: rgba(217, 239, 225, 0.14);
}

.comparison-list.conventional {
  background: rgba(185, 111, 70, 0.14);
}

.list-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.comparison-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.84);
}

.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.conventional li::before {
  background: var(--rose);
}

.specialist {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.specialist-photo::after {
  content: "";
  position: absolute;
  inset: auto 26px -22px 26px;
  height: 42px;
  border-radius: 999px;
  background: var(--gold);
  filter: blur(20px);
  opacity: 0.35;
  z-index: -1;
}

.offer {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
}

.offer-copy p:not(.eyebrow) {
  color: var(--muted);
}

.deliverables {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.deliverables div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 850;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bonus-grid span {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--forest);
  font-weight: 800;
}

.phone-mockup {
  display: grid;
  justify-items: center;
  perspective: 900px;
}

.phone-frame {
  width: min(330px, 100%);
  min-height: 610px;
  padding: 16px;
  border-radius: 34px;
  background: #10251f;
  box-shadow: 0 30px 80px rgba(18, 45, 38, 0.24);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: phoneTilt 6s ease-in-out infinite;
}

.phone-top {
  width: 86px;
  height: 7px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-screen {
  min-height: 556px;
  padding: 28px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(217, 239, 225, 0.92), rgba(255, 253, 248, 0.98)),
    url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=700&q=80") center/cover;
  overflow: hidden;
}

.screen-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 22px 0 26px;
  color: var(--forest);
  font-size: 2rem;
}

.lesson {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin-bottom: 12px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-weight: 850;
}

.lesson span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.lesson.active {
  background: var(--forest);
  color: white;
}

.progress-line {
  height: 10px;
  margin-top: 32px;
  border-radius: 999px;
  background: rgba(23, 63, 53, 0.18);
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  animation: progressPulse 2.8s ease-in-out infinite;
}

.checkout {
  width: 100%;
  max-width: none;
  margin: clamp(18px, 4vw, 42px) 0;
  padding: clamp(70px, 10vw, 118px) max(18px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(rgba(23, 63, 53, 0.9), rgba(23, 63, 53, 0.88)),
    url("https://images.unsplash.com/photo-1495195134817-aeb325a55b65?auto=format&fit=crop&w=1800&q=85") center/cover fixed;
  color: white;
  text-align: center;
  border-radius: 0;
  overflow: hidden;
}

.checkout-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.checkout h2 {
  max-width: 11ch;
  margin: 0 auto 26px;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  line-height: 1.08;
}

.price-box {
  width: min(520px, 100%);
  margin: 0 auto 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.old-price {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: line-through;
  font-weight: 800;
}

.price-box strong {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1;
}

.price-box span:last-child,
.terms,
.urgency {
  color: rgba(255, 255, 255, 0.82);
}

.urgency {
  margin: 0 auto 28px;
  font-weight: 850;
}

.terms {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 0.92rem;
}

.faq {
  background: var(--paper);
  width: 100%;
  max-width: none;
  padding: clamp(58px, 8vw, 98px) max(18px, calc((100% - 1180px) / 2));
  border-radius: 0;
}

.accordion {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  width: 22px;
  min-width: 22px;
  transition: transform 0.25s ease;
}

.faq-item.is-open svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer-content {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
}

.faq-answer-content p {
  margin: 0 0 12px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: var(--forest);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer-content {
  padding-bottom: 22px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 70px);
  background: #10251f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.14s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.42s; }
.delay-4 { animation-delay: 0.58s; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes pulseRing {
  0% {
    opacity: 0.65;
    transform: scale(0.96);
  }
  70%, 100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 12px 28px rgba(227, 176, 75, 0.24); }
  50% { box-shadow: 0 12px 34px rgba(227, 176, 75, 0.48); }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes phoneTilt {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(2deg) translateY(-10px); }
}

@keyframes progressPulse {
  0%, 100% { width: 48%; }
  50% { width: 76%; }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-content {
    width: 100%;
    margin-bottom: 36px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 0;
  }

  .hero-visual {
    min-height: auto;
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .metric-band,
  .benefit-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metric:nth-child(3) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .pain-section,
  .solution-section,
  .specialist,
  .offer {
    grid-template-columns: 1fr;
  }

  .specialist-photo {
    order: -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    display: none;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    height: var(--header-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    left: 0;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    padding: 8px 12px;
    background: var(--paper);
    border-bottom: 1px solid rgba(23, 63, 53, 0.08);
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .mobile-brand {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    overflow: hidden;
  }

  .mobile-brand-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(227, 176, 75, 0.35);
  }

  .mobile-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-brand-copy {
    min-width: 0;
    display: block;
    overflow: hidden;
  }

  .mobile-brand-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.88rem;
    line-height: 1;
  }

  .mobile-brand-copy small {
    display: none;
  }

  .mobile-header-cta {
    height: 40px;
    min-width: 124px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 14px) 14px 0;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .hero-author {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(320px, calc(100% - 28px));
    margin-top: 0;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero-person {
    max-height: 460px;
  }

  .metric-band,
  .benefit-grid,
  .comparison-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .benefit-card {
    min-height: auto;
  }

  .testimonial-gallery {
    columns: 1;
  }

  .note-one {
    left: 14px;
    right: auto;
    top: 18%;
  }

  .note-two {
    left: auto;
    right: 14px;
    top: auto;
    bottom: 14px;
  }

  .phone-frame {
    min-height: auto;
    transform: none;
  }

  .phone-screen {
    min-height: 500px;
  }

  .checkout {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}