:root {
  --ink: #172b4d;
  --muted: #5b6474;
  --soft: #f3f2fb;
  --paper: #fffdf8;
  --lavender: #fee7d7;
  --coral: #e6474d;
  --green: #00867d;
  --blue: #0c2949;
  --line: #e7e8ef;
  --shadow: 0 22px 60px rgba(23, 43, 77, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir Next, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.hero {
  min-height: 94vh;
  padding: 48px 20px 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #f3f2fb 0%, #fbf9f4 100%);
}

.product-hero {
  background: linear-gradient(180deg, #fff2e8 0%, #fffdf8 78%);
}

.eyebrow {
  display: inline-block;
  max-width: 540px;
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font: 800 18px/1.3 Avenir Next, Inter, Arial, sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Avenir Next, Inter, Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  margin: 26px auto 18px;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--coral);
  font-style: italic;
}

.lead {
  max-width: 710px;
  margin: 0 auto 34px;
  color: #161a22;
  font-size: 20px;
  line-height: 1.5;
}

.hero-media {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.hero-product-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) 250px;
  gap: 24px;
  align-items: center;
  justify-content: center;
  max-width: 1040px;
  margin: 36px auto 0;
}

.hero-cover {
  width: min(720px, 100%);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 26px 70px rgba(12, 41, 73, 0.18);
}

.hero-bullets {
  padding: 22px;
  border-radius: 8px;
  background: #fff8d7;
  box-shadow: 0 18px 42px rgba(12, 41, 73, 0.13);
  transform: rotate(-2deg);
  text-align: left;
}

.hero-bullets p {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  color: #1e2430;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-bullets p:last-child {
  margin-bottom: 0;
}

.hero-bullets p::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(42deg);
}

.hero-media img {
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
}

.note {
  position: absolute;
  padding: 10px 14px;
  border-radius: 8px;
  color: #3b4380;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(23, 43, 77, 0.12);
  font: 900 20px/1.25 Avenir Next, Inter, Arial, sans-serif;
}

.note-left {
  left: 0;
  bottom: 18%;
}

.note-right {
  right: 0;
  bottom: 22%;
}

.content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

section {
  padding: 76px 0;
}

.band {
  background: #fff;
}

.band.light {
  background: #f7fbf7;
}

section h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
}

section p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.statement {
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
}

.center {
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 9px;
  height: 17px;
  border-right: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  transform: rotate(42deg);
}

.price-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.value {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.value span {
  color: #111;
  text-decoration: line-through;
}

.price-panel h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 42px;
}

.saving {
  color: var(--green);
  font-weight: 800;
}

.large {
  font-size: 22px;
}

.cta,
.pay-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 14px 20px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(230, 71, 77, 0.24);
  font: 900 18px/1.15 Inter, Avenir Next, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.secure,
.form-note {
  margin: 14px 0 0;
  color: #8d95a1;
  font-size: 14px;
  line-height: 1.4;
}

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

