:root {
  --ink: #182326;
  --muted: #5b6668;
  --paper: #fbf7f1;
  --surface: #ffffff;
  --teal: #0f6b68;
  --teal-dark: #0a4547;
  --coral: #c85d4d;
  --sage: #dce8dd;
  --blue: #d8e6ef;
  --line: rgba(24, 35, 38, 0.14);
  --shadow: 0 22px 60px rgba(24, 35, 38, 0.16);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(251, 247, 241, 0.96);
  box-shadow: 0 12px 34px rgba(24, 35, 38, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 170px;
  padding: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: min(150px, 34vw);
  max-width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.nav-active .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.nav-active .brand-logo-dark {
  display: block;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a,
.site-nav button {
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  opacity: 1;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-cta {
  padding: 11px 16px;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--coral);
  font-weight: 800;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/hero-finances-divorce.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 23, 25, 0.86) 0%, rgba(8, 23, 25, 0.62) 45%, rgba(8, 23, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 23, 25, 0.72) 0%, rgba(8, 23, 25, 0.05) 44%);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: 132px 0 78px;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8cd;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.hero-reassurance {
  max-width: 620px;
  margin: 18px 0 0;
  color: #ffd8cd;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 16px 32px rgba(200, 93, 77, 0.32);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 92px 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.intro-band {
  padding: 42px 0;
  color: #ffffff;
  background: var(--teal-dark);
}

.intro-grid,
.outcome-grid,
.access-grid,
.faq-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.intro-grid h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.intro-grid p:last-child,
.outcome-grid p,
.access-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

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

.feature-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(24, 35, 38, 0.06);
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-card p,
.split-copy p,
.proof-copy p,
.faq-list p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  background: #eef4f1;
}

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

.split-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  align-items: stretch;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(540px, 52vw, 620px);
  object-fit: cover;
  object-position: left center;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.method-note {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.timeline-item span {
  color: var(--teal);
  font-weight: 850;
}

.outcome-section {
  color: #ffffff;
  background: #263840;
}

.outcome-section .section-kicker {
  color: #ffbeb1;
}

.outcome-grid p {
  margin-top: 20px;
}

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset 0 0 0 5px #ffd8cd;
}

.proof-section {
  background: var(--paper);
}

.testimonials-heading {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.testimonials-heading p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 35, 38, 0.06);
}

.testimonial-rating {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial-card footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--teal-dark);
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.access-section {
  color: #ffffff;
  background: var(--teal);
}

.access-section .section-kicker {
  color: #ffd8cd;
}

.access-form,
.price-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.access-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.access-form input,
.access-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf9;
}

.access-form input:focus,
.access-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 107, 104, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: none;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 750;
}

.price-card {
  text-align: center;
}

.price-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card .price-includes {
  max-width: 420px;
  margin: 0 auto;
  color: var(--ink);
  font-weight: 750;
}

.faq-layout {
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(15, 107, 104, 0.18);
  outline-offset: -3px;
}

.faq-list p {
  padding: 0 20px 20px;
}

