:root {
  --sage: #2f6f58;
  --sage-dark: #214e3f;
  --sage-soft: #e4f1ea;
  --ink: #17324d;
  --ink-deep: #0c2238;
  --text: #334247;
  --muted: #667274;
  --line: #dce7e2;
  --cream: #fff6e8;
  --warm-white: #fffdf8;
  --mist: #edf5f7;
  --gold: #d7ab50;
  --coral: #b56d5b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(12, 34, 56, 0.16);
  --soft-shadow: 0 14px 34px rgba(12, 34, 56, 0.08);
  --premium-shadow: 0 34px 90px rgba(12, 34, 56, 0.24);
  --header-height: 78px;
  --reading-width: 66ch;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-wrap: break-word;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--warm-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 111, 88, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 88, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

body.nav-open {
  overflow: hidden;
}

body.comfort-reading {
  font-size: 20px;
}

body.comfort-reading h1 {
  font-size: clamp(2.85rem, 6vw, 5.25rem);
}

body.comfort-reading h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}

body.high-contrast-soft {
  --text: #172222;
  --muted: #354041;
  --line: #8ea39a;
  --warm-white: #fffefb;
  --cream: #fff1d4;
  --mist: #e8f4f7;
}

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

img {
  height: auto;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(47, 111, 88, 0.42);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  text-decoration-color: currentColor;
}

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

p {
  max-width: var(--reading-width);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.65rem);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.34rem;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-width: 0;
}

.narrow {
  width: min(780px, calc(100% - 48px));
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(220, 231, 226, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 12px 32px rgba(12, 34, 56, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 44px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(23, 50, 77, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(12, 34, 56, 0.12);
}

.brand-logo-fallback {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}

.brand-note {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
}

.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 0.65rem;
}

.site-nav {
  gap: 0.8rem;
  color: var(--ink);
  font-size: 1rem;
}

.site-nav a {
  padding: 0.58rem 0.18rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--sage);
}

.nav-buy {
  display: none;
  min-height: 48px;
  text-decoration: none;
}

.comfort-toggle,
.menu-toggle,
.btn {
  border-radius: 8px;
}

.comfort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.58rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(12, 34, 56, 0.05);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.comfort-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--sage);
}