.grid article,
.quotes blockquote {
  min-height: 210px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.grid p,
.quotes span {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.pain-points,
.included,
.comparison {
  background: #fffdf8;
}

.problem-grid,
.module-list,
.compare-grid,
.yes-no {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.problem-grid article {
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 41, 73, 0.08);
  border-top: 7px solid var(--coral);
}

.problem-grid h3,
.module-list h3,
.callout-panel h3,
.compare-grid h3,
.yes-no h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.problem-grid p,
.callout-panel p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.callout-panel {
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.callout-panel h3,
.callout-panel p {
  color: #fff;
}

.author {
  background: #fffdf8;
}

.origin {
  background: #f7fbf7;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 2px dashed rgba(12, 41, 73, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8ef, #f5fbfb);
  color: var(--muted);
  text-align: center;
  padding: 30px;
  font-weight: 900;
}

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

.module-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.module-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.module-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.stacked-products {
  position: relative;
  min-height: 460px;
}

.stacked-products img {
  position: absolute;
  width: 260px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(12, 41, 73, 0.18);
}

.stacked-products img:nth-child(1) {
  left: 50px;
  top: 10px;
  width: 330px;
  z-index: 3;
}

.stacked-products img:nth-child(2) {
  right: 10px;
  top: 110px;
  z-index: 2;
  transform: rotate(4deg);
}

.stacked-products img:nth-child(3) {
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(-5deg);
}

.for-who {
  background: #fff;
}

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

.yes-no > div,
.compare-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 41, 73, 0.07);
}

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

.x-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.x-list li {
  position: relative;
  padding-left: 34px;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.x-list li::before,
.x-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: var(--coral);
}

.x-list li::before {
  transform: rotate(45deg);
}

.x-list li::after {
  transform: rotate(-45deg);
}

.quotes strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.final-cta {
  text-align: center;
  background: #172b4d;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta .cta {
  width: min(420px, 100%);
}

.meaning {
  background: #fffdf8;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.feature-list li {
  min-height: 178px;
  padding: 26px;
  border-left: 6px solid var(--lavender);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 43, 77, 0.08);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.reverse {
  grid-template-columns: 420px minmax(0, 1fr);
}

.image-frame {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-frame img {
  border-radius: 6px;
}

.steps,
.bonus-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.steps article,
.bonus-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.steps h3,
.bonus-list h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.steps p,
.bonus-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.mid-offer {
  background: #fff;
}

.mid-offer .cta {
  width: min(430px, 100%);
}

.bonus-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bonus-list article {
  border-top: 7px solid var(--coral);
}

.bonus-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.bonus-showcase article {
  padding: 16px 16px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 41, 73, 0.08);
}

.bonus-showcase img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  margin-bottom: 18px;
}

.bonus-showcase h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.bonus-showcase p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.guarantee {
  background: #f8fbff;
}

.seal {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border: 4px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font: 900 42px/1 Avenir Next, Inter, Arial, sans-serif;
}

.guarantee .cta {
  width: min(430px, 100%);
}

.letter p {
  color: #233653;
  font-size: 22px;
}

.final-cta h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 48px;
}

.final-anchor {
  width: min(420px, 100%);
  margin: 0 auto 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.final-anchor p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.final-anchor strong {
  color: #fff;
  font-size: 22px;
}

.final-anchor span {
  text-decoration: line-through;
}

.final-saving {
  margin-top: -14px;
  color: #b9f5cf;
  font-size: 16px;
  font-weight: 900;
}

.inverted {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.inverted span {
  color: #fff;
  text-decoration: line-through;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.faq details p {
  margin: 12px 0 0;
  font-size: 18px;
}

footer {
  padding: 28px 20px;
  color: #667085;
  background: #fff;
  text-align: center;
  font-size: 13px;
}

footer p {
  max-width: 760px;
  margin: 12px auto 0;
  line-height: 1.5;
}

.checkout-page {
  min-height: 100vh;
  background: #fff;
}

.checkout-shell {
  display: grid;
  grid-template-columns: 390px minmax(0, 520px);
  gap: 48px;
  align-items: start;
  justify-content: center;
  padding: 72px 20px 32px;
}

.checkout-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 43, 77, 0.08);
  overflow: hidden;
}

.mini-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 22px 24px 18px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.mini-brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tabs span {
  padding: 12px;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
}

.tabs .active {
  box-shadow: inset 0 -5px 0 var(--blue);
}

form {
  padding: 24px;
}

form h1 {
  margin-bottom: 20px;
  font-size: 30px;
}

label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  height: 56px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid #ccd2dd;
  border-radius: 6px;
  font: 16px Inter, Avenir Next, Arial, sans-serif;
}

