:root {
  --forest-950: #102b1e;
  --forest-900: #173d2a;
  --forest-800: #22533a;
  --forest-700: #2f6849;
  --forest-100: #dfe9df;
  --sage-100: #edf2e9;
  --cream-50: #fcfaf4;
  --cream-100: #f6efdd;
  --cream-200: #eadfc4;
  --clay-500: #c9683a;
  --clay-600: #ad532e;
  --gold-400: #d8aa54;
  --ink: #1f2b24;
  --muted: #617067;
  --white: #fff;
  --line: rgba(23, 61, 42, 0.14);
  --shadow-sm: 0 8px 28px rgba(23, 61, 42, 0.08);
  --shadow-md: 0 22px 60px rgba(23, 61, 42, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--forest-950);
  font-family: var(--serif);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  margin-bottom: 20px;
}

::selection {
  color: var(--white);
  background: var(--forest-700);
}

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

.section {
  padding-block: clamp(78px, 10vw, 136px);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--clay-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #f0c17d;
}

.lead {
  color: #33463a;
  font-size: 1.2rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.urgency-bar__link:focus-visible,
summary:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  background: var(--forest-900);
  box-shadow: 0 12px 28px rgba(23, 61, 42, 0.22);
}

.button--primary:hover {
  background: var(--forest-800);
  box-shadow: 0 16px 32px rgba(23, 61, 42, 0.28);
}

.button--secondary {
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(23, 61, 42, 0.26);
}

.button--secondary:hover {
  background: var(--white);
  border-color: var(--forest-700);
}

.button--accent {
  color: var(--white);
  background: var(--clay-500);
  box-shadow: 0 12px 28px rgba(173, 83, 46, 0.25);
}

.button--accent:hover {
  background: var(--clay-600);
}

.button--large {
  min-height: 58px;
  padding: 15px 26px;
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white) !important;
  background: var(--forest-900);
}

.button--full {
  width: 100%;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  color: var(--white);
  background: var(--forest-950);
  font-size: 0.86rem;
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  text-align: center;
}

.urgency-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.35);
}

.urgency-bar__link {
  margin-left: 6px;
  color: #f4c676;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 110;
  background: rgba(252, 250, 244, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.05;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cream-100);
  background: var(--forest-900);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a:not(.button) {
  color: #33483b;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--clay-600);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--forest-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 170, 84, 0.2), transparent 24rem),
    linear-gradient(145deg, var(--cream-50), #f1ead6);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 560px;
  height: 560px;
  content: "";
  background: rgba(47, 104, 73, 0.08);
  border-radius: 50%;
}

.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(23, 61, 42, 0.23) 0.7px, transparent 0.7px);
  background-size: 19px 19px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
  gap: clamp(50px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-block: clamp(52px, 5vw, 72px);
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: #405348;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 19px;
  margin-bottom: 32px;
  color: #52665a;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-line span {
  position: relative;
}

.trust-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--clay-500);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero__proof {
  display: flex;
  gap: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 61, 42, 0.16);
}

.hero__proof div {
  display: flex;
  flex-direction: column;
}

.hero__proof strong {
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero__proof span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
}

.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  perspective: 1400px;
}

.book-stage::before {
  position: absolute;
  inset: 8% -2% 2%;
  content: "";
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.16)),
    url("../images/healthy-tomatoes.webp") center / cover;
  border: 10px solid rgba(255, 255, 255, 0.6);
  border-radius: 50% 50% 43% 57% / 42% 40% 60% 58%;
  box-shadow: var(--shadow-md);
  opacity: 0.2;
}

.book {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  transform: rotateY(-10deg) rotateX(2deg) rotateZ(1deg);
  transform-style: preserve-3d;
  filter: drop-shadow(28px 38px 30px rgba(23, 61, 42, 0.26));
}

.book::before {
  position: absolute;
  top: 1.2%;
  right: -16px;
  bottom: 1.5%;
  width: 18px;
  content: "";
  background: linear-gradient(to right, #ddd5c6, #fffdf8);
  border-radius: 0 5px 5px 0;
  transform: translateZ(-1px);
}

.book::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 2%;
  height: 14px;
  content: "";
  background: #ded7c9;
  border-radius: 0 0 4px 4px;
  transform: skewX(-45deg);
  transform-origin: top;
}

.book img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px 9px 9px 4px;
}

.book-stage__badge {
  position: absolute;
  right: -4px;
  bottom: 42px;
  z-index: 3;
  padding: 14px 18px;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 61, 42, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  line-height: 1.35;
  transform: rotate(2deg);
}