.comfort-toggle[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.comfort-toggle[aria-pressed="true"] svg {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #347b62 0%, var(--sage-dark) 100%);
  box-shadow: 0 16px 28px rgba(33, 78, 63, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #2f725b 0%, #193f32 100%);
  box-shadow: 0 18px 34px rgba(33, 78, 63, 0.34);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 50, 77, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn-large {
  min-height: 58px;
  padding: 1rem 1.45rem;
  font-size: 1.08rem;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-width: 56px;
  min-height: 56px;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 22px;
  height: 18px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 8px; }
.menu-icon span:nth-child(3) { top: 16px; }

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.eyebrow {
  margin-bottom: 0.72rem;
  color: var(--sage);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 44px);
  padding: calc(var(--header-height) + 30px) 0 2.25rem;
  color: var(--white);
  background: var(--ink-deep);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.98) contrast(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 34, 56, 0.94) 0%, rgba(12, 34, 56, 0.78) 42%, rgba(12, 34, 56, 0.28) 72%, rgba(12, 34, 56, 0.5) 100%),
    linear-gradient(0deg, rgba(12, 34, 56, 0.58), rgba(12, 34, 56, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 74px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), var(--warm-white));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero .eyebrow,
.section-bonus .eyebrow,
.purchase-section .eyebrow,
.contact-cta .eyebrow {
  color: #f1d58d;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.85rem, 5vw, 4.35rem);
  color: var(--white);
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  max-width: 34ch;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.9vw, 1.72rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-text {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
}

.hero-emotion {
  max-width: 44ch;
  margin-bottom: 0.95rem;
  color: #f6df9e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1.34;
}

.trust-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.72rem;
  max-width: 58ch;
  margin: 0.55rem 0 0;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.trust-pill::before {
  content: "";
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.28rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(215, 171, 80, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  max-width: 680px;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.46rem 0.72rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.hero-showcase {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.book-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(340px, 30vw, 460px);
  aspect-ratio: 0.68;
  padding: clamp(1.35rem, 3vw, 2.35rem);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(215, 171, 80, 0.34), transparent 30%),
    linear-gradient(155deg, #17324d 0%, #214e3f 54%, #132c45 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px 14px 14px 8px;
  box-shadow:
    0 46px 100px rgba(0, 0, 0, 0.42),
    -18px 18px 32px rgba(0, 0, 0, 0.16);
  transform: rotate(2deg);
  isolation: isolate;
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(255, 255, 255, 0.07));
  border-radius: 8px 0 0 8px;
}

.book-cover::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 14px;
  z-index: -1;
  width: 78%;
  height: 30px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0 8px 8px 0;
  transform: skewY(-4deg);
}

.book-label {
  align-self: flex-start;
  padding: 0.42rem 0.62rem;
  color: var(--ink);
  background: #f5d889;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.book-title {
  display: block;
  max-width: 8ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 3.6vw, 3.55rem);
  font-weight: 700;
  line-height: 0.98;
}

.book-subtitle,
.book-detail,
.book-author {
  display: block;
}

.book-subtitle {
  max-width: 17ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
  font-weight: 800;
  line-height: 1.28;
}

.book-divider {
  width: 72px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
}

.book-detail {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.book-author {
  color: #f5d889;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-note {
  display: block;
  max-width: 30ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

/* Trust band */
.trust-band {
  position: relative;
  z-index: 2;
  padding: 1.1rem 0 3rem;
  background: var(--warm-white);
}

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

.trust-item,
.fit-card,
.info-card,
.tool-card,
.bonus-card,
.price-box,
.testimonial-box,
.contact-card,
.contact-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  min-height: 132px;
  padding: 1.35rem;
  background: var(--white);
}

.icon-circle,
.soft-icon,
.card-icon,
.tool-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--sage);
  background: var(--sage-soft);
  border-radius: 50%;
}

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

.icon-circle svg,
.card-icon svg,
.tool-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.icon-circle-alert,
.info-card-security .card-icon,
.tool-card-security .tool-icon {
  color: var(--coral);
  background: #faebe6;
}

.trust-item h3 {
  margin: 0 0 0.36rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Emotional and problem blocks */
.emotional-section {
  background:
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.emotional-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.6rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(228, 241, 234, 0.86)),
    var(--sage-soft);
  border: 1px solid rgba(47, 111, 88, 0.16);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.emotional-copy h2 {
  max-width: 15ch;
}

.emotional-copy p {
  color: var(--text);
  font-size: 1.16rem;
}

.emotional-close {
  margin: 1.4rem 0 0;
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem) !important;
  font-weight: 700;
  line-height: 1.22;
}

.emotional-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.emotional-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

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

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.problem-copy {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.problem-copy::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sage), var(--gold));
  border-radius: 999px;
}

.problem-copy p {
  color: var(--text);
  font-size: 1.1rem;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.problem-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 1.15rem;
  padding: 0;
  list-style: none;
}

.problem-terms li {
  padding: 0.48rem 0.72rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(215, 171, 80, 0.28);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(4.25rem, 7vw, 6.75rem) 0;
}

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

.section-cream {
  background: linear-gradient(180deg, var(--cream), #fffaf0);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.6rem;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading.align-left {
  margin-bottom: 0;
  text-align: left;
}

.section-heading.align-left h2,
.section-heading.align-left p {
  margin-left: 0;
}

/* Fit cards */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.fit-card {
  min-height: 184px;
  padding: 1.45rem;
  background: var(--white);
}

.fit-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 820;
  line-height: 1.42;
}

.fit-card-wide {
  grid-column: span 3;
}

.soft-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
}

.soft-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Reassurance */
.reassurance-section {
  background: var(--warm-white);
}

.reassurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.gentle-list {
  display: grid;
  gap: 0.78rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.gentle-list li {
  position: relative;
  min-height: 62px;
  padding: 1rem 1.15rem 1rem 3rem;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid rgba(47, 111, 88, 0.16);
  border-radius: 8px;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.42;
}

.gentle-list li::before {
  content: "";
  position: absolute;
  top: 1.18rem;
  left: 1.08rem;
  width: 1.05rem;
  height: 1.05rem;
  background: var(--sage);
  border-radius: 50%;
}

.gentle-list li::after {
  content: "";
  position: absolute;
  top: 1.48rem;
  left: 1.37rem;
  width: 0.46rem;
  height: 0.26rem;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.reassurance-note {
  margin: 1.3rem 0 0;
  padding: 1rem 1.15rem;
  color: var(--ink);
  background: var(--sage-soft);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 820;
}

.reassurance-media,
.steps-media,
.audience-media,
.author-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reassurance-media img,
.steps-media img,
.audience-media img,
.author-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.reassurance-media img {
  object-position: center;
}

/* Cards */
.card-grid,
.learn-grid,
.tools-grid {
  display: grid;
  gap: 1.15rem;
}

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

.info-card,
.tool-card {
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover,
.tool-card:hover,
.fit-card:hover,
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(12, 34, 56, 0.12);
}

.info-card {
  min-height: 250px;
  padding: 1.8rem;
}

.card-icon,
.tool-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
}

.card-icon svg,
.tool-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.info-card h3,
.tool-card h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 920;
  line-height: 1.22;
}

.info-card p,
.tool-card p,
.bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.info-card-security,
.tool-card-security {
  border-color: rgba(181, 109, 91, 0.32);
}

/* Outcomes */
.outcomes-section {
  background:
    linear-gradient(180deg, var(--cream), var(--warm-white));
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.outcome-card {
  min-height: 210px;
  padding: 1.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 111, 88, 0.16);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(12, 34, 56, 0.12);
}

.outcome-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  color: var(--sage);
  background: var(--sage-soft);
  border-radius: 50%;
}

.outcome-icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

.outcome-icon-alert {
  color: var(--coral);
  background: #faebe6;
}

.outcome-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.42;
}

/* Tools */
.tools-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tool-card {
  min-height: 215px;
  padding: 1.45rem;
}

/* Steps */
.steps-section {
  background: var(--warm-white);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.steps-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.12rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.step-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  font-size: 1.36rem;
  font-weight: 950;
  line-height: 1;
}

.step-item h3 {
  margin: 0 0 0.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.16rem;
  font-weight: 920;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.steps-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.1rem;
  font-style: italic;
}

/* Bonuses */
.section-bonus {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(215, 171, 80, 0.18), transparent 28%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
}

.section-bonus .section-heading h2,
.section-bonus .section-heading p {
  color: var(--white);
}

.section-bonus .section-heading p {
  opacity: 0.88;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.bonus-card {
  position: relative;
  min-height: 270px;
  padding: 2rem;
  color: var(--text);
  background: var(--warm-white);
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--coral));
}

.bonus-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 1.15rem;
  padding: 0.25rem 0.72rem;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 950;
}

/* Audience */
.audience {
  background: linear-gradient(180deg, var(--cream), var(--warm-white));
}

.audience-layout,
.author-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.audience-content p,
.author-content p {
  font-size: 1.12rem;
}

/* Editorial authority */
.editorial-section {
  background:
    linear-gradient(180deg, var(--warm-white), var(--mist));
}

.editorial-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.editorial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.editorial-list li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.6rem;
  color: var(--ink);
  background: var(--sage-soft);
  border: 1px solid rgba(47, 111, 88, 0.13);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.38;
}

.editorial-list li::before {
  content: "";
  position: absolute;
  top: 1.13rem;
  left: 1rem;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--sage);
  border-radius: 50%;
}

.editorial-list li::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 1.26rem;
  width: 0.42rem;
  height: 0.24rem;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.editorial-promise {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--cream), var(--warm-white));
  border: 1px solid rgba(215, 171, 80, 0.28);
  border-radius: 8px;
}

.editorial-promise p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.32;
}

.editorial-promise p + p {
  margin-top: 0.45rem;
}