.pay-button {
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.pay-button span {
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #b42318;
  font-size: 14px;
}

.checkout-summary {
  padding-top: 12px;
}

.checkout-summary img {
  width: min(430px, 100%);
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(12, 41, 73, 0.13);
}

.checkout-summary h2 {
  font-size: 46px;
}

.limited {
  margin: 16px 0 8px;
  color: #111;
  font-size: 21px;
}

.checkout-price {
  margin: 0;
  font-size: 32px;
  color: var(--ink);
}

.checkout-price strong {
  font-size: 36px;
}

.compact li {
  margin-bottom: 15px;
  font-size: 18px;
}

.checkout-footer {
  background: transparent;
}

@media (max-width: 900px) {
  .split,
  .checkout-shell,
  .grid,
  .quotes,
  .feature-list,
  .steps,
  .bonus-list,
  .bonus-showcase,
  .hero-product-wrap,
  .problem-grid,
  .module-list,
  .compare-grid,
  .yes-no,
  .author .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .checkout-shell {
    padding-top: 32px;
  }

  .note {
    position: static;
    display: inline-block;
    margin: 8px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-cover {
    margin: 0 auto;
  }

  .hero-bullets {
    width: min(430px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .stacked-products {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .stacked-products img,
  .stacked-products img:nth-child(1),
  .stacked-products img:nth-child(2),
  .stacked-products img:nth-child(3) {
    position: static;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 40px;
  }

  .lead,
  section p,
  .check-list li {
    font-size: 18px;
  }

  section {
    padding: 56px 0;
  }

  .checkout-summary h2 {
    font-size: 36px;
  }
}

.model-page {
  background: #fff;
}

.model-page h1,
.model-page h2,
.model-page h3 {
  font-family: Avenir Next, Inter, Arial, sans-serif;
}

.model-container {
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
}

.model-hero {
  padding: 30px 0 36px;
  background: #f1effb;
  text-align: center;
}

.model-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.model-hero h1 {
  max-width: 500px;
  margin: 0 auto 10px;
  font-size: clamp(28px, 5.4vw, 44px);
  font-weight: 900;
  line-height: 1.04;
}

.model-hero h1 span {
  display: block;
  color: var(--coral);
  font-style: italic;
}

.model-subtitle {
  max-width: 460px;
  margin: 0 auto 20px;
  color: #1e2430;
  font-size: 15px;
  line-height: 1.45;
}

.hero-strip {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 260px) 1fr;
  gap: 12px;
  align-items: center;
}

.hero-strip img {
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(12, 41, 73, 0.16);
}

.mini-note {
  padding: 9px;
  border-radius: 6px;
  color: #35416f;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.mini-note.green {
  color: #007970;
}

.model-section,
.offer-card-section {
  padding: 42px 0;
}

.model-section h2,
.offer-card-section h2,
.proof-band h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 25px;
  text-align: center;
}

.model-section p {
  color: #1e2430;
  font-size: 16px;
  line-height: 1.7;
}

.model-section .statement {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.45;
}

.two-illustrations,
.icon-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

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

.image-slot {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 18px;
  border: 2px dashed rgba(12, 41, 73, 0.25);
  border-radius: 8px;
  background: #fff8ef;
  color: #647084;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.image-slot.small {
  min-height: 105px;
}

.image-slot.wide {
  min-height: 310px;
  margin: 28px 0;
}

.image-slot.round {
  width: 320px;
  height: 320px;
  max-width: 100%;
  margin: 0 auto 22px;
  border-radius: 50%;
}

.section-image {
  width: 100%;
  margin: 24px auto 0;
  border-radius: 8px;
  display: block;
}

.floor-image {
  box-shadow: 0 18px 42px rgba(12, 41, 73, 0.1);
}

.before-after-image {
  width: min(390px, 100%);
  box-shadow: 0 16px 40px rgba(12, 41, 73, 0.08);
}

.calma-method-image {
  width: min(390px, 100%);
  box-shadow: 0 16px 40px rgba(12, 41, 73, 0.08);
}

.routine-image {
  box-shadow: 0 18px 42px rgba(12, 41, 73, 0.1);
}

.family-history-image {
  box-shadow: 0 18px 42px rgba(12, 41, 73, 0.1);
}

.model-offer-card {
  padding: 22px;
  border: 2px dashed #7b7cf0;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.model-offer-card img {
  width: min(300px, 100%);
  margin: 0 auto 16px;
  border-radius: 6px;
}

.model-checks {
  padding: 0;
  margin: 18px 0;
  list-style: none;
  text-align: left;
}

.model-checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #1e2430;
  font-size: 15px;
  line-height: 1.45;
}

.model-checks li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 7px;
  height: 14px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(42deg);
}

.strike-price {
  margin: 10px 0 0;
  color: var(--coral);
  font-size: 20px;
  font-weight: 900;
  text-decoration: line-through;
}

.price-anchor {
  margin: 18px 0 10px;
  padding: 14px;
  border: 1px solid #dbddff;
  border-radius: 8px;
  background: #f8f8ff;
  text-align: left;
}

.price-anchor p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 8px;
  color: #33405c;
  font-size: 14px;
  line-height: 1.35;
}

