:root {
  --white: #fffcf7;
  --off-white: #f5ede2;
  --beige: #e7d3bd;
  --brown-light: #b78a63;
  --brown: #7a4e32;
  --brown-deep: #3b2418;
  --gold: #c49a5a;
  --red: #b75c45;
  --green-cta: #1f5f2b;
  --green-cta-dark: #153f1e;
  --ink: #2a2420;
  --muted: #77695f;
  --line: rgba(59, 36, 24, 0.14);
  --surface: #fff8ef;
  --shadow: 0 22px 64px rgba(59, 36, 24, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(59, 36, 24, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 36, 24, 0.014) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 7.4vw, 6.5rem);
  line-height: 0.92;
}

h2 {
  max-width: 860px;
  font-size: clamp(2.15rem, 5.3vw, 4.45rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.section-pad {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 60px);
}

.eyebrow {
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(59, 36, 24, 0.2);
  border-radius: 12px;
  background: var(--green-cta);
  color: var(--white);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(31, 95, 43, 0.24);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-cta-dark);
  box-shadow: 0 24px 52px rgba(21, 63, 30, 0.28);
}

.button-wide {
  width: 100%;
}

.trust-line {
  color: rgba(42, 36, 32, 0.66);
  font-size: 0.88rem;
  font-weight: 650;
}

.v2-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(196, 154, 90, 0.22), transparent 32%),
    linear-gradient(112deg, var(--white) 0%, #fff7ef 46%, #ead4bd 100%);
}

.hero-shell {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 690px;
}

.hero-badge {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid rgba(122, 78, 50, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(231, 211, 189, 0.5)),
    rgba(255, 248, 239, 0.8);
  color: var(--brown-deep);
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 16px 34px rgba(59, 36, 24, 0.1),
    inset 0 1px 0 rgba(255, 252, 247, 0.9);
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(196, 154, 90, 0.26);
  border-radius: inherit;
}

.hero-badge::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 252, 247, 0.68), transparent);
  transform: rotate(18deg);
  animation: badge-shine 4.8s ease-in-out infinite;
}

.hero-subtitle {
  color: var(--brown-deep);
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 750;
}

.hero-checks li::before,
.fit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-cta);
  font-weight: 900;
}

.hero-portrait {
  position: relative;
  min-height: clamp(520px, 54vw, 700px);
  overflow: hidden;
  border: 1px solid rgba(122, 78, 50, 0.14);
  border-radius: 24px 24px 64px 24px;
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0) 58%, rgba(59, 36, 24, 0.42) 100%),
    radial-gradient(circle at 14% 36%, rgba(255, 252, 247, 0.74), transparent 28%);
  pointer-events: none;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center bottom;
}

.portrait-card {
  position: absolute;
  right: clamp(18px, 4vw, 36px);
  bottom: clamp(18px, 4vw, 36px);
  left: clamp(18px, 4vw, 36px);
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(122, 78, 50, 0.16);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.84);
  box-shadow: 0 18px 45px rgba(59, 36, 24, 0.14);
  backdrop-filter: blur(12px);
}

.portrait-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-style: italic;
}

.portrait-card span {
  color: var(--brown-deep);
  font-weight: 850;
}

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

.chapter-head,
.section-intro {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.chapter-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(196, 154, 90, 0.12);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.morning-story {
  display: grid;
  gap: 12px;
  width: min(100%, 720px);
  margin: clamp(34px, 5vw, 54px) auto 0;
  text-align: center;
}

.morning-story p {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 750;
  line-height: 1.35;
}

.pain-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(30px, 5vw, 54px) auto 0;
  gap: 14px;
}

.pain-grid article,
.old-rules span,
.future-scenes article,
.access-steps article,
.proof-placeholder {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.78);
  box-shadow: 0 14px 40px rgba(59, 36, 24, 0.05);
}

.pain-grid article {
  display: grid;
  gap: 18px;
  min-height: 150px;
  padding: 22px;
}

.pain-grid span,
.access-steps span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 0.9;
}

.pain-grid p {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.3;
}