.editorial-promise ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.editorial-promise li {
  padding: 0.45rem 0.7rem;
  color: var(--white);
  background: var(--sage);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

/* Purchase */
.purchase-section {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(215, 171, 80, 0.2), transparent 26%),
    linear-gradient(135deg, var(--ink) 0%, var(--sage-dark) 100%);
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.88fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.purchase-copy h2 {
  max-width: 650px;
  color: var(--white);
}

.purchase-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.purchase-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.purchase-assurance li {
  padding: 0.48rem 0.72rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 850;
}

.price-box {
  position: relative;
  padding: clamp(1.65rem, 3vw, 2.4rem);
  color: var(--text);
  background: var(--warm-white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--coral));
}

.product-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.72rem;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
}

.price {
  margin-bottom: 0.55rem;
  color: var(--sage);
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 950;
  line-height: 1;
}

.price-includes-title {
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 920;
}

.check-list {
  display: grid;
  gap: 0.66rem;
  margin: 0 0 1.55rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: var(--sage);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.67rem;
  left: 0.28rem;
  width: 0.45rem;
  height: 0.25rem;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.purchase-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.contact-direct {
  color: var(--ink);
  font-weight: 820;
}

.contact-direct a {
  color: var(--sage-dark);
  font-weight: 950;
}

/* Testimonial */
.testimonial-section {
  background: var(--sage-soft);
}

.testimonial-box {
  max-width: 880px;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border-left: 8px solid var(--sage);
  box-shadow: var(--shadow);
}

.testimonial-box h2 {
  max-width: none;
  margin-bottom: 1rem;
  color: var(--sage);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.testimonial-box blockquote {
  margin: 0;
}

.testimonial-box blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.32;
}

/* Author */
.author-section {
  background: var(--warm-white);
}

.author-media img {
  object-position: center;
}

/* FAQ */
.faq-list {
  max-width: 940px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 0.85rem;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 76px;
  padding: 1.2rem 1.35rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: var(--sage-soft);
  border: 1px solid rgba(47, 111, 88, 0.22);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

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

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

.faq-question[aria-expanded="true"] span {
  background: var(--sage);
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] span::before,
.faq-question[aria-expanded="true"] span::after {
  background: var(--white);
}

.faq-question[aria-expanded="true"] span::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 240ms ease, opacity 220ms ease;
}

.faq-answer.is-open {
  max-height: 260px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
}

/* Contact CTA */
.contact-cta {
  background: var(--warm-white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 50, 77, 0.92), rgba(47, 111, 88, 0.92)),
    var(--sage);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: none;
  color: var(--white);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-height) + 70px) 0 4.5rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(215, 171, 80, 0.18), transparent 26%),
    linear-gradient(180deg, var(--mist), var(--warm-white));
}

.page-hero h1 {
  max-width: 15ch;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.14rem;
}

.thanks-hero {
  display: flex;
  align-items: center;
  min-height: 68svh;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
  gap: 2rem;
  align-items: start;
}

.contact-card,
.contact-aside {
  padding: clamp(1.5rem, 3vw, 2.15rem);
  background: var(--white);
}

.contact-aside {
  background: var(--sage-soft);
}

.form-intro {
  color: var(--muted);
}

.form-alert {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  color: #7e3428;
  background: #fff0ec;
  border: 1px solid rgba(181, 109, 91, 0.34);
  border-radius: 8px;
}

.form-alert p {
  margin-bottom: 0.4rem;
  font-weight: 900;
}

.form-alert ul {
  margin: 0;
  padding-left: 1.2rem;
}

.form-field {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(47, 111, 88, 0.12);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(215, 171, 80, 0.85);
  outline-offset: 3px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aside-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.aside-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink);
  font-weight: 850;
}

.aside-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--sage);
  border-radius: 50%;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 950;
  text-decoration: none;
}