.price-anchor p:last-child {
  margin-bottom: 0;
}

.price-anchor span {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.price-anchor .anchor-total {
  padding-top: 10px;
  border-top: 1px solid #dbddff;
  color: var(--blue);
  font-weight: 900;
}

.tiny-anchor {
  margin: 10px 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.saving-line {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.model-offer-card h3 {
  margin: 4px 0 14px;
  color: var(--blue);
  font-size: 30px;
}

.model-cta {
  width: min(340px, 100%);
}

.stacked-benefits {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.stacked-benefits li {
  margin-bottom: 15px;
  padding: 14px 16px;
  border-left: 5px solid var(--coral);
  border-radius: 6px;
  background: #fff7f1;
  color: #1e2430;
  font-size: 15px;
  line-height: 1.5;
}

.stacked-benefits strong {
  display: block;
  color: var(--blue);
}

.before-after-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.before-after-strip div {
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.before-after-strip div:last-child {
  background: #5a68dd;
}

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

.mini-testimonials article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 41, 73, 0.06);
}

.mini-testimonials strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
}

.mini-testimonials p {
  margin: 0;
  font-size: 14px;
}

.bonuses-model {
  background: #f7f7f7;
}

.bonuses-model article {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(12, 41, 73, 0.06);
}

.bonuses-model article img {
  border-radius: 6px;
}

.bonuses-model h3 {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 18px;
}

.bonuses-model p {
  margin: 0;
  font-size: 14px;
}

.bonuses-model .model-cta {
  display: flex;
  margin: 24px auto 0;
}

.proof-band {
  padding: 46px 0;
  background: #f1effb;
}

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

.proof-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 41, 73, 0.1);
}

.author-model {
  text-align: left;
}

.author-avatar {
  display: block;
  width: min(320px, 88vw);
  height: min(320px, 88vw);
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 54px rgba(12, 41, 73, 0.14);
}

.long-letter p {
  font-size: 16px;
}

.dashed-box {
  padding: 22px;
  border: 2px dashed var(--coral);
  border-radius: 8px;
  background: #fff4f0;
}

.dashed-box h2 {
  color: var(--coral);
}

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

  .model-hero {
    padding: 24px 0 30px;
  }

  .model-hero h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .model-section,
  .offer-card-section,
  .proof-band {
    padding: 30px 0;
  }

  .model-section h2,
  .offer-card-section h2,
  .proof-band h2 {
    font-size: 22px;
    line-height: 1.12;
  }

  .model-section p,
  .model-checks li,
  .stacked-benefits li {
    font-size: 14px;
  }

  .model-offer-card {
    padding: 18px;
  }

  .model-offer-card h3 {
    font-size: 28px;
  }

  .hero-strip,
  .two-illustrations,
  .icon-row,
  .mini-testimonials,
  .proof-grid,
  .before-after-strip,
  .bonuses-model article {
    grid-template-columns: 1fr;
  }

  .bonuses-model article {
    padding: 14px;
    gap: 12px;
  }

  .bonuses-model h3 {
    font-size: 19px;
    line-height: 1.2;
  }

  .bonuses-model p {
    font-size: 14px;
    line-height: 1.45;
  }

  .bonuses-model article img {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .image-slot.wide {
    min-height: 220px;
  }

  .final-cta h3 {
    font-size: 38px;
  }
}

@media (max-width: 430px) {
  .model-container {
    width: min(360px, calc(100% - 24px));
  }

  .model-hero h1 {
    font-size: 32px;
  }

  .model-subtitle {
    font-size: 14px;
  }

  .bonuses-model article img {
    width: min(220px, 100%);
  }

  .bonuses-model article {
    border-radius: 7px;
  }
}
