:root {
  --ink: #15201f;
  --muted: #5f6d69;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --surface-soft: #eef2eb;
  --line: #d9e0d9;
  --accent: #e85d36;
  --accent-dark: #b33b1e;
  --forest: #123f38;
  --forest-2: #205c51;
  --lime: #dff36b;
  --warning: #fff0cc;
  --warning-line: #e2b557;
  --shadow: 0 20px 60px rgba(18, 63, 56, 0.1);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --cookie-offset: 0px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration-color: var(--accent);
}

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

button,
input {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  font-weight: 770;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 720;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.narrow {
  width: min(100%, 800px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 9px;
  color: #fff;
  background: var(--forest);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 224, 217, 0.8);
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px 12px 16px 16px;
  color: var(--forest);
  background: var(--lime);
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-label {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.button):hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(232, 93, 54, 0.2);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 16px 36px rgba(232, 93, 54, 0.28);
}

.marked-cta {
  display: inline-flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.ad-disclosure {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.35;
}

.section-dark .ad-disclosure,
.final-cta .ad-disclosure {
  color: rgba(255, 255, 255, 0.76);
}

.button-secondary {
  color: var(--forest);
  background: var(--lime);
  box-shadow: none;
}

.button-secondary:hover {
  color: #fff;
  background: var(--forest-2);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover {
  color: #fff;
  background: var(--forest);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -120px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: rgba(223, 243, 107, 0.25);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  gap: clamp(44px, 8vw, 100px);
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.conversion-hero {
  padding-top: 54px;
}

.conversion-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(32px, 6vw, 76px);
}

.conversion-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

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

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #44514e;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-proof {
  display: flex;
  max-width: 580px;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-proof > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--forest);
  background: var(--lime);
}

.hero-proof svg {
  width: 23px;
}

.hero-proof p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-proof a {
  color: var(--forest-2);
  font-weight: 700;
}

.benefit-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 27px;
  font-size: 0.92rem;
  font-weight: 620;
}

.benefit-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 14px;
  height: 8px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--forest-2);
  border-left: 2px solid var(--forest-2);
  content: "";
}

.benefit-list-compact {
  max-width: 620px;
  margin-top: 20px;
}

.hero-choice-card {
  align-self: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(18, 63, 56, 0.14);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 26px 80px rgba(18, 63, 56, 0.14);
}

.hero-choice-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.hero-choice-card > p {
  color: var(--muted);
}

.step-label,
.answer-kicker {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-object-options {
  margin-top: 22px;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-object-options .object-option {
  min-height: 104px;
  padding: 20px;
  border-width: 1px;
}

.hero-object-options .object-option svg {
  width: 40px;
}

.object-answer {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.object-answer h3 {
  margin-bottom: 14px;
}

.answer-list {
  margin: 0 0 20px;
  padding-left: 20px;
}

.answer-list li + li {
  margin-top: 5px;
}

.object-answer .button {
  width: 100%;
}

.object-answer .action-note {
  margin-bottom: 0;
  text-align: center;
}

.choice-placeholder {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  text-align: center;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-art-card {
  position: absolute;
  inset: 18px 0 36px 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.hero-art-card svg {
  width: 100%;
  height: 100%;
}

.art-stat {
  position: absolute;
  right: -12px;
  bottom: 0;
  max-width: 205px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  line-height: 1.35;
}

.art-stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--forest);
  font-size: 1.5rem;
}

.breadcrumb {
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  color: #a4afab;
  content: "/";
}

.breadcrumb a {
  color: var(--muted);
}

.trust-strip {
  padding: 0 0 46px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 24px 28px;
}

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

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-dark {
  color: #fff;
  background: var(--forest);
}

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

.section-heading {
  display: grid;
  margin-bottom: 42px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 40px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .muted {
  color: #bed0cb;
}

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

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

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  color: var(--forest);
  background: var(--lime);
}

.card ul,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.check-list li {
  position: relative;
  margin-top: 9px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card li::before,
.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.card-dark li {
  color: #c9d8d4;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--forest);
  background: #f1f4ef;
  font-size: 0.8rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  font-weight: 690;
}

.notice {
  display: grid;
  padding: 30px;
  border: 1px solid var(--warning-line);
  border-radius: var(--radius);
  background: var(--warning);
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.notice-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #704711;
  background: #ffd676;
  font-weight: 800;
}

.notice h2,
.notice h3 {
  margin-bottom: 10px;
}

.notice p {
  color: #654d2d;
}

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

.coverage-zone {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top-width: 5px;
  border-radius: var(--radius);
  background: var(--surface);
}

.coverage-zone-positive {
  border-top-color: #2d8a69;
}

.coverage-zone-check {
  border-top-color: #d39a26;
}

.coverage-zone-stop {
  border-top-color: var(--accent);
}

.zone-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zone-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.coverage-zone-positive .zone-status {
  color: #247356;
}

.coverage-zone-check .zone-status {
  color: #9a6c0e;
}

.coverage-zone-stop .zone-status {
  color: var(--accent-dark);
}

.coverage-zone ul {
  margin: 0;
  padding-left: 20px;
}

.coverage-zone li + li {
  margin-top: 8px;
}

.evidence-panel {
  display: grid;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
}

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

.evidence-copy .eyebrow {
  color: var(--lime);
}

.evidence-copy .eyebrow::before {
  background: var(--lime);
}

.evidence-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.evidence-copy p {
  color: #cfdbd7;
}

.evidence-links {
  display: grid;
  gap: 10px;
}

.evidence-links a {
  display: grid;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
}

.evidence-links a:hover {
  border-color: var(--lime);
  background: rgba(223, 243, 107, 0.08);
}

.evidence-links span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  grid-row: 1 / 3;
}

.evidence-links strong,
.evidence-links small {
  display: block;
}

.evidence-links small {
  margin-top: 3px;
  color: #b9cbc5;
}

.checklist-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.checklist {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 16px 18px 16px 52px;
  border-top: 1px solid var(--line);
  font-weight: 680;
}

.checklist li:last-child {
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  position: absolute;
  top: 15px;
  left: 10px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--forest-2);
  border-radius: 8px;
  color: var(--forest-2);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
}

.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.copy-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--forest-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.waiting-period {
  display: grid;
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px solid var(--warning-line);
  border-radius: 18px;
  background: var(--warning);
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
}

.waiting-period p {
  margin: 0;
  font-size: 0.88rem;
}

.price-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest);
  grid-template-columns: 0.95fr 1.05fr;
}