.footer-grid p {
  max-width: 560px;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-tagline {
  color: #f1d58d !important;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.35rem;
}

.footer-links a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(180deg, #347b62, var(--sage-dark));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(12, 34, 56, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top svg {
  width: 1.35rem;
  height: 1.35rem;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 22px 48px rgba(12, 34, 56, 0.32);
  transform: translateY(-2px) scale(1);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

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

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

  .comfort-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-buy {
    display: inline-flex;
  }

  .card-grid,
  .learn-grid,
  .tools-grid,
  .outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    padding: 0.75rem 24px 1.25rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-y: auto;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 54px;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-buy {
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.95rem 1rem !important;
    color: var(--white) !important;
    background: var(--sage);
    border-radius: 8px;
    border-bottom: 0 !important;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  h1 {
    max-width: 12ch;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    padding: 0.75rem 24px 1.25rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-y: auto;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 54px;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-buy {
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.95rem 1rem !important;
    color: var(--white) !important;
    background: var(--sage);
    border-radius: 8px;
    border-bottom: 0 !important;
  }

  .hero-layout,
  .emotional-panel,
  .problem-layout,
  .reassurance-layout,
  .steps-layout,
  .audience-layout,
  .editorial-panel,
  .author-layout,
  .purchase-panel,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero-layout {
    gap: 1.25rem;
  }

  .hero-showcase {
    display: grid;
    justify-items: start;
    max-width: 100%;
  }

  .hero-showcase .book-cover {
    width: min(280px, 54vw);
    transform: rotate(1deg);
  }

  .hero-tags {
    display: none;
  }

  .trust-grid,
  .fit-grid,
  .bonus-grid,
  .editorial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-card-wide {
    grid-column: span 2;
  }

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

  .section-heading h2,
  .section-heading p {
    margin-left: 0;
  }

  .reassurance-media,
  .steps-media,
  .audience-media,
  .emotional-media,
  .author-media {
    max-height: 440px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .container,
  .narrow {
    width: min(100% - 32px, 1180px);
  }

  .brand-note {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding-bottom: 2rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 34, 56, 0.94), rgba(12, 34, 56, 0.7)),
      linear-gradient(0deg, rgba(12, 34, 56, 0.52), rgba(12, 34, 56, 0.08));
  }

  .hero-subtitle {
    max-width: 18ch;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .hero-tags {
    gap: 0.45rem;
  }

  .hero-tags li {
    font-size: 1rem;
  }

  .hero-showcase {
    justify-items: center;
    margin-top: 0.25rem;
  }

  .hero-showcase .book-cover {
    width: min(220px, 58vw);
    padding: 1rem;
  }

  .showcase-note {
    max-width: 26ch;
    text-align: center;
  }

  .trust-grid,
  .fit-grid,
  .card-grid,
  .learn-grid,
  .tools-grid,
  .outcomes-grid,
  .bonus-grid,
  .editorial-list {
    grid-template-columns: 1fr;
  }

  .fit-card-wide {
    grid-column: auto;
  }

  .trust-item,
  .fit-card,
  .info-card,
  .tool-card,
  .outcome-card,
  .bonus-card {
    min-height: auto;
  }

  .emotional-panel,
  .editorial-panel {
    padding: 1.45rem;
  }

  .reassurance-media img,
  .steps-media img,
  .audience-media img,
  .emotional-media img,
  .author-media img {
    min-height: 280px;
  }

  .step-item {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .price-box {
    padding: 1.45rem;
  }

  .faq-question {
    min-height: 70px;
    padding: 1rem;
    font-size: 1.04rem;
  }

  .faq-question span {
    width: 38px;
    height: 38px;
  }

  .faq-answer p {
    padding: 0 1rem 1.1rem;
  }

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

@media (max-width: 430px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.35rem);
  }

  .header-actions {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    max-width: 9ch;
    line-height: 1.05;
  }

  .comfort-toggle,
  .menu-toggle {
    min-width: 50px;
    min-height: 50px;
    padding: 0.5rem 0.62rem;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 1.5rem;
  }

  .hero-subtitle {
    max-width: 25ch;
    font-size: 1.32rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .trust-pill {
    display: none;
    padding: 0.8rem 0.85rem;
    font-size: 1rem;
  }

  .hero-showcase .book-cover {
    width: min(190px, 58vw);
    transform: none;
  }

  .book-title {
    font-size: 2rem;
  }

  .book-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .cta-panel {
    padding: 1.45rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }
}