.mirror-quote {
  width: min(100%, 900px);
  margin: clamp(44px, 7vw, 86px) auto 0;
  color: var(--brown-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-style: italic;
  line-height: 1;
  text-align: center;
}

.truth-card,
.rule-shift,
.future-card {
  width: min(100%, 880px);
  margin: clamp(28px, 5vw, 54px) auto 0;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.truth-card {
  display: grid;
  gap: 18px;
}

.truth-card strong,
.rule-shift h3,
.identity-copy strong,
.social-proof {
  color: var(--brown);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.12;
}

.belief-break,
.reset-intro,
.fit-section,
.after-buy {
  background:
    linear-gradient(180deg, rgba(245, 237, 226, 0.74), rgba(255, 252, 247, 0.94));
}

.split-editorial,
.program-card,
.carol-section,
.offer-box,
.guarantee-card {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.old-rules {
  display: grid;
  gap: 12px;
}

.old-rules span {
  min-height: 58px;
  padding: 18px;
  color: var(--ink);
  font-weight: 850;
}

.rule-shift {
  display: grid;
  gap: 14px;
}

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

.language-box {
  display: grid;
  width: min(100%, 780px);
  margin: clamp(32px, 5vw, 54px) auto;
  gap: 12px;
  text-align: center;
}

.language-box p {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 720;
  line-height: 1.4;
}

.mechanism-map {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 18px;
}

.mechanism-card {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mechanism-card small {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mechanism-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.resistance h3 {
  color: var(--red);
}

.responsive h3 {
  color: var(--brown);
}

.mini-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.mini-flow span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.78);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.mini-flow i {
  width: 30px;
  height: 1px;
  background: var(--line);
}

.identity-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(196, 154, 90, 0.16), transparent 30%),
    var(--off-white);
}

.identity-copy {
  display: grid;
  width: min(100%, 900px);
  margin: 0 auto;
  gap: 18px;
  text-align: center;
}

.identity-copy strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
}

.future-scenes {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(34px, 6vw, 70px) auto 0;
  gap: 14px;
}

.future-scenes article {
  min-height: 124px;
  padding: 24px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.program-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: var(--shadow);
}

.program-card > div:first-child {
  display: grid;
  gap: 18px;
}

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

.not-list p {
  color: var(--ink);
  font-weight: 850;
}

.not-list span {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(183, 92, 69, 0.18);
  border-radius: 14px;
  background: rgba(183, 92, 69, 0.06);
  color: var(--red);
  font-weight: 800;
}

.not-list span::before {
  content: "×";
  position: absolute;
  left: 16px;
  color: var(--red);
  font-weight: 900;
}

.journey-section,
.receive-section,
.proof-section,
.faq-section,
.final-section {
  background: var(--white);
}

.journey-line {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(34px, 5vw, 58px) auto 0;
  gap: 14px;
}

.journey-line article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.82);
}

.journey-line span,
.deliverable span,
.offer-panel .eyebrow {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-line h3 {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.receive-section .section-intro {
  max-width: 970px;
}

.deliverables {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(34px, 5vw, 60px) auto 0;
  gap: 22px;
}

.deliverable {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.84);
  box-shadow: 0 18px 50px rgba(59, 36, 24, 0.07);
}

.deliverable img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.deliverable > div {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 28px);
}

.deliverable h3 {
  color: var(--ink);
}

.future-card {
  display: grid;
  gap: 18px;
}

.future-list,
.final-trust,
.authority-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.future-list span,
.final-trust span,
.authority-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.fit-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.45;
}

.not-for {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(183, 92, 69, 0.2);
  border-radius: 22px;
  background: rgba(183, 92, 69, 0.06);
}

.not-for strong {
  color: var(--brown);
}

.carol-photo {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 24px 24px 58px 24px;
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.carol-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.carol-copy {
  display: grid;
  gap: 18px;
}

.carol-copy blockquote {
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-style: italic;
  line-height: 1.02;
}

.proof-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(34px, 5vw, 58px) auto 0;
  gap: 14px;
}

.proof-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-style: dashed;
}