.book-stage__badge strong {
  display: block;
  color: var(--clay-600);
  font-size: 1rem;
}

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

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 156px;
  padding: 26px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-card--featured {
  background: var(--sage-100);
  border-color: rgba(47, 104, 73, 0.28);
}

.value-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--forest-900);
  background: var(--forest-100);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}

.value-card h3 {
  margin-bottom: 6px;
  font-size: 1.22rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.value-card__price {
  min-width: 108px;
  color: var(--clay-600);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 28px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.price-box > div {
  display: flex;
  flex-direction: column;
}

.price-box span,
.price-box small {
  color: rgba(255, 255, 255, 0.7);
}

.price-box strong {
  font-family: var(--serif);
  font-size: 2.1rem;
}

.price-box__offer {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.price-box__offer strong {
  color: #f1c277;
  font-size: 2.5rem;
}

.price-box .button {
  color: var(--forest-900);
  background: var(--cream-100);
  box-shadow: none;
}

.problem-section {
  background:
    linear-gradient(rgba(246, 239, 221, 0.75), rgba(246, 239, 221, 0.75)),
    radial-gradient(circle at 14% 18%, rgba(47, 104, 73, 0.12), transparent 30rem);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.image-frame {
  position: relative;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 61, 42, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(-1.3deg);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.image-frame__caption {
  display: block;
  padding: 14px 10px 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.pain-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 32px 0;
  list-style: none;
}

.pain-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.pain-list li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--clay-600);
  background: rgba(201, 104, 58, 0.12);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.pain-list li div {
  color: #4c5f53;
}

.pain-list strong {
  color: var(--ink);
}

.solution-note {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--forest-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.solution-note strong {
  color: var(--forest-900);
}

.solution-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contents-section {
  background: var(--cream-50);
}

.contents-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details,
.faq-list details,
.pdf-embed {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.accordion summary,
.faq-list summary,
.pdf-embed > summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker,
.pdf-embed > summary::-webkit-details-marker {
  display: none;
}

.accordion summary {
  gap: 16px;
  min-height: 90px;
  padding: 20px 24px;
}

.accordion summary > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.accordion summary small {
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part-number {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--forest-900);
  background: var(--sage-100);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.accordion__plus {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.accordion__plus::before,
.accordion__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--forest-800);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] {
  border-color: rgba(47, 104, 73, 0.28);
  box-shadow: var(--shadow-sm);
}

.accordion details[open] .accordion__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__body {
  padding: 0 24px 24px 88px;
}

.accordion__body ol {
  display: grid;
  gap: 16px;
  padding: 20px 0 0 26px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.accordion__body li {
  padding-left: 4px;
  color: var(--clay-600);
  font-weight: 800;
}

.accordion__body li strong,
.accordion__body li span {
  display: block;
}

.accordion__body li strong {
  color: var(--forest-950);
}

.accordion__body li span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 400;
}

.contents-aside {
  position: sticky;
  top: 148px;
  overflow: hidden;
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contents-aside img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contents-aside > div {
  padding: 28px;
  color: var(--white);
}

.contents-aside > div > span {
  display: block;
  margin-bottom: 17px;
  color: #f0c17d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.check-list li::before,
.final-cta__list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #efc272;
  font-weight: 900;
}

.preview-section {
  background: var(--forest-950);
}

.preview-section h2,
.preview-section .section-heading > p:last-child {
  color: var(--white);
}

.preview-section .section-heading > p:last-child {
  opacity: 0.72;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.preview-gallery figure {
  margin: 0;
}

.preview-gallery img {
  width: 100%;
  aspect-ratio: 0.707;
  object-fit: cover;
  object-position: top;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  transition: transform 200ms ease;
}

.preview-gallery figure:nth-child(odd) img {
  transform: rotate(-1deg);
}

.preview-gallery figure:nth-child(even) img {
  transform: rotate(1deg);
}

.preview-gallery figure:hover img {
  transform: translateY(-7px) rotate(0);
}

.preview-gallery figcaption {
  padding: 14px 4px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.preview-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.preview-actions .button {
  color: var(--forest-950);
  background: #f0c17d;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

.text-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.pdf-embed {
  max-width: 940px;
  margin: 38px auto 0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.pdf-embed > summary {
  justify-content: center;
  min-height: 56px;
  color: var(--white);
  font-weight: 800;
}

.pdf-embed__frame {
  padding: 0 12px 12px;
}

.pdf-embed object {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  background: var(--white);
  border: 0;
  border-radius: 8px;
}

.audience-section {
  background: var(--cream-100);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  min-height: 278px;
  padding: 25px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 61, 42, 0.12);
  border-radius: var(--radius-md);
}

.audience-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  color: var(--clay-600);
  background: rgba(201, 104, 58, 0.1);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.audience-card h3 {
  font-size: 1.25rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.55;
}

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

.comparison-table {
  overflow: hidden;
  max-width: 1000px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-table > [role="row"] {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.comparison-table > [role="row"] > div {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-table > [role="row"] > div + div {
  border-left: 1px solid var(--line);
}

.comparison-table > [role="row"]:last-child > div {
  border-bottom: 0;
}

.comparison-table__head {
  color: var(--white);
  background: var(--forest-900);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison-table > [role="row"]:not(.comparison-table__head) > div:first-child {
  color: var(--forest-950);
  font-weight: 800;
}

.comparison-table > [role="row"]:not(.comparison-table__head) > div:nth-child(2) {
  color: var(--muted);
  background: #faf9f5;
}

.comparison-table > [role="row"]:not(.comparison-table__head) > div:nth-child(3) {
  color: var(--forest-900);
  background: var(--sage-100);
}

.yes {
  color: var(--forest-700);
  font-weight: 900;
}

.no {
  color: var(--clay-500);
  font-weight: 900;
}

.comparison-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 148px;
  margin: 0;
}

.faq-layout .section-heading img {
  width: 100%;
  height: 210px;
  margin-top: 34px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 18px 58px 18px 22px;
  color: var(--forest-950);
  font-weight: 800;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--forest-700);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details[open] {
  border-color: rgba(47, 104, 73, 0.25);
}

.faq-list details p {
  padding: 0 58px 22px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list details a {
  color: var(--forest-700);
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 128px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 170, 84, 0.18), transparent 25rem),
    var(--forest-900);
}

.final-cta::before {
  position: absolute;
  top: -170px;
  left: -120px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.final-cta__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.final-cta__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 700;
}

.final-offer {
  padding: 34px;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.final-offer__label {
  color: var(--clay-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-offer__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 4px 0 0;
  color: var(--forest-900);
  font-family: var(--serif);
  line-height: 1;
}

.final-offer__price strong {
  font-size: 5rem;
  letter-spacing: -0.06em;
}

.final-offer__price span {
  margin: 9px 0 0 7px;
  font-size: 1.5rem;
  font-weight: 700;
}

.final-offer p {
  margin-bottom: 24px;
  color: var(--muted);
}

.final-offer small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-950);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
}

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

.brand--footer .brand__mark {
  color: var(--forest-950);
  background: var(--cream-100);
}

.site-footer__top > p {
  max-width: 450px;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 28px;
}

.site-footer nav a {
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
}

.mobile-buy {
  display: none;
}

.legal-header {
  padding-block: 62px 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(216, 170, 84, 0.18), transparent 23rem),
    var(--forest-900);
}

.legal-header .eyebrow {
  color: #f0c17d;
}

.legal-header h1 {
  max-width: 850px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.legal-header p:last-child {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  padding-block: 70px 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 70px;
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 148px;
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-nav strong {
  margin-bottom: 7px;
  color: var(--forest-900);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 7px 9px;
  color: var(--muted);
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--forest-900);
  background: var(--sage-100);
}

.legal-content {
  min-width: 0;
}

.legal-content section + section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.legal-content h3 {
  margin-top: 25px;
  font-family: var(--sans);
  font-size: 1.02rem;
}

.legal-content p,
.legal-content li {
  color: #4f6156;
}

.legal-content ul,
.legal-content ol {
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--forest-700);
  font-weight: 700;
}

.legal-note {
  padding: 20px 22px;
  background: var(--sage-100);
  border-left: 4px solid var(--forest-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.thank-you {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 120px);
  padding-block: 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 170, 84, 0.22), transparent 27rem),
    linear-gradient(145deg, var(--cream-50), var(--cream-100));
}

.thank-you__card {
  max-width: 760px;
  padding: clamp(30px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thank-you__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  color: var(--white);
  background: var(--forest-700);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.thank-you__card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.thank-you__card > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.thank-you__steps {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  text-align: left;
}

.thank-you__steps div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 15px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.thank-you__steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--forest-900);
  background: var(--forest-100);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 800;
}

.thank-you__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.thank-you__steps strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1040px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    gap: 30px;
  }

  .book-stage {
    min-height: 530px;
  }

  .value-card {
    grid-template-columns: 48px 1fr;
  }

  .value-card__icon {
    width: 48px;
    height: 48px;
  }

  .value-card__price {
    grid-column: 2;
    text-align: left;
  }

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

  .audience-card {
    min-height: 240px;
  }

  .audience-card > span {
    margin-bottom: 28px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 24px;
    visibility: hidden;
    background: var(--cream-50);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 24px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .trust-line,
  .hero__proof {
    justify-content: center;
  }

  .hero__visual {
    max-width: 580px;
    margin-inline: auto;
  }

  .book-stage {
    min-height: 580px;
  }

  .book-stage__badge {
    right: 5%;
  }

  .split-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .image-frame {
    max-width: 650px;
    margin-inline: auto;
  }

  .contents-layout {
    grid-template-columns: 1fr;
  }

  .contents-aside,
  .faq-layout .section-heading {
    position: static;
  }

  .contents-aside {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contents-aside img {
    height: 100%;
    min-height: 270px;
  }

  .preview-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .price-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-box .button {
    grid-column: 1 / -1;
  }

  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .final-offer {
    max-width: 520px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .urgency-bar__inner {
    gap: 7px;
    min-height: 42px;
    font-size: 0.76rem;
  }

  .urgency-bar__link {
    display: none;
  }

  .site-header {
    top: 42px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 110px;
  }

  .hero__grid {
    gap: 24px;
    padding-block: 62px 72px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-line {
    gap: 6px 15px;
    font-size: 0.76rem;
  }

  .trust-line span:not(:last-child)::after {
    right: -10px;
  }

  .hero__proof {
    gap: 12px;
    justify-content: space-between;
  }

  .hero__proof strong {
    font-size: 1.28rem;
  }

  .hero__proof span {
    font-size: 0.62rem;
  }

  .book-stage {
    min-height: 480px;
  }

  .book {
    width: min(76%, 315px);
  }

  .book-stage__badge {
    right: 0;
    bottom: 26px;
    font-size: 0.69rem;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .value-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .value-card__icon {
    width: 44px;
    height: 44px;
  }

  .price-box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    text-align: center;
  }

  .price-box__offer {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .price-box .button {
    grid-column: auto;
  }

  .split-grid {
    gap: 48px;
  }

  .accordion summary {
    gap: 12px;
    min-height: 80px;
    padding: 16px;
  }

  .part-number {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .accordion summary > span:nth-child(2) {
    font-size: 1.08rem;
  }

  .accordion__body {
    padding: 0 18px 20px 30px;
  }

  .contents-aside {
    display: block;
  }

  .contents-aside img {
    min-height: 230px;
  }

  .preview-gallery {
    gap: 20px 10px;
  }

  .preview-gallery img {
    border-width: 3px;
  }

  .pdf-embed object {
    height: 68vh;
  }

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

  .audience-card {
    min-height: 0;
  }

  .audience-card > span {
    margin-bottom: 18px;
  }

  .comparison-table {
    border: 0;
    box-shadow: none;
  }

  .comparison-table__head {
    display: none !important;
  }

  .comparison-table > [role="row"] {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
  }

  .comparison-table > [role="row"] > div {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line) !important;
    border-left: 0 !important;
  }

  .comparison-table > [role="row"] > div:first-child {
    color: var(--white) !important;
    background: var(--forest-900);
  }

  .comparison-table > [role="row"] > div:nth-child(2)::before {
    display: block;
    margin-bottom: 3px;
    content: "YouTube i fora";
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-table > [role="row"] > div:nth-child(3)::before {
    display: block;
    margin-bottom: 3px;
    content: "Kompletny poradnik";
    color: var(--forest-700);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-layout .section-heading img {
    display: none;
  }

  .final-cta__list {
    display: grid;
  }

  .final-offer {
    padding: 28px 20px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__top > p {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 6px;
  }

  .mobile-buy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 76px;
    padding: 10px 14px;
    background: rgba(16, 43, 30, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -10px 30px rgba(16, 43, 30, 0.2);
    backdrop-filter: blur(12px);
  }

  .mobile-buy > div {
    display: flex;
    flex-direction: column;
    color: var(--white);
  }

  .mobile-buy span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
  }

  .mobile-buy strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .mobile-buy .button {
    min-height: 48px;
    padding-inline: 22px;
  }

  .legal-header {
    padding-block: 48px;
  }

  .legal-page {
    padding-block: 50px 85px;
  }

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

  .legal-nav strong {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .urgency-bar,
  .site-header,
  .mobile-buy,
  .preview-actions,
  .pdf-embed,
  .final-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 36px;
  }

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