.site-footer {
  padding: 24px 0;
  color: #eaf0ff;
  background: var(--teal-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p,
.site-footer button {
  margin: 0;
  color: #eaf0ff;
  font-size: 0.95rem;
}

.footer-disclaimer {
  margin-top: 4px !important;
  color: rgba(234, 240, 255, 0.72) !important;
  font-size: 0.82rem !important;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer button {
  padding: 0;
  border: 0;
  background: transparent;
}

.site-footer button:hover,
.site-footer button:focus-visible {
  color: #ffffff;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.offer-modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.offer-modal.is-open,
.legal-modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 25, 0.66);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  max-height: 88vh;
  overflow: auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.legal-box {
  width: min(100%, 760px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f1f5f4;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-box h2 {
  margin: 0 44px 14px 0;
  color: var(--teal-dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.04;
}

.modal-box p,
.modal-box small,
.modal-price span,
.legal-box p {
  color: var(--muted);
}

.countdown-box {
  width: min(100%, 340px);
  margin: 18px auto 22px;
  padding: 16px 22px;
  border-radius: var(--radius);
  background: var(--teal-dark);
  text-align: center;
  box-shadow: 0 14px 34px rgba(24, 35, 38, 0.18);
}

.countdown-box strong {
  display: block;
  color: #ffffff;
  font-size: 2.75rem;
  line-height: 1;
}

.modal-price {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 16px;
  border-radius: var(--radius);
  background: #eef4f1;
  text-align: center;
}

.modal-price strong {
  color: var(--teal-dark);
  font-size: 2.65rem;
  line-height: 1;
}

.offer-modal form {
  display: grid;
  gap: 10px;
}

.offer-modal label {
  color: var(--ink);
  font-weight: 800;
}

.offer-modal input {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.offer-modal input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 107, 104, 0.14);
}

body.modal-open {
  overflow: hidden;
}

.thankyou-page {
  min-height: 100vh;
  background: var(--paper);
}

.thankyou-main {
  overflow: hidden;
}

.thankyou-hero {
  padding: 42px 0 86px;
  background:
    linear-gradient(135deg, rgba(220, 232, 221, 0.92), rgba(251, 247, 241, 0.96) 46%, rgba(216, 230, 239, 0.72));
}

.thankyou-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.thankyou-brand {
  display: inline-flex;
  width: min(156px, 42vw);
  margin-bottom: 70px;
}

.thankyou-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.thankyou-eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thankyou-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  line-height: 0.98;
}

.thankyou-intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.thankyou-download-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.thankyou-secondary {
  color: var(--teal-dark);
  border-color: rgba(15, 107, 104, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.thankyou-product {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.thankyou-product img {
  width: 100%;
  min-height: clamp(420px, 44vw, 590px);
  object-fit: cover;
  object-position: left center;
}

.thankyou-section {
  padding: 76px 0;
}

.thankyou-steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.thankyou-steps-grid h2,
.thankyou-section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.thankyou-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: thankyou-step;
}

.thankyou-steps li {
  counter-increment: thankyou-step;
  position: relative;
  min-height: 64px;
  padding: 18px 20px 18px 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(24, 35, 38, 0.06);
  font-weight: 760;
}

.thankyou-steps li::before {
  content: counter(thankyou-step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
}

.thankyou-start-section {
  background: #eef4f1;
}

.thankyou-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.thankyou-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(24, 35, 38, 0.06);
}

.thankyou-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.thankyou-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.thankyou-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 940px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    max-width: 140px;
  }

  .brand-logo {
    width: min(124px, 42vw);
    max-height: 36px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav button {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 118px;
  }

  .intro-grid,
  .outcome-grid,
    .access-grid,
    .faq-layout,
    .split-grid,
    .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .thankyou-layout,
  .thankyou-steps-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .thankyou-brand {
    margin-bottom: 52px;
  }

  .thankyou-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

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

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

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 23, 25, 0.9) 0%, rgba(8, 23, 25, 0.68) 70%, rgba(8, 23, 25, 0.38) 100%),
      linear-gradient(0deg, rgba(8, 23, 25, 0.76) 0%, rgba(8, 23, 25, 0.12) 60%);
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .hero-subtitle {
    margin-top: 18px;
  }

  .hero-reassurance {
    margin-top: 16px;
  }

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

  .thankyou-hero {
    padding: 30px 0 62px;
  }

  .thankyou-product img {
    min-height: 320px;
  }

  .section {
    padding: 66px 0;
  }

  .thankyou-section {
    padding: 58px 0;
  }

  .intro-band {
    padding: 40px 0;
  }

  .intro-grid,
  .outcome-grid,
  .access-grid,
  .faq-layout,
  .split-grid,
  .proof-grid {
    gap: 26px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    min-height: 0;
    padding: 20px;
  }

  .thankyou-card {
    min-height: 0;
    padding: 20px;
  }

  .thankyou-card span {
    margin-bottom: 26px;
  }

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

  .testimonial-card {
    min-height: 0;
    padding: 20px;
  }

  .testimonials-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .testimonials-heading p,
  .testimonial-note {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .image-panel {
    aspect-ratio: 4 / 3;
  }

  .image-panel img {
    height: 100%;
    min-height: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .access-form,
  .price-card {
    padding: 18px;
  }

  .modal-box {
    padding: 24px 20px;
  }

  .modal-price strong {
    font-size: 2.25rem;
  }

  .footer-inner,
  .site-footer nav {
    align-items: center;
    justify-content: center;
  }
}