.proof-placeholder span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-proof {
  width: min(100%, 760px);
  margin: clamp(28px, 5vw, 50px) auto 0;
  text-align: center;
}

.offer-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(196, 154, 90, 0.15), transparent 32%),
    var(--off-white);
}

.offer-reflection {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 820px);
  margin: 0 auto clamp(34px, 6vw, 70px);
  text-align: center;
}

.offer-box {
  align-items: stretch;
}

.offer-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px 24px 58px 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offer-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow);
}

.offer-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.price-row,
.today-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span,
.today-row span {
  color: var(--muted);
  font-weight: 800;
}

.price-row strong {
  color: var(--muted);
  font-size: 1.3rem;
  text-decoration: line-through;
}

.today-row strong {
  color: var(--brown);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
}

.access-steps {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(30px, 5vw, 54px) auto 0;
  gap: 14px;
}

.access-steps article {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.access-steps p {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

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

.guarantee-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow);
}

.seal {
  position: relative;
  display: flex;
  width: 174px;
  height: 174px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 4px solid rgba(183, 92, 69, 0.78);
  border-radius: 50%;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(183, 92, 69, 0.62);
  border-radius: 50%;
}

.seal span,
.seal strong {
  position: relative;
  z-index: 1;
}

.seal span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.seal strong {
  margin: 4px 0;
  font-size: 4.1rem;
  line-height: 0.9;
}

.guarantee-card > div:last-child {
  display: grid;
  gap: 14px;
}

.guarantee-card > div:last-child > strong {
  color: var(--red);
  font-size: 1.1rem;
}

.faq-list {
  display: grid;
  width: min(100%, 900px);
  margin: clamp(28px, 5vw, 50px) auto 0;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.82);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--brown);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  padding: 0 20px 20px;
}

.final-section {
  padding-bottom: clamp(96px, 12vw, 150px);
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 90, 0.18), transparent 34%),
    linear-gradient(180deg, var(--white), var(--off-white));
}

.final-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.final-copy p {
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

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

@keyframes badge-shine {
  0%,
  48% {
    transform: translateX(0) rotate(18deg);
  }

  75%,
  100% {
    transform: translateX(430%) rotate(18deg);
  }
}

@media (min-width: 720px) {
  .pain-grid,
  .proof-grid,
  .access-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 940px) {
  .hero-shell,
  .split-editorial,
  .program-card,
  .carol-section,
  .offer-box,
  .guarantee-card {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

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

  .journey-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1060px;
    gap: 18px;
  }

  .journey-line article {
    min-height: 214px;
  }
}

@media (max-width: 719px) {
  h1,
  h2 {
    text-wrap: balance;
  }

  p,
  .button,
  .future-list span,
  .final-trust span {
    overflow-wrap: anywhere;
  }

  .section-pad {
    padding: clamp(58px, 14vw, 84px) 18px;
  }

  .v2-hero {
    padding-top: 46px;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-badge {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero-checks {
    text-align: left;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 12px 18px;
    white-space: normal;
  }

  .hero-portrait {
    min-height: 460px;
    border-radius: 18px 18px 38px 18px;
  }

  .hero-portrait img {
    object-position: center bottom;
  }

  .portrait-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .pain-grid article,
  .future-scenes article,
  .access-steps article {
    min-height: auto;
  }

  .old-rules span,
  .not-list span,
  .future-list span,
  .final-trust span,
  .authority-grid span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mini-flow i {
    display: none;
  }

  .journey-line {
    padding-left: 26px;
  }

  .journey-line article::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: -28px;
    left: -14px;
    width: 2px;
    background: rgba(122, 78, 50, 0.18);
  }

  .journey-line article:last-child::before {
    display: none;
  }

  .deliverable {
    border-radius: 18px;
  }

  .deliverable > div {
    padding: 18px;
  }

  .offer-visual img {
    height: auto;
    object-fit: contain;
  }

  .price-row,
  .today-row {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .seal {
    width: 150px;
    height: 150px;
  }

  .seal strong {
    font-size: 3.35rem;
  }

  summary {
    align-items: flex-start;
  }
}

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