:root {
  --paper: #fffdf8;
  --ink: #181818;
  --muted: #5f5b52;
  --line: #d8d2c5;
  --yellow: #ffe56b;
  --yellow-soft: #fff2a8;
  --red: #b92025;
  --green: #0d6b48;
  --shadow: 0 18px 45px rgba(36, 31, 22, 0.10);
  --max: 850px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(244, 241, 232, 0.94), rgba(244, 241, 232, 0.94)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 25px,
      rgba(35, 30, 20, 0.022) 26px
    );
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-kerning: normal;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.top-alert {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 11px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .025em;
}

.top-alert span {
  color: var(--yellow);
}

.page {
  width: min(calc(100% - 28px), var(--max));
  margin: 18px auto 52px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.letter-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 54px 14px;
  border-bottom: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
}

.brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.department {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

main {
  padding: 22px 54px 54px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(26px, 5vw, 36px);
  letter-spacing: -.03em;
}

h2 {
  margin: 52px 0 18px;
  font-size: clamp(29px, 4vw, 41px);
  letter-spacing: -.02em;
}

h3 {
  margin: 34px 0 12px;
  font-size: 24px;
}

p {
  margin: 0 0 20px;
  font-size: 19px;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.lead {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.45;
}

.signature-line {
  margin: 28px 0 36px;
  padding-left: 16px;
  border-left: 4px solid var(--ink);
  color: #37342e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

/* Marker-Hintergrund bei mehrzeiligen Hervorhebungen sauber fortsetzen. */
.highlight {
  display: inline;
  margin: 0 -.02em;
  padding: 0 .08em;
  background:
    linear-gradient(
      176deg,
      transparent 7%,
      rgba(255, 229, 107, .88) 7%,
      rgba(255, 229, 107, .88) 88%,
      transparent 88%
    );
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.marker {
  padding: 0 .13em;
  background:
    linear-gradient(
      176deg,
      transparent 7%,
      var(--yellow-soft) 7%,
      var(--yellow-soft) 88%,
      transparent 88%
    );
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.question {
  margin: 32px 0;
  padding: 26px 0 26px 24px;
  border-left: 5px solid var(--yellow);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.4;
}

.benefits {
  margin: 26px 0 36px;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.6;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 4px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.offer-box {
  position: relative;
  margin: 22px 0 28px;
  padding: 24px 28px;
  border: 3px solid var(--ink);
  background: #fff;
}

.offer-box--hero {
  margin-top: 16px;
  padding-top: 20px;
  padding-bottom: 22px;
}

.offer-stamp {
  position: absolute;
  top: -17px;
  right: 24px;
  max-width: calc(100% - 48px);
  padding: 7px 13px;
  background: var(--red);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(1deg);
}

.old-price {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.old-price s {
  text-decoration-thickness: 2px;
}

.price {
  margin: 10px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(46px, 8vw, 68px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.06em;
}

.price small {
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.cta-wrap {
  margin: 18px 0 10px;
  text-align: center;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 17px 22px;
  border: 2px solid #8e1519;
  background: var(--red);
  box-shadow: 0 5px 0 #781116;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: break-word;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}

.cta:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #781116;
}

.microcopy {
  margin-top: 13px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.urgency-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px dashed var(--red);
  background: #fff8f7;
  color: #7d181b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.offer-box--hero .price {
  margin: 7px 0 9px;
}

.offer-box--hero > p {
  margin-bottom: 12px;
}

.offer-box--hero .cta-wrap {
  margin: 13px 0 8px;
}

.offer-box--hero .cta {
  min-height: 56px;
  padding: 14px 20px;
  font-size: clamp(18px, 2vw, 22px);
}

.offer-box--hero .microcopy {
  margin-top: 10px;
}

.offer-box--hero .urgency-note {
  margin-top: 15px;
  padding: 11px 14px;
}

.ps {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
  font-size: 18px;
}


.section-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.experts-section {
  margin: 46px 0 12px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 10px;
}

.expert-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 20px rgba(36, 31, 22, 0.055);
}

.expert-photo {
  position: relative;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #eee7d7;
  box-shadow: 0 0 0 1px var(--line), 0 5px 14px rgba(36, 31, 22, 0.10);
}

.expert-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
}

.expert-content {
  min-width: 0;
  padding: 0;
}

.expert-role {
  margin: 0 0 4px;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.expert-name {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.15;
}

.expert-bio {
  margin: 0;
  color: #37342e;
  font-size: 15.5px;
  line-height: 1.48;
}

.testimonial-section {
  margin: 42px 0 26px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 4px;
}

.testimonial-card {
  position: relative;
  min-width: 0;
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  background: #fffdfa;
  box-shadow: 0 10px 24px rgba(36, 31, 22, 0.05);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 7px;
  left: 14px;
  color: rgba(185, 32, 37, 0.14);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}

.testimonial-stars {
  margin: 0 0 10px;
  color: #b88700;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.testimonial-text {
  position: relative;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.63;
}

.testimonial-name {
  margin: 0;
  color: #37342e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.offer-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-soft), var(--yellow));
}

.offer-box--hero {
  background:
    linear-gradient(135deg, rgba(255, 242, 168, 0.22), rgba(255, 255, 255, 0) 52%),
    #fff;
}

.offer-box--hero .price {
  display: inline-block;
  padding: 4px 10px 7px 6px;
  background: linear-gradient(176deg, transparent 13%, rgba(255, 229, 107, .82) 13%, rgba(255, 229, 107, .82) 88%, transparent 88%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.bonus-inline {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 8px;
  border: 1px solid #dcc442;
  background: var(--yellow-soft);
  color: #433a08;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .84em;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .025em;
  text-transform: uppercase;
  transform: rotate(-.5deg);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 15px 0 14px;
}

.value-strip span {
  position: relative;
  min-width: 0;
  padding: 10px 9px 10px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .92);
  color: #37342e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.value-strip span::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 10px;
  color: var(--green);
  font-weight: 900;
}

.countdown-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 15px 0 14px;
  padding: 13px 15px;
  border: 2px solid var(--red);
  background: #fff8f7;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .72);
  font-family: Arial, Helvetica, sans-serif;
}

.countdown-kicker {
  display: block;
  margin-bottom: 3px;
  color: #7d181b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.countdown-label {
  display: block;
  color: #4f4840;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.countdown-time {
  min-width: 112px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--yellow);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .055em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 4px 4px 0 rgba(185, 32, 37, .22);
  animation: countdown-emphasis 1.8s ease-in-out infinite;
}

.countdown-box.is-expired {
  border-color: var(--line);
  background: #f5f2eb;
}

.countdown-box.is-expired .countdown-kicker {
  color: var(--muted);
}

.countdown-box.is-expired .countdown-time {
  background: #5d5850;
  color: #fff;
  box-shadow: none;
  animation: none;
}

.countdown-box--hero {
  margin: 10px 0 11px;
  padding: 9px 12px;
}

.countdown-box--hero .countdown-kicker,
.countdown-box--hero .countdown-label {
  font-size: 12px;
}

.countdown-box--hero .countdown-time {
  min-width: 98px;
  padding: 6px 9px;
  font-size: 27px;
}

.offer-box--hero .value-strip {
  margin: 12px 0 8px;
}

.countdown-box--final {
  margin: 22px 0 16px;
}

.archive-bonus {
  position: relative;
  margin: 54px -14px 18px;
  padding: 30px 28px 26px;
  border: 2px solid #c6aa24;
  background:
    radial-gradient(circle at top right, rgba(255, 229, 107, .46), transparent 34%),
    linear-gradient(145deg, #fffdf5 0%, #fff9dc 100%);
  box-shadow: 0 16px 34px rgba(99, 79, 0, .10);
  overflow: hidden;
}

.archive-bonus::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 112px;
  height: 112px;
  border: 20px solid rgba(255, 229, 107, .24);
  border-radius: 50%;
  pointer-events: none;
}

.archive-topline {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.archive-icon {
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 rgba(24, 24, 24, .12);
}

.archive-icon svg {
  width: 42px;
  height: 42px;
}

.archive-badge {
  display: inline-block;
  margin-bottom: 7px;
  padding: 6px 10px;
  background: var(--red);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .085em;
  text-transform: uppercase;
  transform: rotate(-.5deg);
}

.archive-bonus h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 40px);
}

.archive-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 28px;
}

.archive-benefits li {
  min-height: 76px;
  padding: 13px 12px 13px 38px;
  border: 1px solid rgba(164, 137, 14, .35);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 7px 16px rgba(94, 74, 0, .05);
}

.archive-benefits li::before {
  top: 12px;
  left: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
}

.archive-hook {
  margin: 4px 0 24px;
  padding: 17px 18px;
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, .78);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.52;
}

.archive-question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
}

.archive-question-list p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(164, 137, 14, .35);
  background: rgba(255, 255, 255, .78);
  color: #37342e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.archive-growth-note {
  margin: 22px 0;
  padding: 15px 17px;
  border: 1px dashed #9f8617;
  background: rgba(255, 242, 168, .48);
  font-weight: 700;
}

.archive-closing {
  margin-bottom: 0;
  padding: 17px 18px;
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, .72);
}

.bonus-benefit {
  margin: 8px -8px 0;
  padding-right: 10px !important;
  border: 1px solid #dcc442 !important;
  background: var(--yellow-soft);
  font-weight: 800;
}

.cta--attention {
  animation: cta-emphasis 2.8s ease-in-out infinite;
}

.mobile-countdown {
  display: none;
}

@keyframes countdown-emphasis {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@keyframes cta-emphasis {
  0%, 100% { box-shadow: 0 5px 0 #781116, 0 0 0 0 rgba(255, 229, 107, 0); }
  50% { box-shadow: 0 5px 0 #781116, 0 0 0 6px rgba(255, 229, 107, .42); }
}



.decline-link {
  display: inline-block;
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(95, 91, 82, .52);
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}

.decline-link:hover,
.decline-link:focus-visible {
  color: var(--red);
  text-decoration-color: currentColor;
}

.decline-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

body.decision-modal-open {
  overflow: hidden;
}

.decision-modal[hidden] {
  display: none;
}

.decision-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 14, 12, .76);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.decision-modal__panel {
  width: min(100%, 580px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px 34px 30px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  text-align: center;
}

.decision-modal__eyebrow {
  margin: 0 0 9px;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.decision-modal__panel h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 6vw, 42px);
}

.decision-modal__copy {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.62;
}

.decision-modal__warning {
  margin: 0 0 22px;
  padding: 14px 15px;
  border: 1px dashed var(--red);
  background: #fff8f7;
  color: #7d181b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.decision-modal__panel .cta {
  margin: 0;
}

.decision-modal__decline {
  margin-top: 17px;
  font-size: 13px;
}

.mobile-cta .decline-link {
  display: block;
  max-width: 720px;
  margin: 7px auto 0;
  font-size: 10px;
  line-height: 1.35;
}


#angebot,
#kaufen {
  scroll-margin-top: 20px;
}

.mobile-cta {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 8px 10px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, .97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}

.mobile-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
}

.mobile-cta .cta {
  max-width: 830px;
  min-height: 52px;
  margin: 0 auto;
  padding: 13px 10px;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.2;
}


.mobile-countdown {
  max-width: 830px;
  margin: 0 auto 6px;
  color: #4f4840;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .025em;
  text-align: center;
  text-transform: uppercase;
}

.mobile-countdown strong {
  display: inline-block;
  min-width: 48px;
  margin-left: 4px;
  color: var(--red);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.mobile-cta .cta:active {
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #781116;
  }

  .mobile-cta .cta:hover {
    box-shadow: none;
  }
}

@media (max-width: 700px) {
  body {
    line-height: 1.65;
  }

  .top-alert {
    padding: 8px 14px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .page {
    width: min(calc(100% - 12px), var(--max));
    margin: 8px auto 22px;
  }

  .letter-head {
    padding: 14px 20px 10px;
  }

  .brand {
    font-size: 17px;
  }

  .department {
    font-size: 12.5px;
  }

  .meta {
    display: none;
  }

  main {
    padding: 17px 20px 30px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.5;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(25px, 7.2vw, 29px);
    line-height: 1.13;
  }

  h2 {
    margin: 42px 0 14px;
    font-size: clamp(27px, 7.5vw, 32px);
    line-height: 1.15;
  }

  h3 {
    margin: 28px 0 10px;
    font-size: 22px;
    line-height: 1.18;
  }

  p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.65;
  }

  .lead {
    margin-bottom: 12px;
    font-size: 17.5px;
    line-height: 1.5;
  }

  .signature-line {
    margin: 24px 0 30px;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .question {
    margin: 26px 0;
    padding: 20px 0 20px 18px;
    font-size: 21px;
    line-height: 1.42;
  }

  .benefits {
    margin: 22px 0 30px;
  }

  .benefits li {
    padding: 12px 0 12px 32px;
    font-size: 17px;
    line-height: 1.55;
  }

  .benefits li::before {
    top: 11px;
    left: 2px;
  }

  .offer-box {
    margin: 18px 0 26px;
    padding: 21px 18px 22px;
  }

  .offer-box--hero {
    margin-top: 14px;
    padding: 19px 16px 18px;
  }

  .offer-stamp {
    top: -15px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 6px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .old-price {
    font-size: 15px;
  }

  .price {
    margin: 8px 0;
    font-size: 50px;
    line-height: 1;
  }

  .price small {
    font-size: 18px;
  }

  .cta-wrap {
    margin: 14px 0 8px;
  }

  .cta,
  .offer-box--hero .cta {
    min-height: 54px;
    padding: 14px 12px;
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: .01em;
  }

  .microcopy,
  .offer-box--hero .microcopy {
    margin-top: 11px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .urgency-note,
  .offer-box--hero .urgency-note {
    margin-top: 16px;
    padding: 12px 13px;
    font-size: 13px;
    line-height: 1.45;
  }

  .ps {
    margin-top: 38px;
    padding-top: 22px;
    font-size: 17px;
  }


  .experts-section {
    margin-top: 38px;
  }

  .section-intro {
    margin-bottom: 20px;
  }

  .experts-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .expert-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .expert-photo {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }


  .expert-name {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .expert-role {
    font-size: 9.5px;
  }

  .expert-bio {
    font-size: 14.5px;
    line-height: 1.46;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .testimonial-section {
    margin: 34px 0 20px;
  }

  .testimonial-card {
    padding: 18px 15px 16px;
  }

  .testimonial-card::before {
    top: 6px;
    left: 12px;
    font-size: 46px;
  }


  .value-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 13px 0;
  }

  .value-strip span {
    padding: 8px 8px 8px 27px;
    font-size: 12px;
  }

  .value-strip span::before {
    top: 7px;
  }

  .countdown-box {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .countdown-kicker {
    font-size: 11.5px;
  }

  .countdown-label {
    font-size: 11.5px;
  }

  .countdown-time {
    min-width: 91px;
    padding: 8px 8px;
    font-size: 25px;
    box-shadow: 3px 3px 0 rgba(185, 32, 37, .20);
  }

  .archive-bonus {
    margin: 42px -7px 14px;
    padding: 22px 16px 20px;
  }

  .archive-topline {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .archive-icon {
    width: 56px;
    height: 56px;
    box-shadow: 3px 3px 0 rgba(24, 24, 24, .12);
  }

  .archive-icon svg {
    width: 32px;
    height: 32px;
  }

  .archive-badge {
    padding: 5px 7px;
    font-size: 9.5px;
  }

  .archive-bonus h2 {
    font-size: clamp(25px, 7vw, 31px);
  }

  .archive-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0 23px;
  }

  .archive-benefits li {
    min-height: 0;
  }

  .archive-hook {
    padding: 15px 14px;
    font-size: 18px;
  }

  .archive-question-list {
    grid-template-columns: 1fr;
  }

  .archive-question-list p {
    font-size: 14.5px;
  }

  .archive-growth-note {
    padding: 14px;
  }

  .archive-closing {
    padding: 14px 13px;
  }

  .bonus-inline {
    margin: 7px 0 0;
    font-size: .76em;
  }

}


@media (max-width: 700px), (max-width: 820px) and (max-height: 800px), (max-height: 700px) {
  body {
    padding-bottom: calc(160px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    display: block;
  }


  .mobile-countdown {
    display: block;
  }
}

@media (max-width: 360px) {
  .top-alert {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .page {
    width: calc(100% - 8px);
  }

  .letter-head {
    padding-right: 16px;
    padding-left: 16px;
  }

  main {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 24px;
  }

  .offer-box,
  .offer-box--hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .offer-stamp {
    right: 8px;
    max-width: calc(100% - 16px);
    font-size: 10.5px;
  }

  .price small {
    font-size: 17px;
  }

  .cta,
  .offer-box--hero .cta {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 15.5px;
    letter-spacing: 0;
  }

  .mobile-cta .cta {
    font-size: 15.5px;
  }

  .decision-modal {
    padding: 10px;
  }

  .decision-modal__panel {
    max-height: calc(100vh - 20px);
    padding: 26px 18px 22px;
  }

  .decision-modal__copy {
    font-size: 16.5px;
  }

  .decision-modal__warning {
    font-size: 13px;
  }
}

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

  .cta,
  .mobile-cta {
    transition: none;
  }

  .countdown-time,
  .cta--attention {
    animation: none;
  }
}