.price-copy {
  padding: clamp(36px, 6vw, 72px);
}

.price {
  margin: 18px 0 24px;
  color: var(--lime);
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.price small {
  font-size: 0.24em;
  letter-spacing: -0.02em;
}

.price-factors {
  display: grid;
  padding: clamp(36px, 6vw, 72px);
  align-content: center;
  background: var(--forest-2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.factor {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.factor strong {
  display: block;
  margin-bottom: 3px;
  color: var(--lime);
}

.fine-print {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.section-dark .fine-print {
  color: #bed0cb;
}

.object-picker {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.object-options {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.object-option {
  position: relative;
  display: flex;
  min-height: 140px;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 2px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: #fbfcfa;
  text-align: left;
  cursor: pointer;
}

.object-option:hover,
.object-option[aria-pressed="true"] {
  border-color: var(--forest-2);
  background: #eef5f0;
}

.object-option[aria-pressed="true"]::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border: 5px solid var(--forest-2);
  border-radius: 50%;
  content: "";
}

.object-option svg {
  width: 48px;
  flex: 0 0 auto;
  color: var(--forest-2);
}

.object-option strong,
.object-option span {
  display: block;
}

.object-option span {
  color: var(--muted);
  font-size: 0.82rem;
}

.picker-result {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.picker-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: steps;
}

.step::after {
  position: absolute;
  right: 14px;
  bottom: -28px;
  color: #edf0eb;
  content: counter(steps, decimal-leading-zero);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
}

.step h3,
.step p {
  position: relative;
  z-index: 1;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.claim-steps {
  display: grid;
  gap: 0;
}

.claim-step {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  align-items: start;
  grid-template-columns: 70px 1fr;
}

.claim-step:last-child {
  border-bottom: 0;
}

.claim-step strong {
  color: var(--lime);
  font-size: 1.35rem;
}

.claim-step h3 {
  margin-bottom: 7px;
}

.claim-step p {
  margin: 0;
  color: #bed0cb;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-weight: 720;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  color: var(--forest-2);
  content: "+";
  font-size: 1.5rem;
  line-height: 18px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 900px;
  padding: 0 58px 24px 24px;
  color: var(--muted);
}

.faq-answer a {
  color: var(--forest-2);
  font-weight: 650;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 8vw, 92px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest);
}

.final-cta::after {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 400px;
  height: 400px;
  border: 70px solid rgba(223, 243, 107, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 720px;
  color: #c9d8d4;
}

.final-cta .legal-line {
  margin-top: 22px;
  font-size: 0.76rem;
}

.article-hero {
  padding: 50px 0 62px;
}

.article-hero h1 {
  max-width: 1050px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

.article-intro {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  gap: 8px 22px;
  font-size: 0.78rem;
}

.article-layout {
  display: grid;
  padding-bottom: 90px;
  align-items: start;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 72px;
}

.toc {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  font-size: 0.82rem;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
}

.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.toc a {
  color: var(--muted);
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin-top: 64px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 36px;
}

.prose p,
.prose li {
  color: #3f4b48;
}

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

.prose a {
  color: var(--forest-2);
  font-weight: 650;
}

.prose .notice,
.prose .card,
.prose .table-wrap,
.prose .inline-cta {
  margin: 36px 0;
}

.inline-cta {
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--forest);
}

.inline-cta p {
  color: #c9d8d4;
}

.inline-cta .fine-print {
  color: #bed0cb;
}

.source-list {
  padding-left: 20px;
  font-size: 0.86rem;
}

.update-stamp {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--surface-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.site-footer {
  padding: 58px 0 100px;
  border-top: 1px solid var(--line);
  background: #eef1ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 50px;
}

.footer-heading {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 7px;
}

.footer-links a,
.footer-copy {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-disclosure {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  max-width: 760px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 22px 80px rgba(21, 32, 31, 0.22);
}

.cookie-banner.is-visible {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-actions .accept {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
}

.mobile-sticky {
  position: fixed;
  z-index: 300;
  right: 12px;
  bottom: calc(12px + var(--cookie-offset));
  left: 12px;
  display: none;
  transition: bottom 180ms ease;
}

.mobile-sticky .button {
  width: 100%;
}

.mobile-sticky .marked-cta {
  width: 100%;
}

.mobile-sticky .ad-disclosure {
  align-self: center;
  padding: 3px 8px;
  border-radius: 7px;
  background: rgba(247, 248, 244, 0.96);
  box-shadow: 0 4px 16px rgba(18, 63, 56, 0.12);
  text-align: center;
}

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

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

.text-link {
  color: var(--forest-2);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 77px;
    right: 0;
    left: 0;
    display: none;
    padding: 24px 20px 30px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    background: var(--paper);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

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

  .main-nav .button {
    width: 100%;
  }

  .hero-grid,
  .price-panel,
  .article-layout,
  .evidence-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-art-card {
    inset: 0 24px 26px 0;
  }

  .article-layout {
    gap: 30px;
  }

  .toc {
    position: static;
  }

  .cards,
  .steps,
  .coverage-zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  body[data-page-slug="strahovka-ot-bpla"] .breadcrumb {
    display: none;
  }

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

  .brand-label {
    display: none;
  }

  .hero {
    padding: 38px 0 54px;
  }

  .conversion-hero {
    padding-top: 28px;
  }

  .conversion-hero h1 {
    margin-bottom: 16px;
    font-size: 2.25rem;
  }

  .conversion-hero .hero-lead {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-grid {
    gap: 38px;
  }

  .conversion-grid {
    gap: 22px;
  }

  .conversion-hero .hero-proof,
  .conversion-hero .benefit-list-compact {
    display: none;
  }

  .hero-art {
    min-height: 340px;
  }

  .benefit-list,
  .section-heading,
  .cards,
  .cards-2,
  .steps,
  .coverage-zones,
  .object-options,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    gap: 14px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card {
    padding: 24px;
  }

  .price-factors {
    grid-template-columns: 1fr;
  }

  .picker-result {
    align-items: stretch;
    flex-direction: column;
  }

  .waiting-period {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .checklist-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .evidence-panel {
    gap: 26px;
  }

  .evidence-links a {
    grid-template-columns: 32px 1fr;
  }

  .picker-result .button {
    width: 100%;
  }

  .claim-step {
    grid-template-columns: 52px 1fr;
  }

  .final-cta {
    padding: 38px 26px;
  }

  .cta-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .article-hero {
    padding: 34px 0 44px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 82px;
    left: 10px;
  }

  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }

  .mobile-sticky {
    display: none;
  }

  .mobile-sticky.is-visible {
    display: block;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.35rem;
  }

  .hero-art {
    min-height: 300px;
  }

  .art-stat {
    right: 0;
    max-width: 180px;
  }

  .object-option {
    padding: 20px;
  }
}

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

@media print {
  .site-header,
  .breadcrumb,
  .hero,
  .trust-strip,
  #coverage,
  .evidence-panel,
  .notice,
  #price,
  #how,
  #compare,
  #claim,
  #faq,
  .final-cta,
  .site-footer,
  .mobile-sticky,
  .cookie-banner,
  .checklist-actions {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
  }

  #checklist {
    display: block;
    padding: 0;
    background: #fff;
  }

  .checklist-card {
    border: 0;
    box-shadow: none;
  }
}

@media print {
  .site-header,
  .mobile-sticky,
  .cookie-banner,
  .button,
  .hero-art,
  .toc {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section,
  .article-layout {
    padding: 24px 0;
  }
}
