:root {
  --navy: #061b2e;
  --navy-2: #0d263d;
  --ink: #102033;
  --muted: #667383;
  --paper: #fbf8f1;
  --paper-2: #f2eadf;
  --white: #ffffff;
  --line: rgba(6, 27, 46, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --orange: #f47a1f;
  --orange-dark: #d86512;
  --green: #1e8a5a;
  --green-soft: #e6f2ec;
  --shadow-soft: 0 28px 90px rgba(6, 27, 46, 0.12);
  --shadow-deep: 0 38px 120px rgba(6, 27, 46, 0.22);
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(244, 122, 31, 0.22);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(244, 122, 31, 0.5);
  outline-offset: 3px;
}

.container {
  width: min(1220px, calc(100% - 52px));
  margin: 0 auto;
}

.section-pad {
  padding: 118px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 9.2vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.88;
}

h2 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
}

.button,
.mobile-sticky-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 25px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(244, 122, 31, 0.26);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 20px 46px rgba(244, 122, 31, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 34px;
  padding-bottom: 116px;
  background:
    linear-gradient(90deg, rgba(6, 27, 46, 0.035) 0 1px, transparent 1px) 0 0 / 96px 96px,
    radial-gradient(circle at 78% 18%, rgba(30, 138, 90, 0.07), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #f6efe5 100%);
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(6, 27, 46, 0.12);
  pointer-events: none;
}

.hero-masthead {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
}

.editorial-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}

.editorial-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.editorial-brand small,
.hero-masthead p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.78fr);
  gap: 78px;
  align-items: end;
  padding-top: 58px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .eyebrow {
  max-width: 520px;
  color: var(--green);
}

.hero-subhead {
  max-width: 700px;
  margin-bottom: 24px;
  color: #3f5062;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.48;
}

.guarantee-line {
  max-width: 660px;
  margin-bottom: 30px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(6, 27, 46, 0.18);
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 780;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
}

.hero-offer-copy {
  display: grid;
  gap: 5px;
  max-width: 340px;
}

.hero-offer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-offer-copy small,
.hero-offer-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.hero-offer-copy span {
  color: var(--green);
  font-weight: 760;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 16px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 780;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.outcome-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(150, 134, 112, 0.18);
  border-radius: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 74px rgba(6, 27, 46, 0.13);
}

.outcome-panel::before {
  content: none;
}

.outcome-panel > * {
  position: relative;
  z-index: 1;
}

.outcome-header,
.lab-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 0;
  border-bottom: 0;
}

.outcome-header p,
.lab-top span {
  margin: 0;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.outcome-header span,
.lab-top strong {
  border: 1px solid rgba(30, 138, 90, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.a1c-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.a1c-metrics small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a1c-metrics strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.graph-wrap {
  margin-bottom: 18px;
}

.a1c-graph {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.grid-line {
  stroke: rgba(6, 27, 46, 0.075);
  stroke-width: 1;
}

.area-fill {
  fill: url("#a1cArea");
}

.trend-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.point {
  fill: var(--white);
  stroke: var(--green);
  stroke-width: 3;
}

.final-point {
  fill: var(--green);
  stroke: var(--white);
  stroke-width: 4;
  filter: drop-shadow(0 8px 12px rgba(30, 138, 90, 0.22));
}

.axis-label {
  fill: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.final-label {
  fill: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.graph-note {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 760;
}

.result-disclaimer {
  margin: 0;
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.problem-section,
.proof-section {
  background: var(--white);
}

.refund-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 22%, rgba(30, 138, 90, 0.22), transparent 35%),
    radial-gradient(circle at 84% 18%, rgba(244, 122, 31, 0.13), transparent 30%),
    var(--navy);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.84fr);
  gap: 86px;
  align-items: start;
}

.problem-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #4f5d6d;
  font-size: 1.18rem;
}

.pain-panel {
  padding: 10px 0 10px 34px;
  border-left: 1px solid rgba(6, 27, 46, 0.18);
}

.pain-panel ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.pain-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 750;
}

.pain-panel li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.pain-panel p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.22;
}

.story-section,
.myths-section,
.final-cta {
  background:
    linear-gradient(90deg, rgba(6, 27, 46, 0.045) 0 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.founder-note {
  position: relative;
  padding: 42px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.founder-note::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.note-label {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.founder-note blockquote {
  margin: 0 0 34px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.founder-note span {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.system-heading {
  max-width: 920px;
  margin-bottom: 56px;
}

.system-heading h2 {
  max-width: 900px;
  margin-bottom: 18px;
}

.system-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(6, 27, 46, 0.72);
  font-size: 1.13rem;
  font-weight: 620;
  line-height: 1.58;
}

.system-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.82fr);
  gap: clamp(48px, 6vw, 76px);
  align-items: stretch;
}

.system-card,
.system-stack article {
  border: 1px solid rgba(6, 27, 46, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(6, 27, 46, 0.06);
}

.system-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 4vw, 42px);
}

.system-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.system-card > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.62;
}

.system-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.system-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(30, 138, 90, 0.15);
  border-radius: 16px;
  padding: 11px 12px;
  background: rgba(230, 242, 236, 0.38);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.3;
}

.system-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.system-stack {
  position: relative;
  display: grid;
  gap: 12px;
}

.system-stack::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 32px;
  width: 1px;
  background: linear-gradient(180deg, rgba(30, 138, 90, 0), rgba(30, 138, 90, 0.28), rgba(244, 122, 31, 0.18), rgba(30, 138, 90, 0.28), rgba(30, 138, 90, 0));
}

.system-stack article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.system-stack h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.system-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.system-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(6, 27, 46, 0.09);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 34px);
  margin-top: 46px;
  background:
    radial-gradient(circle at 22% 0%, rgba(30, 138, 90, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(6, 27, 46, 0.08);
  text-align: center;
}

.system-cta .button {
  min-height: 54px;
  padding-right: 28px;
  padding-left: 28px;
  font-size: 1rem;
}

.system-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.story-copy p:not(.eyebrow),
.section-heading p,
.proof-copy p,
.final-copy p {
  max-width: 720px;
  font-size: 1.13rem;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

.timeline-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 122, 31, 0.14), transparent 30%),
    var(--navy);
  color: var(--white);
}

.dark-heading h2,
.timeline-section h2 {
  color: var(--white);
}

.dark-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.timeline-item {
  position: relative;
  padding: 34px 30px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--navy);
}

.timeline-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.timeline-item p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.disclaimer {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.myth-table {
  border-top: 1px solid var(--line);
}

.myth-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.myth-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.myth-row div:last-child span {
  color: var(--green);
}

.myth-row p {
  margin: 0;
}

.myth-row div:first-child p {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 820;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-strip p {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 78px;
  align-items: center;
}

.proof-note {
  margin-top: 28px;
  border-left: 3px solid var(--green);
  padding-left: 18px;
  color: var(--navy) !important;
  font-weight: 760;
}

.lab-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.lab-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(6, 27, 46, 0.08);
  pointer-events: none;
}

.lab-top {
  margin-bottom: 30px;
}

.lab-top h3 {
  max-width: 390px;
  margin-top: 6px;
  font-size: 1.45rem;
}

.lab-top p {
  margin: 0;
  font-size: 0.98rem;
}

.lab-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lab-column {
  padding: 26px;
  background: var(--white);
}

.lab-column.after {
  background: var(--green-soft);
}

.lab-column small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-column strong {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.5vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.lab-column p {
  margin: 0;
  font-size: 0.98rem;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(6, 27, 46, 0.035) 0 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
}

.process-grid {
  display: grid;
  width: min(100% - 48px, 1240px);
  max-width: 1240px;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.process-copy {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-copy h2 {
  margin-bottom: 18px;
  line-height: 0.98;
}

.process-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(6, 27, 46, 0.72);
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.58;
}

.process-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 0;
  text-align: center;
}

.process-cta .button {
  min-height: 58px;
  padding-right: 32px;
  padding-left: 32px;
  font-size: 1.03rem;
  box-shadow: 0 18px 42px rgba(244, 122, 31, 0.22);
}

.process-cta p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: 400px;
  border: 1px solid rgba(30, 138, 90, 0.16);
  border-radius: 34px;
  padding: clamp(42px, 5vw, 62px) clamp(54px, 6vw, 84px);
  background:
    radial-gradient(circle at 50% 50%, rgba(30, 138, 90, 0.095), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 76px rgba(6, 27, 46, 0.09);
  overflow: hidden;
}

.journey-map::before,
.journey-map::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(54px, 6vw, 84px) + ((100% - (clamp(54px, 6vw, 84px) * 2)) / 10));
  left: calc(clamp(54px, 6vw, 84px) + ((100% - (clamp(54px, 6vw, 84px) * 2)) / 10));
  height: 2px;
  border-radius: 999px;
}

.journey-map::before {
  background: rgba(30, 138, 90, 0.16);
}

.journey-map::after {
  background: linear-gradient(90deg, rgba(30, 138, 90, 0.26), rgba(244, 122, 31, 0.22), rgba(30, 138, 90, 0.32));
  transform: scaleX(0);
  transform-origin: left;
  animation: journeyLine 1000ms ease 260ms forwards;
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(130px, 1fr) 44px minmax(130px, 1fr);
  align-items: center;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  text-align: center;
  opacity: 0;
  animation: journeyStepReveal 560ms ease forwards;
}

.journey-step:nth-child(odd) .journey-copy {
  grid-row: 1;
}

.journey-step:nth-child(even) .journey-copy {
  grid-row: 3;
}

.journey-step:nth-child(2) {
  animation-delay: 180ms;
}

.journey-step:nth-child(3) {
  animation-delay: 300ms;
}

.journey-step:nth-child(4) {
  animation-delay: 420ms;
}

.journey-step:nth-child(5) {
  animation-delay: 540ms;
}

.journey-step > span {
  grid-row: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 138, 90, 0.22);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 27, 46, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.journey-copy {
  width: min(100%, 220px);
  text-align: left;
}

.journey-step h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.2;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.journey-step:hover > span {
  border-color: rgba(30, 138, 90, 0.42);
  transform: translateY(-2px);
}

@keyframes journeyLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes journeyLineVertical {
  to {
    transform: scaleY(1);
  }
}

@keyframes journeyStepReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.refund-card {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background: transparent;
  color: var(--white);
  text-align: center;
  box-shadow: none;
}

.refund-card h2 {
  display: grid;
  gap: 0;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-size: clamp(3.2rem, 6.2vw, 6.35rem);
  line-height: 0.98;
}

.refund-card h2 span {
  display: block;
  white-space: nowrap;
}

.refund-card > p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.refund-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 34px 0 38px;
  list-style: none;
}

.refund-points li {
  border: 1px solid rgba(30, 138, 90, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 780;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.refund-card .button {
  min-height: 56px;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0 20px 48px rgba(244, 122, 31, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.refund-card .button:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 24px 58px rgba(244, 122, 31, 0.36);
}

.refund-note {
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.88rem !important;
  font-weight: 720;
  line-height: 1.4;
}

.final-cta {
  padding-bottom: 154px;
}

.final-close {
  width: min(100% - 48px, 980px);
  display: grid;
  justify-items: center;
  gap: 22px;
  border: 1px solid rgba(6, 27, 46, 0.1);
  border-radius: 34px;
  padding: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 15%, rgba(30, 138, 90, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 90px rgba(6, 27, 46, 0.11);
  text-align: center;
}

.final-close h2 {
  max-width: 760px;
  margin: 0;
}

.final-close > p:not(.eyebrow):not(.final-reassurance) {
  max-width: 700px;
  margin: 0;
  color: rgba(6, 27, 46, 0.68);
  font-weight: 650;
  line-height: 1.6;
}

.final-close .compact-offer {
  width: min(100%, 560px);
  margin: 8px 0 0;
}

.final-close .button {
  min-height: 58px;
  padding: 0 34px;
  box-shadow: 0 22px 54px rgba(244, 122, 31, 0.3);
}

.final-reassurance {
  margin: -2px 0 0;
  color: var(--muted) !important;
  font-size: 0.95rem;
  font-weight: 760;
}

.microcopy {
  color: var(--navy) !important;
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  padding: 36px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.booking-form h3 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.form-header {
  display: grid;
  gap: 16px;
  padding-bottom: 2px;
}

.form-header > p,
.form-microcopy,
.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(6, 27, 46, 0.11);
  background: rgba(6, 27, 46, 0.08);
}

.price-row div {
  display: grid;
  gap: 4px;
  padding: 15px;
  background: var(--paper);
}

.price-row span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.booking-form fieldset {
  display: grid;
  gap: 16px;
  min-width: 0;
  border: 0;
  border-top: 1px solid rgba(6, 27, 46, 0.11);
  padding: 22px 0 0;
  margin: 0;
}

.booking-form legend {
  padding: 0 12px 0 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.full-span {
  grid-column: 1 / -1;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.booking-form input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(6, 27, 46, 0.14);
  border-radius: 8px;
  padding: 0 15px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.booking-form input::placeholder {
  color: #9aa3af;
}

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

body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 46, 0.5);
  backdrop-filter: blur(10px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(92vh, 920px);
  overflow: auto;
  border: 1px solid rgba(6, 27, 46, 0.12);
  border-radius: 30px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 90% 8%, rgba(30, 138, 90, 0.12), transparent 30%),
    var(--white);
  box-shadow: 0 34px 100px rgba(6, 27, 46, 0.28);
  transform: translateY(14px) scale(0.97);
  transition: transform 240ms ease;
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 27, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-modal__close:hover {
  transform: translateY(-1px);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(6, 27, 46, 0.12);
}

.booking-modal__intro {
  display: grid;
  gap: 12px;
  max-width: 600px;
  padding: 6px 52px 22px 0;
}

.booking-modal__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1;
}

.booking-modal__intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(6, 27, 46, 0.66);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.booking-modal .booking-form {
  border-radius: 24px;
  padding: clamp(20px, 4vw, 30px);
  box-shadow: 0 18px 52px rgba(6, 27, 46, 0.08);
}

.modal-reassurance {
  margin: 2px 0 0;
  color: var(--green) !important;
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-nudge {
  position: fixed;
  right: 24px;
  bottom: 112px;
  z-index: 45;
  width: min(390px, calc(100% - 48px));
  display: grid;
  gap: 12px;
  border: 1px solid rgba(6, 27, 46, 0.11);
  border-left: 4px solid var(--orange);
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(30, 138, 90, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 80px rgba(6, 27, 46, 0.18);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.booking-nudge.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.booking-nudge__close {
  justify-self: end;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.booking-nudge .eyebrow {
  margin: -4px 0 0;
}

.booking-nudge h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}

.booking-nudge p:not(.eyebrow) {
  margin: 0;
  color: rgba(6, 27, 46, 0.66);
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1.48;
}

.booking-nudge .button {
  width: 100%;
  min-height: 50px;
}

.option-group,
.slot-group {
  display: grid;
  gap: 10px;
}

.option-group {
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: center;
}

.option-group p,
.slot-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.option-group p {
  grid-column: 1 / -1;
}

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

.pill-option {
  display: block;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-option span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 27, 46, 0.13);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  transition: border 160ms ease, background 160ms ease, color 160ms ease;
}

.pill-option input:checked + span {
  border-color: rgba(30, 138, 90, 0.45);
  background: var(--green-soft);
  color: var(--navy);
}

.pill-option input:focus-visible + span {
  outline: 3px solid rgba(244, 122, 31, 0.5);
  outline-offset: 3px;
}

.time-options {
  grid-template-columns: 1fr;
}

.consent-line {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  border-top: 1px solid rgba(6, 27, 46, 0.11);
  padding-top: 20px;
}

.consent-line input {
  margin-top: 3px;
  accent-color: var(--green);
}

.consent-line span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}

.payment-note {
  border-top: 1px solid rgba(6, 27, 46, 0.09);
  padding-top: 14px;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  min-height: 54px;
  flex-direction: column;
  gap: 3px;
}

.mobile-sticky-cta span,
.mobile-sticky-cta small {
  display: block;
}

.mobile-sticky-cta small {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.82;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 620ms ease forwards;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 260ms;
}

.delay-4 {
  animation-delay: 340ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1040px) {
  .section-pad {
    padding: 92px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .problem-grid,
  .story-grid,
  .proof-grid,
  .process-grid,
  .final-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .outcome-panel,
  .lab-card,
  .booking-form {
    max-width: 700px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, 1220px);
  }

  .section-pad {
    padding: 74px 0;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 78px;
  }

  .hero::after {
    top: 96px;
  }

  .hero-masthead {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 42px;
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 5.6rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: 1.03;
  }

  p {
    font-size: 1rem;
  }

  .hero-subhead {
    font-size: 1.16rem;
  }

  .hero-actions,
  .cta-strip {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .refund-card h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .refund-card h2 span {
    white-space: normal;
  }

  .hero-offer-copy {
    max-width: none;
  }

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

  .outcome-panel,
  .founder-note,
  .lab-card,
  .booking-form {
    padding: 24px;
  }

  .final-close {
    width: min(100% - 30px, 980px);
    border-radius: 26px;
    padding: 34px 20px 38px;
  }

  .booking-modal {
    align-items: end;
    padding: 10px;
  }

  .booking-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 24px;
    padding: 20px;
  }

  .booking-modal__intro {
    padding-right: 48px;
  }

  .booking-modal__intro h2 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .booking-modal .form-grid,
  .booking-modal .option-grid,
  .booking-modal .time-options {
    grid-template-columns: 1fr;
  }

  .booking-modal .form-actions {
    grid-template-columns: 1fr;
  }

  .booking-modal .secondary-button {
    order: 2;
  }

  .booking-nudge {
    right: 12px;
    bottom: 104px;
    left: 12px;
    width: auto;
    border-radius: 22px;
    padding: 18px;
  }

  .a1c-metrics,
  .lab-results,
  .myth-row {
    grid-template-columns: 1fr;
  }

  .a1c-metrics {
    gap: 18px;
  }

  .axis-label {
    font-size: 12px;
  }

  .final-label {
    font-size: 18px;
  }

  .pain-panel {
    padding-left: 20px;
  }

  .pain-panel p {
    font-size: 1.38rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    row-gap: 0;
  }

  .timeline-item {
    padding: 0 0 28px 24px;
  }

  .timeline-item::before {
    top: 8px;
  }

  .timeline-item p {
    max-width: none;
  }

  .myth-row {
    gap: 16px;
    padding: 28px 0;
  }

  .process-cta {
    justify-items: center;
  }

  .process-cta p {
    text-align: center;
  }

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

  .journey-map {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    border-radius: 24px;
    padding: 28px 18px;
  }

  .journey-map::before,
  .journey-map::after {
    top: 42px;
    bottom: 42px;
    left: 40px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .journey-map::after {
    transform: scaleY(0);
    transform-origin: top;
    animation-name: journeyLineVertical;
  }

  .journey-step {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto;
    justify-items: start;
    gap: 14px;
    text-align: left;
  }

  .journey-step > span,
  .journey-step:nth-child(odd) .journey-copy,
  .journey-step:nth-child(even) .journey-copy {
    grid-row: auto;
  }

  .journey-step > span {
    grid-column: 1;
  }

  .journey-copy {
    grid-column: 2;
    width: 100%;
  }

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

  .refund-card h2,
  .refund-card > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .refund-points {
    justify-content: center;
  }

  .refund-card .button {
    width: min(100%, 420px);
  }

  .refund-section {
    padding-bottom: 180px;
  }

  .refund-card {
    padding-top: 52px;
    padding-bottom: 68px;
  }

  .promise-seal {
    width: 82px;
    height: 82px;
    font-size: 0.84rem;
  }

  .form-grid,
  .price-row,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    gap: 22px;
    padding: 24px;
  }

  .pill-option span {
    justify-content: flex-start;
    text-align: left;
  }

  .final-cta {
    padding-bottom: 122px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

/* Conversion-focused refinements */
.section-pad {
  padding: 96px 0;
}

.hero {
  min-height: auto;
  padding-bottom: 94px;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.35rem, 6.4vw, 6rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
}

.hero-subhead {
  max-width: 660px;
  font-size: clamp(1.12rem, 1.55vw, 1.28rem);
}

.offer-panel {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 26px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(6, 27, 46, 0.1);
  background: rgba(6, 27, 46, 0.08);
}

.offer-panel div {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.offer-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-panel strong,
.offer-panel del {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1;
}

.offer-panel del {
  color: var(--muted);
  text-decoration-thickness: 2px;
}

.compact-offer {
  margin-top: 28px;
}

.hero-actions {
  margin-bottom: 26px;
}

.hero-actions p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.problem-section .problem-copy p:not(.eyebrow) {
  display: none;
}

.proof-copy .button {
  margin-top: 10px;
}

.lab-note {
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--navy);
  font-weight: 760;
}

.section-cta {
  margin-top: 34px;
}

.founder-note {
  padding: 30px;
}

.founder-note blockquote {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.founder-note span {
  display: none;
}

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

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-list p {
  max-width: 780px;
  margin: 12px 0 0;
  font-size: 1rem;
}

.final-grid {
  align-items: start;
}

.multi-step-form {
  gap: 22px;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.step-progress span {
  height: 4px;
  border-radius: 999px;
  background: rgba(6, 27, 46, 0.1);
}

.step-progress span.active {
  background: var(--green);
}

.form-step {
  display: none !important;
}

.form-step.active {
  display: grid !important;
}

.form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border-top: 1px solid rgba(6, 27, 46, 0.1);
  padding-top: 18px;
}

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

.secondary-button:hover {
  background: #eee5d9;
}

.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.hidden {
  display: none !important;
}

.mobile-sticky-cta {
  min-height: 58px;
  padding: 8px 18px;
}

.mobile-sticky-cta small {
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .section-pad {
    padding: 68px 0;
  }

  .hero {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    line-height: 1;
  }

  .offer-panel {
    grid-template-columns: 1fr;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}

/* Sticky conversion and visual polish */
body {
  padding-bottom: 104px;
}

.area-fill {
  opacity: 0;
  animation: fadeArea 900ms ease 980ms forwards;
}

.trend-line {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: drawLine 1.4s cubic-bezier(0.22, 1, 0.36, 1) 520ms forwards;
}

.point {
  opacity: 0;
  animation: popPoint 420ms ease forwards;
}

.point:nth-of-type(1) {
  animation-delay: 900ms;
}

.point:nth-of-type(2) {
  animation-delay: 1050ms;
}

.point:nth-of-type(3) {
  animation-delay: 1200ms;
}

.final-point {
  animation: popPoint 420ms ease 1350ms forwards, pulsePoint 2.4s ease-in-out 1900ms infinite;
}

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 620ms ease forwards;
}

.hero-copy .reveal-item:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy .reveal-item:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy .reveal-item:nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy .reveal-item:nth-child(5) {
  animation-delay: 320ms;
}

.hero-copy .reveal-item:nth-child(6) {
  animation-delay: 400ms;
}

.hero-copy .reveal-item:nth-child(7) {
  animation-delay: 480ms;
}

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

.pain-panel .concern-grid li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(6, 27, 46, 0.1);
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pain-panel .concern-grid li::before {
  content: none;
}

.pain-panel .concern-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 138, 90, 0.26);
  background: rgba(255, 255, 255, 0.86);
}

.line-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
}

.line-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.proof-sparkline {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 18px;
}

.spark-area {
  fill: rgba(30, 138, 90, 0.12);
}

.spark-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 3;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.proof-sparkline circle {
  fill: var(--white);
  stroke: var(--green);
  stroke-width: 3;
}

.form-summary-card {
  position: sticky;
  top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: min(520px, 100%);
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(6, 27, 46, 0.1);
  background: rgba(6, 27, 46, 0.08);
  box-shadow: 0 18px 55px rgba(6, 27, 46, 0.08);
}

.form-summary-card div,
.form-summary-card p {
  background: rgba(255, 255, 255, 0.74);
  padding: 15px;
}

.form-summary-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 760;
}

.form-summary-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-summary-card strong,
.form-summary-card del {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.form-summary-card del {
  color: var(--muted);
}

.form-step.active {
  animation: stepFade 340ms ease;
}

.sticky-offer-bar {
  position: fixed;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 40;
  width: min(980px, calc(100% - 48px));
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  border: 1px solid rgba(6, 27, 46, 0.12);
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.sticky-offer-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 24px 70px rgba(6, 27, 46, 0.18);
}

.mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 20px 52px rgba(6, 27, 46, 0.18);
}

.sticky-price {
  display: grid;
  gap: 2px;
}

.sticky-price strong {
  color: var(--navy);
  font-size: 1rem;
}

.sticky-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeArea {
  to {
    opacity: 1;
  }
}

@keyframes popPoint {
  from {
    opacity: 0;
    transform: scale(0.7);
    transform-origin: center;
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
  }
}

@keyframes pulsePoint {
  50% {
    filter: drop-shadow(0 8px 18px rgba(30, 138, 90, 0.44));
  }
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trend-line,
  .spark-line {
    stroke-dashoffset: 0 !important;
  }

  .area-fill,
  .point {
    opacity: 1 !important;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 88px;
  }

  .mobile-sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: auto;
    align-items: stretch;
    gap: 7px;
    border: 1px solid rgba(6, 27, 46, 0.12);
    border-radius: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta small {
    color: var(--muted);
    text-align: center;
    opacity: 1;
  }

  .mobile-sticky-cta > span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(244, 122, 31, 0.22);
  }

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

  .form-summary-card {
    position: static;
    grid-template-columns: 1fr;
  }

  .sticky-offer-bar {
    display: none;
  }
}

/* Centered discovery hero */
.hero {
  min-height: calc(100vh - 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 118px;
  text-align: center;
}

.hero::after {
  opacity: 0.55;
}

.hero::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 138, 90, 0.13), transparent 64%);
  pointer-events: none;
}

.hero-masthead {
  width: min(1220px, calc(100% - 52px));
  margin: 0 auto;
  padding-bottom: 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.hero-copy {
  max-width: 980px;
  display: grid;
  justify-items: center;
}

.hero-copy .eyebrow {
  max-width: none;
  color: var(--green);
}

.hero h1 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.1rem, 6vw, 5.65rem);
  line-height: 1;
}

.hero-subhead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

.curiosity-callout {
  width: fit-content;
  max-width: min(100%, 620px);
  margin: 4px auto 22px;
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(230, 242, 236, 0.66));
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(6, 27, 46, 0.06);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 32px;
}

.hero-actions p {
  max-width: 470px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero .trust-list {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  margin-top: 4px;
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero .trust-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 104px;
  }

  .hero-masthead {
    width: min(100% - 30px, 1220px);
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.04;
  }

  .hero-subhead {
    font-size: 1.08rem;
  }

  .curiosity-callout {
    width: min(100%, 360px);
    border-radius: 16px;
    padding: 11px 14px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-actions p {
    max-width: none;
    text-align: center;
  }

}

/* The Real Fear diagnostic cycle */
.problem-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 27, 46, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.028) 1px, transparent 1px),
    var(--white);
  background-size: 56px 56px;
}

.problem-grid {
  width: min(100% - 48px, 1240px);
  max-width: 1240px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px clamp(80px, 8vw, 100px);
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.problem-copy {
  display: grid;
  align-self: center;
  align-content: center;
  max-width: 540px;
  justify-self: start;
}

.problem-copy .eyebrow {
  color: var(--orange);
}

.problem-copy h2 {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 3.8vw, 3.95rem);
  line-height: 1.03;
}

.problem-copy p:not(.eyebrow) {
  display: block;
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.58;
}

.fear-cycle-panel {
  position: relative;
  width: min(100%, 540px);
  align-self: center;
  justify-self: center;
  display: grid;
}

.fear-cycle-graphic {
  position: relative;
  width: 100%;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(6, 27, 46, 0.08);
}

.fear-cycle-graphic {
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 30px);
}

.fear-cycle-graphic::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 138, 90, 0.075), transparent 68%);
  pointer-events: none;
}

.fear-cycle-graphic svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  overflow: hidden;
}

.cycle-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: rgba(30, 138, 90, 0.5);
  stroke-width: 2;
  stroke-dasharray: 1120;
  stroke-dashoffset: 1120;
  animation: drawCycle 1.4s cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.cycle-node {
  fill: var(--green);
  stroke: var(--white);
  stroke-width: 4;
  filter: drop-shadow(0 8px 14px rgba(30, 138, 90, 0.16));
}

.cycle-node.warning {
  fill: var(--orange);
  filter: drop-shadow(0 8px 14px rgba(244, 122, 31, 0.18));
}

.cycle-node.peak {
  fill: #267c58;
  filter: drop-shadow(0 8px 14px rgba(30, 138, 90, 0.2));
}

.cycle-label {
  fill: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 760;
}

.cycle-label-start {
  fill: var(--orange);
  font-weight: 850;
}

.cycle-label-peak {
  fill: var(--navy);
  font-weight: 850;
}

.cycle-item {
  opacity: 0;
  transform: translateY(8px);
  animation: cycleItemIn 460ms ease forwards;
}

.cycle-item-1 {
  animation-delay: 560ms;
}

.cycle-item-2 {
  animation-delay: 720ms;
}

.cycle-item-3 {
  animation-delay: 880ms;
}

.cycle-item-4 {
  animation-delay: 1040ms;
}

.cycle-item-5 {
  animation-delay: 1200ms;
}

.cycle-explanation-card {
  position: relative;
  width: 100%;
  grid-column: 1 / -1;
  display: grid;
  gap: 13px;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-left: 2px solid rgba(30, 138, 90, 0.32);
  border-radius: 24px;
  padding: clamp(26px, 3.6vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(6, 27, 46, 0.08);
}

.cycle-card-title,
.cycle-card-body,
.cycle-transition {
  margin: 0;
}

.cycle-card-title {
  max-width: 760px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 1.7vw, 1.52rem);
  line-height: 1.28;
}

.cycle-card-body {
  max-width: 900px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.58;
}

.cycle-transition {
  max-width: 920px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

@keyframes drawCycle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes cycleItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-line {
    stroke-dashoffset: 0 !important;
  }

  .cycle-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 30px, 1240px);
  }

  .fear-cycle-panel {
    justify-self: stretch;
    width: 100%;
    max-width: 540px;
  }

  .cycle-explanation-card {
    grid-column: auto;
  }

  .problem-copy h2,
  .problem-copy p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .problem-section {
    background-size: 42px 42px;
  }

  .problem-grid {
    gap: 34px;
  }

  .problem-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.03;
  }

  .fear-cycle-graphic {
    border-radius: 22px;
    padding: 18px 8px;
  }

  .cycle-explanation-card {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .cycle-label {
    font-size: 15px;
  }

  .cycle-card-title {
    font-size: 1.22rem;
  }
}

/* Proof carousel section */
.proof-section {
  background:
    linear-gradient(rgba(6, 27, 46, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.024) 1px, transparent 1px),
    var(--white);
  background-size: 56px 56px;
}

.proof-grid {
  width: min(100% - 48px, 1240px);
  max-width: 1240px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(72px, 7vw, 96px);
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.proof-copy {
  max-width: 560px;
  justify-self: start;
}

.proof-copy .eyebrow {
  color: var(--orange);
}

.proof-mobile-eyebrow {
  display: none;
  color: var(--orange);
}

.proof-copy h2 {
  max-width: 560px;
  margin-bottom: 24px;
}

.proof-copy > p:not(.eyebrow):not(.proof-note) {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.58;
}

.proof-interest-line {
  margin-top: 20px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.45;
}

.proof-micro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 18px;
  list-style: none;
}

.proof-micro-list li {
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(230, 242, 236, 0.56);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-note {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.case-carousel {
  position: relative;
  width: min(100%, 620px);
  min-height: 610px;
  justify-self: center;
  border: 1px solid rgba(6, 27, 46, 0.09);
  border-radius: 32px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 80px rgba(6, 27, 46, 0.13);
  overflow: hidden;
}

.case-carousel::before,
.case-carousel::after {
  content: "";
  position: absolute;
  inset: 34px;
  z-index: 0;
  border: 1px solid rgba(6, 27, 46, 0.06);
  border-radius: 30px;
  background: rgba(250, 248, 244, 0.5);
  transform: rotate(-2.5deg) translateX(-16px);
  pointer-events: none;
}

.case-carousel::after {
  transform: rotate(2.5deg) translateX(16px);
}

.case-slides {
  position: relative;
  z-index: 1;
  min-height: 530px;
}

.case-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(6, 27, 46, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
}

.case-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.case-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: start;
}

.case-meta span {
  grid-column: 1 / -1;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-meta h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.case-meta p {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.case-meta strong {
  grid-row: 2 / span 2;
  grid-column: 2;
  border: 1px solid rgba(30, 138, 90, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.photo-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 6px;
  border: 1px dashed rgba(6, 27, 46, 0.18);
  border-radius: 20px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(6, 27, 46, 0.035), transparent),
    rgba(250, 248, 244, 0.82);
  color: var(--navy);
  text-align: center;
}

.photo-placeholder.after {
  background:
    linear-gradient(135deg, rgba(30, 138, 90, 0.08), transparent),
    rgba(250, 248, 244, 0.92);
}

.photo-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1;
}

.photo-placeholder small {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.story-proof-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(30, 138, 90, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(230, 242, 236, 0.46);
}

.story-proof-stats strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
}

.story-proof-stats span {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--white);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.story-proof-stats.pending strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.story-proof-line {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.42;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-tags span {
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(230, 242, 236, 0.58);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.carousel-dots {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(6, 27, 46, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.active {
  width: 24px;
  background: var(--green);
}

@media (max-width: 1040px) {
  .proof-grid {
    grid-template-columns: 1fr;
    width: min(100% - 30px, 1240px);
    gap: 34px;
  }

  .proof-mobile-eyebrow {
    display: block;
    margin-bottom: -12px;
  }

  .proof-desktop-eyebrow {
    display: none;
  }

  .case-carousel {
    max-width: 680px;
  }

  .proof-copy {
    max-width: 680px;
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .system-heading {
    margin-bottom: 34px;
  }

  .system-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .system-points {
    grid-template-columns: 1fr;
  }

  .system-card,
  .system-stack article {
    border-radius: 20px;
  }

  .system-stack article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .system-stack::before {
    left: 29px;
  }

  .system-cta {
    margin-top: 32px;
  }

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

@media (max-width: 720px) {
  .proof-section {
    background-size: 42px 42px;
  }

  .case-carousel {
    min-height: 690px;
    border-radius: 22px;
    padding: 18px;
  }

  .case-slides {
    min-height: 612px;
  }

  .case-slide {
    padding: 18px;
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

  .case-meta strong {
    grid-row: auto;
    grid-column: auto;
    width: fit-content;
  }

  .case-photos,
  .story-proof-stats {
    grid-template-columns: 1fr;
  }

  .photo-placeholder {
    min-height: 126px;
  }

  .story-proof-stats {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Serious reversal repositioning pass */
.hero {
  min-height: calc(100vh - 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 52px, 1040px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  margin: 0 auto;
}

.hero-copy {
  max-width: 980px;
  display: grid;
  justify-items: center;
}

.hero h1 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 6.45vw, 6.6rem);
  line-height: 0.96;
  text-align: center;
}

.curiosity-callout {
  width: min(100%, 840px);
  max-width: 840px;
  margin: 16px auto 30px;
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-radius: 28px;
  padding: 17px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(230, 242, 236, 0.62));
  color: var(--navy);
  box-shadow: 0 18px 54px rgba(6, 27, 46, 0.065);
  font-size: clamp(0.98rem, 1.35vw, 1.13rem);
  font-weight: 760;
  line-height: 1.45;
}

.final-price,
.modal-price {
  width: fit-content;
  border: 1px solid rgba(30, 138, 90, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(230, 242, 236, 0.72);
  color: var(--green);
  font-weight: 860;
}

.hero-watermark {
  position: absolute;
  right: 50%;
  top: 54%;
  z-index: 0;
  width: min(1180px, 122vw);
  opacity: 0.18;
  pointer-events: none;
  transform: translate(50%, -50%);
  filter: drop-shadow(0 34px 46px rgba(30, 138, 90, 0.1));
  animation: heroWatermarkFloat 8s ease-in-out infinite;
}

.hero-watermark svg {
  display: block;
  width: 100%;
  height: auto;
}

.watermark-ring {
  fill: none;
  stroke: rgba(18, 52, 74, 0.16);
  stroke-width: 1.4;
  stroke-dasharray: 10 16;
}

.watermark-ring-2 {
  stroke: rgba(30, 138, 90, 0.2);
  stroke-dasharray: 4 12;
}

.watermark-orb {
  fill: url("#watermark-orb");
}

.watermark-curve {
  fill: none;
  stroke: url("#watermark-path");
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 9;
}

.watermark-curve-depth {
  stroke: rgba(18, 52, 74, 0.18);
  stroke-width: 16;
  transform: translate(0, 18px);
  filter: blur(3px);
}

.watermark-curve-glow {
  stroke: rgba(30, 138, 90, 0.3);
  stroke-width: 44;
  opacity: 0.24;
  filter: blur(18px);
}

.watermark-point circle:first-child {
  fill: var(--green);
  opacity: 0.72;
}

.watermark-point circle:last-child {
  fill: rgba(255, 255, 255, 0.16);
  stroke: rgba(30, 138, 90, 0.28);
  stroke-width: 1;
  animation: watermarkPulse 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.watermark-point.active circle:first-child {
  fill: var(--orange);
  opacity: 0.86;
}

.watermark-point.active circle:last-child {
  stroke: rgba(244, 122, 31, 0.36);
}

.point-2 circle:last-child {
  animation-delay: 520ms;
}

.point-3 circle:last-child {
  animation-delay: 1040ms;
}

.point-4 circle:last-child {
  animation-delay: 1560ms;
}

.hero .trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.hero .trust-list li {
  border: 1px solid rgba(30, 138, 90, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(6, 27, 46, 0.76);
  box-shadow: none;
  font-size: 0.88rem;
}

.hero .trust-list li::before {
  display: none;
}

@keyframes heroWatermarkFloat {
  0%, 100% {
    transform: translate(50%, -50%) rotateX(0deg) rotateZ(-1deg);
  }
  50% {
    transform: translate(50%, calc(-50% - 10px)) rotateX(2deg) rotateZ(1deg);
  }
}

@keyframes watermarkPulse {
  0%, 100% {
    opacity: 0.22;
    transform: scale(0.82);
  }
  48% {
    opacity: 0.5;
    transform: scale(1.22);
  }
}

.problem-copy {
  max-width: 640px;
}

.problem-copy h2 {
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
}

.problem-proof-line {
  color: var(--navy) !important;
  font-weight: 820;
}

.cycle-center-label {
  fill: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.cycle-center-label-small {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.story-carousel {
  min-height: 660px;
  border-radius: 34px;
  padding: 14px;
  background: #102b3d;
}

.story-carousel .case-slides {
  min-height: 610px;
}

.story-carousel .case-slide {
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
}

.story-bars {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.story-bars span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.story-photo-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 24px;
}

.story-photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 46, 0.88));
}

.story-photo-placeholder span {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 22px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.story-photo-placeholder.warm {
  background:
    radial-gradient(circle at 50% 31%, #f0b98c 0 12%, transparent 13%),
    radial-gradient(circle at 50% 55%, #1e8a5a 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(244, 122, 31, 0.28), rgba(255, 255, 255, 0.18)),
    #f7efe4;
}

.story-photo-placeholder.calm {
  background:
    radial-gradient(circle at 50% 31%, #efc7a8 0 12%, transparent 13%),
    radial-gradient(circle at 50% 55%, #2c5870 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(30, 138, 90, 0.22), rgba(255, 255, 255, 0.2)),
    #edf6ef;
}

.story-photo-placeholder.action {
  background:
    radial-gradient(circle at 50% 31%, #e8b28a 0 12%, transparent 13%),
    radial-gradient(circle at 50% 55%, #f47a1f 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(6, 27, 46, 0.12), rgba(30, 138, 90, 0.2)),
    #f8eadc;
}

.story-overlay-copy {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 32px;
  left: 24px;
  display: grid;
  gap: 12px;
}

.story-overlay-copy span,
.story-overlay-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.story-overlay-copy h3 {
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 0.98;
}

.story-overlay-copy .proof-tags span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.system-visual-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(6, 27, 46, 0.1);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(6, 27, 46, 0.07);
}

.mini-visual {
  min-height: 132px;
  border-radius: 20px;
  background: var(--green-soft);
}

.mini-thali {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mini-thali span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 9px rgba(244, 122, 31, 0.2);
}

.mini-monitor,
.mini-medicine {
  position: relative;
}

.mini-monitor span {
  position: absolute;
  right: 24px;
  bottom: 36px;
  left: 24px;
  height: 44px;
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 22px 22px;
  transform: skewY(-8deg);
}

.mini-medicine span:first-child {
  position: absolute;
  top: 34px;
  left: 38px;
  width: 40px;
  height: 74px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: inset 0 0 0 3px rgba(30, 138, 90, 0.18);
}

.mini-medicine span:last-child {
  position: absolute;
  right: 34px;
  bottom: 38px;
  width: 90px;
  height: 4px;
  background: var(--orange);
  transform: rotate(-16deg);
}

.system-visual-card small {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(230, 242, 236, 0.76);
  color: var(--green);
  font-weight: 830;
}

.system-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(6, 27, 46, 0.1);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.system-cta p {
  margin: 0;
  color: var(--navy);
  font-weight: 850;
}

.journey-board {
  min-height: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.journey-board::before,
.journey-board::after {
  display: none;
}

.journey-board .journey-step {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  border: 1px solid rgba(6, 27, 46, 0.09);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.journey-board .journey-step > span {
  position: static;
  transform: none;
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
}

.journey-board .journey-copy {
  width: 100%;
  max-width: none;
}

.promise-seal {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.promise-pillars li {
  padding: 12px 18px;
}

.final-human-visual {
  width: min(100%, 420px);
  height: 220px;
  margin-bottom: 8px;
}

.modal-price,
.modal-serious-note {
  margin: 0;
}

.modal-serious-note {
  max-width: 560px;
  color: var(--navy) !important;
  font-weight: 760 !important;
}

.sticky-offer-bar {
  grid-template-columns: minmax(240px, 1fr) minmax(220px, auto) auto;
}

.sticky-trust {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

@media (max-width: 1040px) {
  .system-card-grid {
    grid-template-columns: 1fr;
  }

  .journey-board {
    grid-template-columns: 1fr;
  }

  .system-cta,
  .sticky-offer-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.15rem);
    line-height: 1;
  }

  .hero-content {
    gap: 28px;
    width: min(100% - 30px, 1040px);
  }

  .curiosity-callout {
    border-radius: 18px;
    padding: 14px 15px;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: min(100%, 420px);
  }

  .hero-watermark {
    top: 50%;
    width: 185vw;
    opacity: 0.07;
    filter: blur(0.4px);
  }

  .story-carousel {
    min-height: 610px;
  }

  .story-carousel .case-slides {
    min-height: 548px;
  }

  .story-overlay-copy h3 {
    font-size: clamp(1.85rem, 11vw, 2.75rem);
  }

  .system-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .journey-board .journey-step {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .journey-board .journey-step > span {
    grid-column: 1;
  }

  .journey-board .journey-copy {
    grid-column: 2;
  }

  .sticky-trust {
    display: none;
  }
}

/* Premium health-tech visual refresh */
:root {
  --purple: #61518f;
  --purple-soft: #eeeaf8;
  --lavender: #f4f0fb;
  --paper: #fcf8f1;
  --paper-2: #f5eef7;
  --line: rgba(45, 34, 74, 0.12);
  --shadow-soft: 0 24px 70px rgba(36, 27, 64, 0.11);
  --shadow-deep: 0 40px 110px rgba(15, 27, 46, 0.2);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(97, 81, 143, 0.11), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(30, 138, 90, 0.09), transparent 24%),
    linear-gradient(180deg, #fcf8f1 0%, #f7f2fb 48%, #fcf8f1 100%);
  overflow-x: hidden;
}

.section-pad {
  position: relative;
  overflow: hidden;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.button,
.mobile-sticky-cta {
  box-shadow: 0 18px 46px rgba(244, 122, 31, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.button-primary:hover {
  box-shadow: 0 24px 58px rgba(244, 122, 31, 0.36), 0 0 34px rgba(244, 122, 31, 0.16);
}

.hero {
  background:
    linear-gradient(rgba(97, 81, 143, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 81, 143, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 34%, rgba(97, 81, 143, 0.13), transparent 34%),
    radial-gradient(circle at 50% 56%, rgba(30, 138, 90, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f8f1fb 100%);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

.hero-masthead {
  align-items: center;
}

.editorial-brand {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 44px rgba(36, 27, 64, 0.08);
}

.editorial-brand span {
  color: var(--navy);
}

.hero-copy .eyebrow {
  color: var(--purple);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.45rem, 5.65vw, 5.9rem);
  line-height: 1;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(16, 32, 51, 0.82);
  font-size: clamp(1.1rem, 1.36vw, 1.22rem);
  font-weight: 560;
  line-height: 1.66;
}

.curiosity-callout {
  border-color: rgba(97, 81, 143, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(244, 240, 251, 0.72)),
    radial-gradient(circle at 20% 50%, rgba(30, 138, 90, 0.1), transparent 34%);
}

.hero-watermark {
  top: 51%;
  width: min(1320px, 130vw);
  opacity: 0.2;
  filter: drop-shadow(0 52px 90px rgba(97, 81, 143, 0.13));
}

.watermark-ring {
  fill: none;
  stroke: rgba(97, 81, 143, 0.18);
  stroke-width: 1.2;
  stroke-dasharray: 7 18;
  transform-box: fill-box;
  transform-origin: center;
  animation: watermarkOrbit 12s ease-in-out infinite;
}

.watermark-ring-2 {
  stroke: rgba(30, 138, 90, 0.18);
  animation-delay: 900ms;
  animation-duration: 14s;
}

.watermark-ring-3 {
  stroke: rgba(244, 122, 31, 0.12);
  animation-delay: 1500ms;
  animation-duration: 16s;
}

.watermark-orb {
  fill: url("#hero-system-orb");
}

.watermark-halo {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 34;
  filter: url("#hero-soft-blur");
}

.watermark-arc {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.watermark-arc-soft {
  stroke: rgba(97, 81, 143, 0.13);
  stroke-width: 68;
  filter: url("#hero-depth-blur");
}

.watermark-arc-main {
  stroke: url("#hero-ribbon-a");
  stroke-width: 20;
}

.watermark-arc-secondary {
  stroke: url("#hero-ribbon-b");
  stroke-width: 13;
  opacity: 0.66;
}

.watermark-arc-tertiary {
  stroke: rgba(30, 138, 90, 0.14);
  stroke-width: 9;
  opacity: 0.78;
}

.watermark-arc-depth {
  stroke: rgba(244, 122, 31, 0.1);
  stroke-width: 18;
  filter: url("#hero-soft-blur");
  opacity: 0.72;
}

.watermark-point circle:first-child {
  fill: rgba(30, 138, 90, 0.7);
}

.watermark-point circle:last-child {
  fill: rgba(255, 255, 255, 0.16);
  stroke: rgba(97, 81, 143, 0.26);
  stroke-width: 1;
  animation: watermarkPulse 4.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.watermark-point.active circle:first-child {
  fill: rgba(244, 122, 31, 0.78);
}

.watermark-point.active circle:last-child {
  stroke: rgba(244, 122, 31, 0.34);
}

.hero-actions {
  margin-bottom: 14px;
}

.hero-actions p {
  margin-top: 15px;
}

.hero .trust-list {
  margin-top: 12px;
}

.hero .trust-list li {
  border-color: rgba(97, 81, 143, 0.13);
  background: rgba(255, 255, 255, 0.36);
  color: rgba(16, 32, 51, 0.64);
  padding: 7px 10px;
  font-size: 0.82rem;
}

@keyframes watermarkOrbit {
  0%, 100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.03);
  }
}

.problem-section,
.story-section,
.faq-section {
  background:
    linear-gradient(rgba(97, 81, 143, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 81, 143, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(97, 81, 143, 0.09), transparent 28%),
    #fbf7ef;
  background-size: 58px 58px, 58px 58px, auto, auto;
}

.proof-section,
.process-section,
.final-cta {
  background:
    radial-gradient(circle at 78% 12%, rgba(97, 81, 143, 0.11), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(30, 138, 90, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f2fb 100%);
}

.proof-grid {
  position: relative;
}

.section-watermark {
  position: absolute;
  top: -74px;
  left: 48%;
  z-index: 0;
  color: rgba(97, 81, 143, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.proof-grid > *:not(.section-watermark) {
  position: relative;
  z-index: 1;
}

.story-carousel {
  width: min(100%, 460px);
  min-height: 690px;
  border: 1px solid rgba(97, 81, 143, 0.18);
  background:
    radial-gradient(circle at 50% 15%, rgba(97, 81, 143, 0.26), transparent 34%),
    #11283d;
  box-shadow: 0 34px 100px rgba(36, 27, 64, 0.22);
}

.story-carousel::before,
.story-carousel::after {
  display: none;
}

.story-carousel .case-slides {
  min-height: 638px;
}

.story-photo-placeholder {
  background:
    radial-gradient(circle at 50% 24%, #eec4aa 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 55%, rgba(97, 81, 143, 0.6) 0 18%, transparent 19%),
    linear-gradient(150deg, rgba(244, 122, 31, 0.24), rgba(30, 138, 90, 0.2)),
    #f7eadf;
}

.story-overlay-copy h3 {
  letter-spacing: -0.035em;
}

.system-heading {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.system-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.system-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.system-card-grid {
  gap: 22px;
}

.system-visual-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(97, 81, 143, 0.12);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 255, 0.78)),
    radial-gradient(circle at 90% 8%, rgba(97, 81, 143, 0.09), transparent 32%);
}

.system-visual-card::before {
  content: "";
  position: absolute;
  top: -74px;
  right: -74px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(97, 81, 143, 0.09);
}

.mini-visual {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  background:
    radial-gradient(circle at 75% 20%, rgba(97, 81, 143, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(230, 242, 236, 0.9), rgba(244, 240, 251, 0.74));
}

.system-visual-card h3 {
  font-size: 1.28rem;
}

.system-visual-card p {
  margin-bottom: 2px;
  font-size: 0.98rem;
}

.system-visual-card small {
  background: rgba(97, 81, 143, 0.08);
  color: var(--purple);
}

.system-cta {
  margin-top: 28px;
  border-color: rgba(244, 122, 31, 0.16);
  border-radius: 30px;
  padding: clamp(24px, 3.2vw, 34px);
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 122, 31, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.system-cta strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.system-cta p {
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: min(100% - 52px, 1240px);
}

.process-copy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.process-copy h2,
.process-copy p {
  margin-right: auto;
  margin-left: auto;
}

.process-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(6, 27, 46, 0.72);
  font-weight: 650;
}

.journey-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  min-height: 430px;
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-radius: 36px;
  padding: 58px clamp(34px, 4.8vw, 70px);
  background:
    radial-gradient(circle at 50% 52%, rgba(30, 138, 90, 0.13), transparent 34%),
    radial-gradient(circle at 86% 50%, rgba(244, 122, 31, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 242, 0.88));
  box-shadow: 0 32px 88px rgba(6, 27, 46, 0.11);
  overflow: hidden;
}

.journey-board::before,
.journey-board::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(86px, 9vw, 140px);
  left: clamp(86px, 9vw, 140px);
  display: block;
  height: 4px;
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(-50%);
}

.journey-board::before {
  background: rgba(30, 138, 90, 0.16);
}

.journey-board::after {
  background: linear-gradient(90deg, rgba(30, 138, 90, 0.96) 0%, rgba(30, 138, 90, 0.9) 76%, rgba(244, 122, 31, 0.95) 100%);
  box-shadow: 0 0 18px rgba(30, 138, 90, 0.16), 0 0 18px rgba(244, 122, 31, 0.11);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-board.in-view::after {
  transform: translateY(-50%) scaleX(1);
}

.journey-board .journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(142px, 1fr) 58px minmax(142px, 1fr);
  justify-items: center;
  border: 0;
  border-radius: 0;
  padding: 0 8px;
  background: transparent;
  opacity: 1;
  transform: none;
  transition: none;
}

.journey-board .journey-step::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30, 138, 90, 0.12), rgba(30, 138, 90, 0.42));
  opacity: 0;
  transform: translateX(-50%) scaleY(0.45);
  transition: opacity 480ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-board .journey-step:nth-child(odd)::before {
  bottom: calc(50% + 30px);
  transform-origin: bottom;
}

.journey-board .journey-step:nth-child(even)::before {
  top: calc(50% + 30px);
  transform-origin: top;
}

.journey-board.in-view .journey-step::before,
.journey-board:not([data-progress-line]) .journey-step::before {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}

.journey-board .journey-step:nth-child(2) {
  --journey-delay: 140ms;
}

.journey-board .journey-step:nth-child(3) {
  --journey-delay: 280ms;
}

.journey-board .journey-step:nth-child(4) {
  --journey-delay: 420ms;
}

.journey-board .journey-step:nth-child(5) {
  --journey-delay: 560ms;
}

.journey-board .journey-step > span {
  grid-row: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #2ca56f, var(--green));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(30, 138, 90, 0.26);
  font-size: 1.04rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 520ms ease, transform 640ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
  transition-delay: var(--journey-delay, 0ms);
}

.journey-board .journey-step:nth-child(5) > span {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.3), transparent 32%),
    linear-gradient(145deg, #f79a44, var(--orange));
  box-shadow: 0 20px 42px rgba(244, 122, 31, 0.28);
}

.journey-board.in-view .journey-step > span,
.journey-board:not([data-progress-line]) .journey-step > span {
  opacity: 1;
  transform: scale(1);
}

.journey-board .journey-copy {
  width: min(100%, 208px);
  max-width: 208px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 620ms ease;
  transition-delay: calc(var(--journey-delay, 0ms) + 120ms);
}

.journey-board .journey-step:nth-child(odd) .journey-copy {
  grid-row: 1;
  align-self: end;
  margin-bottom: 36px;
}

.journey-board .journey-step:nth-child(even) .journey-copy {
  grid-row: 3;
  align-self: start;
  margin-top: 36px;
}

.journey-board.in-view .journey-copy,
.journey-board:not([data-progress-line]) .journey-copy {
  opacity: 1;
  transform: translateY(0);
}

.journey-board .journey-copy h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 850;
}

.journey-board .journey-copy p {
  margin: 0;
  color: rgba(73, 87, 104, 0.94);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.48;
}

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

.process-cta.reveal.visible .button {
  animation: none;
}

@keyframes ctaPulseOnce {
  0%, 100% {
    box-shadow: 0 20px 46px rgba(244, 122, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  48% {
    box-shadow: 0 26px 64px rgba(244, 122, 31, 0.4), 0 0 0 8px rgba(244, 122, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-board::after,
  .journey-board .journey-step::before,
  .journey-board .journey-step > span,
  .journey-board .journey-copy,
  .process-cta.reveal.visible .button {
    transition: none;
    animation: none;
  }

  .journey-board::after {
    transform: translateY(-50%) scaleX(1);
  }

  .journey-board .journey-step::before,
  .journey-board .journey-step > span,
  .journey-board .journey-copy {
    opacity: 1;
    transform: none;
  }
}

.refund-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 27, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 18% 26%, rgba(30, 138, 90, 0.14), transparent 32%),
    radial-gradient(circle at 84% 28%, rgba(244, 122, 31, 0.12), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(30, 138, 90, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf1, #f8f1e8 52%, #fffaf1);
  background-size: 72px 72px, 72px 72px, auto, auto, auto, auto;
  padding-top: clamp(112px, 11vw, 158px);
  padding-bottom: clamp(170px, 14vw, 220px);
}

.refund-section::before,
.refund-section::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.refund-section::before {
  top: clamp(92px, 9vw, 136px);
  width: clamp(420px, 52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(30, 138, 90, 0.11);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 clamp(34px, 4vw, 58px) rgba(244, 122, 31, 0.032),
    inset 0 0 0 clamp(72px, 8vw, 118px) rgba(30, 138, 90, 0.026),
    0 0 90px rgba(30, 138, 90, 0.08);
  opacity: 0.46;
  animation: promiseRingDrift 34s linear infinite;
}

.refund-section::after {
  bottom: clamp(86px, 9vw, 132px);
  width: min(760px, 82vw);
  height: 160px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(244, 122, 31, 0.11), transparent 65%),
    radial-gradient(ellipse at 22% 40%, rgba(30, 138, 90, 0.1), transparent 52%);
  filter: blur(10px);
  opacity: 0.8;
}

.refund-card {
  position: relative;
  z-index: 1;
  overflow: visible;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding-top: clamp(16px, 2vw, 28px);
  padding-bottom: clamp(16px, 2vw, 28px);
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  text-align: center;
}

.refund-card::before {
  display: none;
}

.refund-card h2 {
  position: relative;
  max-width: 780px;
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--navy);
}

.refund-card > p:not(.eyebrow):not(.refund-note) {
  position: relative;
  max-width: 720px;
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(6, 27, 46, 0.72);
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  font-weight: 710;
  line-height: 1.56;
}

.refund-support {
  max-width: 680px !important;
  margin-top: 26px !important;
  margin-bottom: 0 !important;
  color: rgba(6, 27, 46, 0.84) !important;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem) !important;
  font-weight: 780 !important;
  line-height: 1.5 !important;
}

.promise-pillars {
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
  margin-bottom: 0;
}

.promise-pillars li {
  padding: 11px 17px;
  border-color: rgba(30, 138, 90, 0.16);
  background: rgba(255, 255, 255, 0.48);
  color: rgba(6, 27, 46, 0.72);
  box-shadow: 0 10px 28px rgba(6, 27, 46, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.promise-pillars li:hover {
  border-color: rgba(244, 122, 31, 0.26);
  background: rgba(255, 250, 242, 0.95);
  transform: translateY(-2px);
}

.refund-note {
  max-width: 620px;
  margin-top: 32px !important;
  margin-bottom: 36px !important;
  color: rgba(6, 27, 46, 0.52) !important;
  font-size: 0.82rem !important;
  font-weight: 680;
}

.promise-seal {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  gap: 7px;
  margin-bottom: 40px;
  border-color: rgba(30, 138, 90, 0.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(30, 138, 90, 0.12), transparent 54%),
    rgba(255, 255, 255, 0.48);
  color: var(--navy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 48px rgba(30, 138, 90, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  animation: promiseSealPulse 5.8s ease-in-out infinite;
}

.promise-logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 40%, rgba(255, 255, 255, 0.95) 0 17%, transparent 18%),
    conic-gradient(from 220deg, var(--green), #86c6a1, var(--orange), var(--green));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(30, 138, 90, 0.18);
}

.promise-logo-mark span {
  width: 20px;
  height: 20px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-right-color: transparent;
  border-radius: 999px;
  transform: rotate(-28deg);
}

.promise-seal-text {
  display: block;
  color: rgba(6, 27, 46, 0.72);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.refund-card .button {
  min-height: 58px;
  min-width: min(100%, 280px);
  padding-right: 34px;
  padding-left: 34px;
  box-shadow: 0 24px 58px rgba(244, 122, 31, 0.34), 0 0 0 7px rgba(244, 122, 31, 0.055);
}

.refund-card.reveal.visible .promise-seal {
  animation: promiseSealIn 700ms ease both, promiseSealPulse 5.8s ease-in-out 800ms infinite;
}

@keyframes promiseSealIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes promiseRingDrift {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes promiseSealPulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      0 18px 48px rgba(30, 138, 90, 0.12);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 22px 58px rgba(30, 138, 90, 0.18);
  }
}

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

.faq-list details {
  border-color: rgba(97, 81, 143, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 48px rgba(36, 27, 64, 0.06);
}

.final-close {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  grid-template-areas:
    "visual eyebrow"
    "visual title"
    "visual copy"
    "visual price"
    "visual button";
  align-items: center;
  column-gap: clamp(30px, 5vw, 72px);
  max-width: 1120px;
  border: 1px solid rgba(97, 81, 143, 0.14);
  border-radius: 38px;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 122, 31, 0.12), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(30, 138, 90, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.final-human-visual {
  grid-area: visual;
  width: 100%;
  height: min(360px, 46vw);
  min-height: 280px;
  margin: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 28%, #eec0a0 0 13%, transparent 14%),
    radial-gradient(ellipse at 50% 58%, rgba(97, 81, 143, 0.62) 0 19%, transparent 20%),
    linear-gradient(145deg, rgba(244, 122, 31, 0.18), rgba(30, 138, 90, 0.18)),
    #f4e8df;
  box-shadow: inset 0 -80px 110px rgba(6, 27, 46, 0.1);
}

.final-close .eyebrow {
  grid-area: eyebrow;
}

.final-close h2 {
  grid-area: title;
  max-width: 620px;
}

.final-close > p:not(.eyebrow):not(.final-price):not(.final-microcopy):not(.final-trust-line) {
  grid-area: copy;
  max-width: 560px;
}

.final-price {
  grid-area: price;
}

.final-close .button {
  grid-area: button;
  width: fit-content;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 27, 46, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 14% 20%, rgba(30, 138, 90, 0.11), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(244, 122, 31, 0.1), transparent 32%),
    linear-gradient(180deg, #fffaf1, #f8f1e8);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.faq-section::before {
  content: "?";
  position: absolute;
  right: clamp(22px, 7vw, 110px);
  top: clamp(50px, 8vw, 110px);
  color: rgba(30, 138, 90, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 22vw, 23rem);
  line-height: 0.8;
  pointer-events: none;
}

.faq-section .section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.faq-section .section-heading h2 {
  max-width: 760px;
}

.faq-section .section-heading > p:not(.eyebrow) {
  max-width: 710px;
  margin: 16px 0 0;
  color: rgba(6, 27, 46, 0.68);
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.6;
}

.faq-list {
  position: relative;
  z-index: 1;
  gap: 18px;
  margin-top: 44px;
}

.faq-list details {
  border: 1px solid rgba(30, 138, 90, 0.13);
  border-radius: 24px;
  padding: 0;
  background:
    radial-gradient(circle at 96% 0%, rgba(244, 122, 31, 0.055), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(6, 27, 46, 0.065);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-list details:hover {
  border-color: rgba(30, 138, 90, 0.22);
  background:
    radial-gradient(circle at 96% 0%, rgba(244, 122, 31, 0.075), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 68px rgba(6, 27, 46, 0.09);
  transform: translateY(-2px);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 60px 24px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(73, 87, 104, 0.96);
  font-size: 0.96rem;
  font-weight: 560;
  line-height: 1.68;
  animation: faqAnswerIn 220ms ease both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 27, 46, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 20% 34%, rgba(30, 138, 90, 0.12), transparent 32%),
    radial-gradient(circle at 82% 62%, rgba(244, 122, 31, 0.13), transparent 30%),
    linear-gradient(180deg, #f8f1e8, #fffaf1);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.final-close {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  grid-template-areas:
    "visual eyebrow"
    "visual title"
    "visual copy"
    "visual price"
    "visual microcopy"
    "visual button"
    "visual trust";
  row-gap: 12px;
  border-color: rgba(30, 138, 90, 0.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 30%, rgba(30, 138, 90, 0.14), transparent 34%),
    radial-gradient(circle at 92% 70%, rgba(244, 122, 31, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 86px rgba(6, 27, 46, 0.09);
}

.final-human-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 340px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 24% 34%, rgba(244, 122, 31, 0.12), transparent 32%),
    radial-gradient(circle at 78% 62%, rgba(30, 138, 90, 0.16), transparent 34%),
    linear-gradient(135deg, #fff4e6, #eef8f0);
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 54px rgba(6, 27, 46, 0.08);
}

.final-human-visual::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(30, 138, 90, 0.12);
  border-radius: 999px;
  opacity: 0.58;
}

.journey-card {
  position: absolute;
  z-index: 1;
  width: min(46%, 190px);
  border: 1px solid rgba(30, 138, 90, 0.13);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: 0 18px 48px rgba(6, 27, 46, 0.08);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.journey-card-before {
  left: 8%;
  top: 28%;
}

.journey-card-after {
  right: 8%;
  bottom: 26%;
  border-color: rgba(244, 122, 31, 0.18);
}

.journey-path {
  position: absolute;
  z-index: 0;
  width: 58%;
  height: 36%;
  border-top: 3px solid rgba(30, 138, 90, 0.36);
  border-right: 3px solid rgba(244, 122, 31, 0.34);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.final-close h2 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.98;
}

.final-price {
  width: fit-content;
  border: 1px solid rgba(244, 122, 31, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 250, 242, 0.85);
  color: var(--navy);
  font-weight: 900;
}

.final-microcopy {
  grid-area: microcopy;
  max-width: 520px;
  margin: 0;
  color: rgba(6, 27, 46, 0.66);
  font-size: 0.95rem;
  font-weight: 750;
}

.final-trust-line {
  grid-area: trust;
  max-width: 520px;
  margin: 0;
  color: rgba(6, 27, 46, 0.58);
  font-size: 0.88rem;
  font-weight: 700;
}

.final-close .button {
  margin-top: 8px;
  box-shadow: 0 24px 58px rgba(244, 122, 31, 0.32);
}

.booking-modal__dialog {
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 81, 143, 0.09), transparent 32%),
    #fffdf8;
}

.booking-nudge {
  border-color: rgba(97, 81, 143, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 81, 143, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.94);
}

.sticky-offer-bar {
  right: 50%;
  bottom: 22px;
  left: auto;
  width: min(940px, calc(100% - 44px));
  grid-template-columns: minmax(220px, 1fr) minmax(220px, auto) auto;
  border: 1px solid rgba(97, 81, 143, 0.14);
  border-radius: 999px;
  padding: 12px 14px 12px 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(36, 27, 64, 0.17);
  transform: translate(50%, 150%);
  backdrop-filter: blur(18px);
}

.sticky-offer-bar.is-visible {
  transform: translate(50%, 0);
}

.sticky-price strong {
  color: var(--navy);
}

.sticky-price span {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .process-grid {
    width: min(100% - 30px, 1240px);
  }

  .journey-board {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 26px;
    border-radius: 28px;
  }

  .journey-board::before,
  .journey-board::after {
    top: 44px;
    right: auto;
    bottom: 44px;
    left: 51px;
    width: 3px;
    height: auto;
    transform-origin: top;
  }

  .journey-board::before {
    background: rgba(30, 138, 90, 0.16);
  }

  .journey-board::after {
    background: linear-gradient(180deg, rgba(30, 138, 90, 0.96) 0%, rgba(30, 138, 90, 0.88) 78%, rgba(244, 122, 31, 0.95) 100%);
    transform: scaleY(0);
  }

  .journey-board.in-view::after {
    transform: scaleY(1);
  }

  .journey-board .journey-step {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 18px;
    justify-items: start;
    padding: 16px;
    border: 1px solid rgba(30, 138, 90, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
  }

  .journey-board .journey-step::before {
    display: none;
  }

  .journey-board .journey-step > span,
  .journey-board .journey-copy {
    grid-row: auto;
  }

  .journey-board .journey-copy {
    width: 100%;
    max-width: none;
    margin-top: 0;
    text-align: left;
  }

  .process-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .process-cta-copy {
    max-width: none;
  }

  .process-cta .button {
    width: 100%;
  }

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

  .sticky-offer-bar {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1220px);
  }

  .section-pad {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 98px;
  }

  .hero-masthead {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 44px;
    text-align: center;
  }

  .hero h1 {
    max-width: 430px;
    font-size: clamp(2.55rem, 11.5vw, 4.05rem);
    line-height: 1.02;
  }

  .hero-subhead {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-watermark {
    width: 190vw;
    opacity: 0.075;
  }

  .story-carousel {
    width: min(100%, 390px);
    min-height: 620px;
  }

  .story-carousel .case-slides {
    min-height: 558px;
  }

  .system-heading {
    text-align: left;
  }

  .system-heading h2,
  .system-heading > p:not(.eyebrow) {
    margin-left: 0;
  }

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

  .system-cta {
    align-items: stretch;
    text-align: center;
  }

  .system-cta .button,
  .process-cta .button,
  .final-close .button {
    width: 100%;
  }

  .journey-board {
    padding: 18px;
  }

  .journey-board::before,
  .journey-board::after {
    left: 43px;
  }

  .journey-board .journey-step {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 14px;
  }

  .journey-board .journey-step > span {
    width: 48px;
    height: 48px;
    border-width: 5px;
  }

  .refund-card {
    border-radius: 0;
    padding: 18px 0 36px;
  }

  .refund-card h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .promise-pillars {
    align-items: stretch;
    flex-direction: column;
  }

  .refund-section::before {
    width: 118vw;
    opacity: 0.42;
  }

  .refund-section {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 150px;
  }

  .promise-seal {
    width: 92px;
    height: 92px;
    margin-bottom: 30px;
  }

  .promise-logo-mark {
    width: 32px;
    height: 32px;
  }

  .promise-logo-mark span {
    width: 17px;
    height: 17px;
    border-width: 3px;
  }

  .refund-support {
    margin-top: 22px !important;
  }

  .promise-pillars {
    margin-top: 34px;
  }

  .refund-note {
    margin-top: 28px !important;
    margin-bottom: 32px !important;
  }

  .final-close {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "eyebrow"
      "title"
      "copy"
      "price"
      "microcopy"
      "button"
      "trust";
    row-gap: 12px;
    text-align: center;
  }

  .final-human-visual {
    min-height: 220px;
  }

  .final-price,
  .final-microcopy,
  .final-trust-line,
  .modal-price {
    margin-right: auto;
    margin-left: auto;
  }

  .mobile-sticky-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    border-radius: 22px;
    padding: 11px 14px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 240, 251, 0.94));
    color: var(--navy);
    box-shadow: 0 18px 54px rgba(36, 27, 64, 0.18);
  }

  .mobile-sticky-cta span {
    border-radius: 999px;
    padding: 12px 16px;
    background: var(--orange);
    color: var(--white);
  }

  .booking-nudge {
    right: 14px;
    bottom: 96px;
    left: 14px;
    width: auto;
  }
}

/* Hero conversion emphasis */
.hero {
  background:
    linear-gradient(rgba(97, 81, 143, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 81, 143, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.7), transparent 22%),
    radial-gradient(circle at 50% 64%, rgba(244, 122, 31, 0.105), transparent 26%),
    radial-gradient(circle at 50% 75%, rgba(30, 138, 90, 0.085), transparent 30%),
    linear-gradient(180deg, #fffdf7 0%, #faf4ff 100%);
  background-size: 58px 58px, 58px 58px, auto, auto, auto, auto;
}

.hero-subhead {
  max-width: 620px;
  color: rgba(6, 27, 46, 0.86);
  font-size: clamp(1.14rem, 1.45vw, 1.3rem);
  font-weight: 650;
  line-height: 1.54;
}

.hero-actions {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 4px 0 0;
}

.hero-actions::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(560px, 92vw);
  height: 250px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 247, 229, 0.8), transparent 34%),
    radial-gradient(circle at 50% 46%, rgba(244, 122, 31, 0.18), transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(30, 138, 90, 0.12), transparent 54%);
  opacity: 0.92;
  filter: blur(18px);
  pointer-events: none;
  transform: translate(-50%, -42%);
}

.hero-actions .button {
  min-height: 60px;
  padding: 0 38px;
  box-shadow:
    0 22px 54px rgba(244, 122, 31, 0.36),
    0 8px 18px rgba(216, 101, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  font-size: 1rem;
}

.hero-actions .button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 68px rgba(244, 122, 31, 0.44),
    0 12px 24px rgba(216, 101, 18, 0.25),
    0 0 38px rgba(244, 122, 31, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.hero-actions p {
  margin-top: 12px;
  color: rgba(16, 32, 51, 0.7);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.35;
}

.hero .trust-list {
  position: relative;
  z-index: 2;
  gap: 11px;
  margin-top: 14px;
}

.hero .trust-list li {
  border-color: rgba(30, 138, 90, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 246, 0.56));
  color: rgba(6, 27, 46, 0.74);
  box-shadow: 0 10px 30px rgba(36, 27, 64, 0.055);
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 820;
}

.hero-watermark {
  opacity: 0.16;
  filter: drop-shadow(0 54px 86px rgba(97, 81, 143, 0.1));
}

.watermark-arc-soft {
  opacity: 0.74;
}

.watermark-arc-main {
  opacity: 0.76;
}

.watermark-arc-secondary,
.watermark-arc-tertiary {
  opacity: 0.58;
}

@media (max-width: 760px) {
  .hero-subhead {
    max-width: 350px;
    font-size: 1.04rem;
    font-weight: 620;
    line-height: 1.52;
  }

  .hero-actions {
    margin-top: 2px;
  }

  .hero-actions::before {
    width: 112vw;
    height: 220px;
    opacity: 0.75;
  }

  .hero-actions .button {
    width: min(100%, 390px);
    min-height: 58px;
    padding: 0 24px;
  }

  .hero .trust-list {
    gap: 8px;
  }

  .hero .trust-list li {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .hero-watermark {
    opacity: 0.06;
  }
}

/* Lifelong trap cycle refinement */
.problem-section {
  padding-bottom: clamp(150px, 15vw, 210px);
  background:
    linear-gradient(rgba(6, 27, 46, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(30, 138, 90, 0.095), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(244, 122, 31, 0.06), transparent 28%),
    #fffaf2;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.problem-grid {
  align-items: center;
  gap: 54px clamp(72px, 7vw, 96px);
}

.problem-copy {
  max-width: 590px;
}

.problem-copy h2 {
  max-width: 590px;
  font-size: clamp(2.8rem, 4.65vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.038em;
}

.problem-copy p:not(.eyebrow) {
  max-width: 500px;
}

.fear-cycle-panel {
  width: min(100%, 590px);
}

.fear-cycle-graphic {
  overflow: hidden;
  border: 1px solid rgba(30, 138, 90, 0.14);
  border-radius: 32px;
  padding: clamp(18px, 2.6vw, 30px);
  background:
    radial-gradient(circle at 50% 50%, rgba(230, 242, 236, 0.42), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 255, 249, 0.74));
  box-shadow: 0 30px 86px rgba(6, 27, 46, 0.1);
}

.fear-cycle-graphic::before {
  inset: 12%;
  background:
    radial-gradient(circle, rgba(30, 138, 90, 0.075), transparent 56%),
    radial-gradient(circle at 58% 26%, rgba(244, 122, 31, 0.055), transparent 34%);
}

.fear-cycle-graphic svg {
  max-width: 610px;
  overflow: visible;
}

.cycle-motion-layer {
  transform-box: fill-box;
  transform-origin: center;
  animation: cycleRotate 24s linear infinite;
}

.cycle-motion-ring {
  fill: none;
  stroke: rgba(30, 138, 90, 0.48);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 12px 22px rgba(30, 138, 90, 0.13));
}

.cycle-line {
  display: none;
}

.cycle-orbit {
  fill: none;
  stroke: rgba(244, 122, 31, 0.52);
  stroke-width: 3;
  stroke-linecap: round;
  marker-end: url("#cycle-arrow");
  stroke-dasharray: 9 12;
  animation: cycleOrbit 6.4s linear infinite;
}

#cycle-arrow path {
  fill: rgba(244, 122, 31, 0.72);
}

.cycle-center {
  opacity: 0;
  animation: cycleCenterIn 560ms ease 1300ms forwards;
}

.cycle-center-label {
  fill: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cycle-center-label-small {
  fill: rgba(6, 27, 46, 0.66);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.cycle-node {
  fill: var(--green);
  stroke: var(--white);
  stroke-width: 5;
  filter: drop-shadow(0 10px 18px rgba(30, 138, 90, 0.22));
}

.cycle-node.warning {
  fill: var(--orange);
  filter: drop-shadow(0 10px 18px rgba(244, 122, 31, 0.26));
}

.cycle-pulse {
  fill: rgba(244, 122, 31, 0.18);
  transform-box: fill-box;
  transform-origin: center;
  animation: cyclePulse 2.4s ease-in-out infinite;
}

.cycle-label {
  fill: rgba(6, 27, 46, 0.88);
  font-size: 13.5px;
  font-weight: 850;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.cycle-label-start {
  fill: var(--orange);
  font-weight: 900;
}

.cycle-label-peak {
  fill: rgba(6, 27, 46, 0.8);
}

.cycle-explanation-card {
  gap: 14px;
  border: 1px solid rgba(30, 138, 90, 0.18);
  border-left: 5px solid rgba(30, 138, 90, 0.72);
  border-radius: 30px;
  padding: clamp(30px, 4vw, 50px);
  background:
    radial-gradient(circle at 96% 18%, rgba(30, 138, 90, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 86px rgba(6, 27, 46, 0.1);
}

.cycle-explanation-card::before {
  content: "";
  position: absolute;
  inset: auto 8% -34px 8%;
  height: 80px;
  border-radius: 999px;
  background: rgba(30, 138, 90, 0.1);
  filter: blur(24px);
  pointer-events: none;
}

.cycle-card-title {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.14;
}

.cycle-card-body {
  max-width: 900px;
  color: rgba(16, 32, 51, 0.78);
  font-size: clamp(1rem, 1.24vw, 1.12rem);
  font-weight: 650;
}

@keyframes cycleOrbit {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.46;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    stroke-dashoffset: -84;
    opacity: 0.46;
  }
}

@keyframes cycleRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cyclePulse {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.84);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.28);
  }
}

@keyframes cycleCenterIn {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-orbit,
  .cycle-motion-layer,
  .cycle-pulse {
    animation: none !important;
  }

  .cycle-center {
    opacity: 1 !important;
    animation: none !important;
  }
}

@media (max-width: 1040px) {
  .problem-section {
    padding-bottom: 150px;
  }

  .problem-copy {
    justify-self: start;
  }

  .fear-cycle-panel {
    justify-self: center;
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .problem-section {
    padding-bottom: 132px;
  }

  .problem-grid {
    gap: 30px;
  }

  .problem-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.55rem);
    line-height: 1.02;
  }

  .problem-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .fear-cycle-graphic {
    border-radius: 24px;
    padding: 12px 4px;
  }

  .cycle-label {
    font-size: 12.4px;
    stroke-width: 3px;
  }

  .cycle-center-label {
    font-size: 21px;
  }

  .cycle-explanation-card {
    border-radius: 24px;
    padding: 26px 20px;
  }
}

/* dLife system section premium refinement */
.story-section {
  background:
    linear-gradient(rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 12% 20%, rgba(30, 138, 90, 0.07), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(244, 122, 31, 0.055), transparent 30%),
    #fffaf2;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.system-heading {
  max-width: 920px;
  margin-bottom: 46px;
}

.system-heading h2 {
  max-width: 900px;
  line-height: 1.02;
}

.system-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(16, 32, 51, 0.72);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 600;
}

.system-card-grid {
  align-items: stretch;
  gap: 20px;
}

.system-visual-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 13px;
  border-color: rgba(30, 138, 90, 0.12);
  border-radius: 26px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.84)),
    radial-gradient(circle at 82% 12%, rgba(30, 138, 90, 0.07), transparent 34%);
  box-shadow: 0 16px 46px rgba(6, 27, 46, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.system-visual-card:hover {
  border-color: rgba(244, 122, 31, 0.2);
  box-shadow: 0 24px 64px rgba(6, 27, 46, 0.1);
  transform: translateY(-4px);
}

.system-visual-card::before {
  display: none;
}

.system-visual-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.system-visual-card p {
  margin: 0;
  color: rgba(102, 115, 131, 0.96);
  font-size: 0.97rem;
  line-height: 1.54;
}

.system-visual-card small {
  align-self: end;
  border: 1px solid rgba(30, 138, 90, 0.14);
  background: rgba(230, 242, 236, 0.58);
  color: rgba(18, 102, 67, 0.94);
  font-size: 0.78rem;
}

.mini-visual {
  min-height: 136px;
  border: 1px solid rgba(30, 138, 90, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 24%, rgba(244, 122, 31, 0.09), transparent 28%),
    linear-gradient(135deg, rgba(230, 242, 236, 0.76), rgba(255, 250, 242, 0.86));
}

.mini-thali {
  display: grid;
  place-items: center;
}

.mini-thali .plate {
  width: 82px;
  height: 82px;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 42%, rgba(30, 138, 90, 0.22) 0 16%, transparent 17%),
    radial-gradient(circle at 65% 44%, rgba(244, 122, 31, 0.2) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 68%, rgba(6, 27, 46, 0.08) 0 15%, transparent 16%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(6, 27, 46, 0.08);
  animation: systemFloat 4.8s ease-in-out infinite;
}

.mini-thali .bowl {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(6, 27, 46, 0.08);
}

.bowl-green {
  top: 30px;
  left: calc(50% - 78px);
  background: rgba(30, 138, 90, 0.7);
}

.bowl-orange {
  right: calc(50% - 78px);
  bottom: 30px;
  background: rgba(244, 122, 31, 0.72);
}

.carb-marker {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: rgba(244, 122, 31, 0.24);
}

.mini-monitor {
  display: grid;
  place-items: center;
}

.monitor-frame {
  position: absolute;
  width: 76%;
  height: 72%;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.6);
  background-size: 24px 24px;
}

.trend-line {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 41%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(30, 138, 90, 0.4), var(--orange));
  transform: rotate(-9deg) scaleX(0);
  transform-origin: left;
  animation: systemTrendDraw 2.2s ease-out 500ms forwards;
}

.trend-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(30, 138, 90, 0.18);
}

.trend-dot-1 {
  left: 23%;
  bottom: 34%;
}

.trend-dot-2 {
  left: 50%;
  bottom: 45%;
}

.trend-dot-3 {
  right: 23%;
  bottom: 54%;
  background: var(--orange);
}

.mini-medicine {
  display: block;
}

.medicine-bottle {
  position: absolute;
  left: 22%;
  bottom: 26px;
  width: 44px;
  height: 74px;
  border-radius: 13px 13px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 248, 0.9));
  box-shadow: inset 0 0 0 2px rgba(30, 138, 90, 0.15), 0 16px 30px rgba(6, 27, 46, 0.08);
  animation: clinicalPulse 4.8s ease-in-out infinite;
}

.medicine-bottle::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 9px;
  width: 26px;
  height: 14px;
  border-radius: 8px 8px 3px 3px;
  background: rgba(30, 138, 90, 0.62);
}

.medicine-bottle::after {
  content: "";
  position: absolute;
  right: 8px;
  left: 8px;
  top: 32px;
  height: 14px;
  border-radius: 6px;
  background: rgba(244, 122, 31, 0.18);
}

.clinical-note {
  position: absolute;
  right: 22%;
  top: 34px;
  width: 72px;
  height: 78px;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(6, 27, 46, 0.07);
}

.clinical-note::before,
.clinical-note::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  height: 4px;
  border-radius: 999px;
  background: rgba(6, 27, 46, 0.12);
}

.clinical-note::before {
  top: 22px;
}

.clinical-note::after {
  top: 38px;
}

.clinical-check {
  position: absolute;
  right: calc(22% + 12px);
  bottom: 28px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(30, 138, 90, 0.22);
}

.clinical-check::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 10px;
  height: 16px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(42deg);
}

.system-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  align-items: center;
  justify-items: center;
  gap: clamp(28px, 5vw, 76px);
  margin-top: 30px;
  border: 1px solid rgba(244, 122, 31, 0.2);
  border-radius: 30px;
  padding: clamp(26px, 3.6vw, 40px);
  background:
    radial-gradient(circle at 92% 50%, rgba(244, 122, 31, 0.18), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(30, 138, 90, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 86px rgba(6, 27, 46, 0.09);
  text-align: center;
}

.system-cta > div {
  width: min(100%, 640px);
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}

.system-cta small {
  display: block;
  margin-top: 10px;
  color: rgba(16, 32, 51, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.system-cta .button {
  justify-self: center;
  min-height: 58px;
  min-width: min(100%, 360px);
  padding: 0 34px;
  box-shadow: 0 22px 54px rgba(244, 122, 31, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes systemFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes systemTrendDraw {
  to {
    transform: rotate(-9deg) scaleX(1);
  }
}

@keyframes clinicalPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .refund-card.reveal.visible .promise-seal,
  .promise-seal,
  .refund-section::before,
  .mini-thali .plate,
  .medicine-bottle,
  .trend-line {
    animation: none !important;
    transform: none !important;
  }

  .trend-line {
    transform: rotate(-9deg) scaleX(1) !important;
  }
}

@media (max-width: 1040px) {
  .system-card-grid {
    grid-template-columns: 1fr;
  }

  .system-cta {
    align-items: stretch;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .system-cta .button {
    width: min(100%, 440px);
    align-self: center;
  }
}

@media (max-width: 720px) {
  .system-heading {
    text-align: center;
  }

  .system-heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.55rem);
  }

  .system-visual-card {
    padding: 18px;
  }

  .mini-visual {
    min-height: 126px;
  }

  .system-cta {
    padding: 24px 18px;
  }

  .system-cta .button {
    width: 100%;
  }
}

/* dLife system visual upgrade */
.story-section .system-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.story-section .system-visual-card {
  grid-template-rows: 230px auto 1fr auto;
  padding: 22px;
  background:
    radial-gradient(circle at 84% 10%, rgba(244, 122, 31, 0.065), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.9));
  box-shadow: 0 18px 54px rgba(6, 27, 46, 0.075);
}

.story-section .system-visual-card:hover {
  border-color: rgba(30, 138, 90, 0.22);
  box-shadow: 0 28px 76px rgba(6, 27, 46, 0.12);
}

.story-section .mini-visual {
  min-height: 230px;
  border-color: rgba(30, 138, 90, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 74% 24%, rgba(244, 122, 31, 0.11), transparent 30%),
    radial-gradient(circle at 28% 72%, rgba(30, 138, 90, 0.13), transparent 34%),
    linear-gradient(135deg, #fff8ed, #edf7ef);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.story-section .mini-visual::after {
  content: "";
  position: absolute;
  inset: auto 28px 18px;
  height: 22px;
  border-radius: 999px;
  background: rgba(6, 27, 46, 0.08);
  filter: blur(12px);
  pointer-events: none;
}

.thali-shadow {
  position: absolute;
  width: 126px;
  height: 28px;
  bottom: 38px;
  left: 50%;
  border-radius: 999px;
  background: rgba(6, 27, 46, 0.12);
  filter: blur(10px);
  transform: translateX(-50%);
}

.story-section .mini-thali .plate {
  position: absolute;
  z-index: 2;
  width: 126px;
  height: 126px;
  border: 12px solid rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.76) 0 34%, transparent 35%),
    conic-gradient(from 12deg, rgba(30, 138, 90, 0.22), rgba(246, 229, 202, 0.7), rgba(244, 122, 31, 0.2), rgba(30, 138, 90, 0.18));
  box-shadow: 0 22px 42px rgba(6, 27, 46, 0.12), inset 0 0 0 1px rgba(6, 27, 46, 0.04);
}

.food-zone {
  position: absolute;
  z-index: 3;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(6, 27, 46, 0.08);
}

.zone-green {
  width: 44px;
  height: 44px;
  left: calc(50% - 42px);
  top: 78px;
  background: rgba(30, 138, 90, 0.72);
}

.zone-cream {
  width: 38px;
  height: 38px;
  right: calc(50% - 46px);
  top: 88px;
  background: #f3dfbd;
}

.zone-orange {
  width: 34px;
  height: 34px;
  left: calc(50% - 10px);
  bottom: 62px;
  background: rgba(244, 122, 31, 0.7);
}

.story-section .mini-thali .bowl {
  z-index: 4;
}

.story-section .bowl-green {
  top: 44px;
  left: calc(50% - 88px);
}

.story-section .bowl-orange {
  right: calc(50% - 88px);
  bottom: 48px;
}

.approved-dot {
  position: absolute;
  z-index: 5;
  width: 24px;
  height: 24px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(30, 138, 90, 0.24);
  animation: foodMarkerPulse 4.8s ease-in-out infinite;
}

.approved-dot::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(42deg);
}

.approved-dot-1 {
  left: calc(50% + 38px);
  top: 54px;
}

.approved-dot-2 {
  left: calc(50% - 68px);
  bottom: 62px;
  animation-delay: 560ms;
}

.story-section .carb-marker {
  z-index: 4;
  right: 26px;
  top: 30px;
  width: 66px;
  height: 12px;
  background: linear-gradient(90deg, rgba(244, 122, 31, 0.28), rgba(244, 122, 31, 0.08));
  box-shadow: 0 10px 22px rgba(244, 122, 31, 0.08);
}

.story-section .monitor-frame {
  width: 82%;
  height: 70%;
  border-radius: 20px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.68);
  background-size: 22px 22px;
  box-shadow: 0 20px 42px rgba(6, 27, 46, 0.09);
}

.story-section .trend-line {
  left: 20%;
  right: 20%;
  bottom: 45%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0 18%, var(--green) 38%, var(--green) 100%);
  transform: rotate(-7deg) scaleX(0);
}

.trend-stable {
  position: absolute;
  right: 21%;
  bottom: 55%;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: rgba(30, 138, 90, 0.22);
}

.spike-marker {
  position: absolute;
  left: 28%;
  top: 52px;
  width: 24px;
  height: 42px;
  border-radius: 999px 999px 8px 8px;
  background: rgba(244, 122, 31, 0.18);
}

.calendar-check {
  position: absolute;
  right: 26px;
  top: 26px;
  width: 44px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(6, 27, 46, 0.08);
}

.calendar-check::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 9px;
  left: 9px;
  height: 4px;
  border-radius: 999px;
  background: rgba(30, 138, 90, 0.3);
}

.calendar-check::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 8px;
  height: 13px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(42deg);
}

.story-section .trend-dot {
  width: 11px;
  height: 11px;
}

.story-section .trend-dot-1 {
  left: 22%;
  bottom: 35%;
  background: var(--orange);
}

.story-section .trend-dot-2 {
  left: 48%;
  bottom: 47%;
}

.story-section .trend-dot-3 {
  right: 23%;
  bottom: 58%;
  background: var(--green);
}

.blister-strip {
  position: absolute;
  left: 20%;
  top: 52px;
  width: 44px;
  height: 92px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    rgba(30, 138, 90, 0.2);
  box-shadow: 0 16px 34px rgba(6, 27, 46, 0.08);
}

.story-section .medicine-bottle {
  left: 28%;
  bottom: 38px;
  z-index: 2;
  width: 48px;
  height: 78px;
}

.story-section .clinical-note {
  right: 18%;
  top: 42px;
  z-index: 3;
  width: 92px;
  height: 92px;
}

.reduction-line {
  position: absolute;
  right: 22%;
  bottom: 50px;
  z-index: 4;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 122, 31, 0.78), rgba(244, 122, 31, 0.2));
  transform: rotate(-15deg);
}

.reduction-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-right: 4px solid rgba(244, 122, 31, 0.72);
  border-bottom: 4px solid rgba(244, 122, 31, 0.72);
  transform: rotate(45deg);
}

.story-section .clinical-check {
  right: calc(18% + 14px);
  bottom: 34px;
  z-index: 5;
  animation: clinicalCheckIn 3.8s ease-in-out infinite;
}

.story-section .system-cta,
.process-section .system-cta {
  background:
    radial-gradient(circle at 88% 50%, rgba(244, 122, 31, 0.22), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(30, 138, 90, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 239, 0.88));
  border-color: rgba(30, 138, 90, 0.16);
  box-shadow: 0 30px 90px rgba(6, 27, 46, 0.11);
}

@keyframes foodMarkerPulse {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
}

@keyframes clinicalCheckIn {
  0%, 100% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .approved-dot,
  .story-section .clinical-check {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .story-section .system-visual-card {
    grid-template-rows: 188px auto 1fr auto;
  }

  .story-section .mini-visual {
    min-height: 188px;
  }

  .story-section .mini-thali .plate {
    width: 108px;
    height: 108px;
  }

  .story-section .clinical-note {
    right: 14%;
  }
}

/* dLife system visual simplification */
.story-section .mini-visual {
  background:
    linear-gradient(rgba(6, 27, 46, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(244, 122, 31, 0.065), transparent 28%),
    linear-gradient(135deg, #fffaf1, #f2fbf2);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 32px rgba(6, 27, 46, 0.035);
}

.story-section .mini-visual::after {
  opacity: 0.5;
}

.story-section .mini-thali .bowl,
.story-section .carb-marker,
.approved-dot-2,
.trend-stable,
.story-section .trend-dot,
.blister-strip {
  display: none;
}

.story-section .mini-thali .plate {
  width: 146px;
  height: 146px;
  border-width: 13px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.78) 0 28%, transparent 29%),
    conic-gradient(from 18deg, rgba(30, 138, 90, 0.28), rgba(246, 229, 202, 0.82), rgba(244, 122, 31, 0.26), rgba(30, 138, 90, 0.2));
  box-shadow: 0 24px 48px rgba(6, 27, 46, 0.13), inset 0 0 0 1px rgba(6, 27, 46, 0.05);
}

.thali-shadow {
  width: 150px;
  opacity: 0.85;
}

.zone-green {
  width: 50px;
  height: 50px;
  left: calc(50% - 48px);
  top: 72px;
  background: rgba(30, 138, 90, 0.84);
}

.zone-cream {
  width: 44px;
  height: 44px;
  right: calc(50% - 52px);
  top: 84px;
  background: #efd39f;
}

.zone-orange {
  width: 38px;
  height: 38px;
  left: calc(50% - 8px);
  bottom: 58px;
  background: rgba(244, 122, 31, 0.78);
}

.approved-dot-1 {
  left: calc(50% + 50px);
  top: 52px;
}

.approved-dot {
  animation: none;
}

.story-section .monitor-frame {
  width: 80%;
  height: 66%;
  border-color: rgba(6, 27, 46, 0.1);
  background:
    linear-gradient(rgba(6, 27, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.8);
  background-size: 28px 28px;
  box-shadow: 0 22px 44px rgba(6, 27, 46, 0.1);
}

.story-section .trend-line {
  left: 22%;
  right: 22%;
  bottom: 44%;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 20%, var(--green) 42%, var(--green) 100%);
  box-shadow: 0 10px 22px rgba(30, 138, 90, 0.16);
  transform: rotate(-6deg) scaleX(0);
}

.spike-marker {
  left: 26%;
  top: 58px;
  width: 26px;
  height: 46px;
  background: rgba(244, 122, 31, 0.24);
  box-shadow: inset 0 -16px 0 rgba(244, 122, 31, 0.14);
}

.calendar-check {
  right: 34px;
  top: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(6, 27, 46, 0.1);
}

.story-section .medicine-bottle {
  left: 24%;
  bottom: 48px;
  width: 54px;
  height: 88px;
  box-shadow: inset 0 0 0 2px rgba(30, 138, 90, 0.2), 0 20px 38px rgba(6, 27, 46, 0.12);
}

.story-section .clinical-note {
  right: 20%;
  top: 46px;
  width: 102px;
  height: 102px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 42px rgba(6, 27, 46, 0.1);
}

.reduction-line {
  right: 24%;
  bottom: 54px;
  width: 82px;
  opacity: 0.92;
}

.story-section .clinical-check {
  right: calc(20% + 18px);
  bottom: 38px;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .approved-dot {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .story-section .mini-thali .plate {
    width: 122px;
    height: 122px;
  }

  .zone-green {
    left: calc(50% - 42px);
    top: 64px;
  }

  .zone-cream {
    right: calc(50% - 46px);
    top: 76px;
  }

  .zone-orange {
    bottom: 50px;
  }

  .story-section .clinical-note {
    right: 13%;
    width: 88px;
    height: 88px;
  }
}

/* ── Logo SVG sizing ─────────────────────────────────────────── */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.editorial-brand {
  align-items: center;
}

.promise-logo-mark {
  background: transparent;
  box-shadow: none;
}
.promise-logo-mark > span {
  display: none;
}
.promise-logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal-brand-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 720px) {
  .brand-logo {
    height: 34px;
  }
}


/* ════════════════════════════════════════════════════════════════
   REVERSAL PROMISE SECTION — REDESIGN
   ════════════════════════════════════════════════════════════════ */

/* More breathing room in the card */
.refund-card {
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(56px, 6vw, 96px);
  row-gap: 0;
}

/* Slow down the rotating ring so it feels calmer */
.refund-section::before {
  animation-duration: 80s;
  opacity: 0.28;
}

/* Promise halo — three concentric rings that breathe */
.promise-halo {
  position: absolute;
  width: min(560px, 86vw);
  height: min(560px, 86vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(30, 138, 90, 0.15);
  pointer-events: none;
  z-index: 0;
  animation: refundHaloBreathe 7s ease-in-out infinite;
}
.promise-halo::before {
  content: "";
  position: absolute;
  inset: -44px;
  border-radius: 50%;
  border: 1px solid rgba(30, 138, 90, 0.08);
  animation: refundHaloBreathe 7s ease-in-out infinite 1.8s;
}
.promise-halo::after {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  border: 1px solid rgba(244, 122, 31, 0.11);
  animation: refundHaloBreathe 7s ease-in-out infinite 0.9s;
}

@keyframes refundHaloBreathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}

/* Keep all content above halo */
.refund-card > *:not(.promise-halo) {
  position: relative;
  z-index: 1;
}

/* Spacing between each content layer */
.refund-card .eyebrow {
  margin-bottom: 0;
}
.promise-seal {
  margin-top: 20px;
  margin-bottom: 56px;
}
.refund-card h2 {
  margin-bottom: 24px;
}
.refund-card > p:not(.eyebrow):not(.refund-note):not(.refund-support) {
  margin-bottom: 0;
}
.refund-support {
  margin-top: 20px;
}
.promise-pillars {
  margin-top: 48px;
}
.refund-note {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Chip stagger — fires at page load with delays */
@keyframes chipFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.promise-pillars li {
  animation: chipFadeUp 0.42s ease both;
}
.promise-pillars li:nth-child(1) { animation-delay: 0.72s; }
.promise-pillars li:nth-child(2) { animation-delay: 0.90s; }
.promise-pillars li:nth-child(3) { animation-delay: 1.08s; }

/* CTA hover lift */
.refund-card .button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 72px rgba(244, 122, 31, 0.46), 0 0 0 8px rgba(244, 122, 31, 0.10);
}

@media (max-width: 760px) {
  .refund-card {
    padding-top: clamp(32px, 8vw, 56px);
    padding-bottom: clamp(40px, 10vw, 72px);
  }
  .promise-halo {
    width: min(360px, 90vw);
    height: min(360px, 90vw);
  }
}


/* ════════════════════════════════════════════════════════════════
   FINAL CTA SECTION — REDESIGN
   ════════════════════════════════════════════════════════════════ */

/* Fix grid template: add microcopy and trust rows */
.final-close {
  grid-template-areas:
    "visual eyebrow"
    "visual title"
    "visual copy"
    "visual price"
    "visual microcopy"
    "visual button"
    "visual trust";
  align-items: start;
  row-gap: 14px;
}

/* Visual: abstract warm background */
.final-human-visual {
  background:
    radial-gradient(ellipse 72% 60% at 28% 38%, rgba(30, 138, 90, 0.12) 0%, transparent 62%),
    radial-gradient(ellipse 65% 65% at 76% 66%, rgba(244, 122, 31, 0.11) 0%, transparent 60%),
    radial-gradient(ellipse 90% 90% at 50% 50%, rgba(252, 248, 241, 0.96) 0%, rgba(242, 234, 223, 0.92) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(6, 27, 46, 0.07),
    0 12px 40px rgba(6, 27, 46, 0.06);
}

/* Journey cards: cleaner pill style */
.journey-card {
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 750;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}
.journey-card-before {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(6, 27, 46, 0.10);
}
.journey-card-after {
  border-color: rgba(244, 122, 31, 0.30);
  background: rgba(255, 248, 238, 0.90);
  color: #d86512;
  font-weight: 800;
  animation: finalAfterGlow 4s ease-in-out infinite;
}
@keyframes finalAfterGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(244, 122, 31, 0.14), 0 0 0 3px rgba(244, 122, 31, 0.07); }
  50%       { box-shadow: 0 8px 32px rgba(244, 122, 31, 0.24), 0 0 0 5px rgba(244, 122, 31, 0.12); }
}

/* Hide old CSS path, show SVG arc */
.journey-path {
  display: none;
}
.journey-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Final CTA right-side spacing */
.final-close .eyebrow {
  margin-bottom: 0;
}
.final-close h2 {
  margin-top: 8px;
  margin-bottom: 0;
}
.final-close > p:not(.eyebrow):not(.final-price):not(.final-microcopy):not(.final-trust-line) {
  margin-top: 0;
}
.final-price {
  margin-top: 20px;
}
.final-microcopy {
  margin-top: 4px;
}
.final-close .button {
  margin-top: 20px;
  width: fit-content;
}
.final-trust-line {
  margin-top: 8px;
}

/* Mobile: single column, visual above content */
@media (max-width: 760px) {
  .final-close {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "eyebrow"
      "title"
      "copy"
      "price"
      "microcopy"
      "button"
      "trust";
    text-align: center;
    row-gap: 12px;
  }
  .final-human-visual {
    height: 220px;
    min-height: unset;
  }
  .journey-card {
    font-size: 0.75rem;
    padding: 8px 13px;
  }
  .final-price,
  .final-close .button,
  .final-microcopy,
  .final-trust-line {
    margin-left: auto;
    margin-right: auto;
  }
  .final-close .button {
    width: 100%;
    max-width: 360px;
  }
}


/* ── Promise badge: full wordmark fix ───────────────────────── */

/* Hide old 38px icon-mark container */
.promise-logo-mark {
  display: none;
}

/* Enlarge seal to fit wordmark */
.promise-seal {
  width: 164px;
  height: 164px;
  overflow: hidden;
  gap: 8px;
}

/* Full wordmark: 116×37px fits comfortably in 164px circle */
.promise-brand-logo {
  width: 116px;
  height: 37px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .promise-seal {
    width: 148px;
    height: 148px;
  }
  .promise-brand-logo {
    width: 104px;
    height: 33px;
  }
}

@media (max-width: 480px) {
  .promise-seal {
    width: 136px;
    height: 136px;
  }
  .promise-brand-logo {
    width: 96px;
    height: 31px;
  }
}

/* Credibility and proof upgrade */
.mobile-customer-proof {
  display: none;
}

.people-section,
.outcomes-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 27, 46, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 14% 20%, rgba(30, 138, 90, 0.1), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(244, 122, 31, 0.1), transparent 30%),
    linear-gradient(180deg, #fffaf1, #f8f1e8);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.people-section .section-heading,
.outcomes-copy {
  max-width: 820px;
}

.people-section .section-heading {
  margin: 0 auto 44px;
  text-align: center;
}

.people-section .section-heading p:not(.eyebrow),
.outcomes-copy > p {
  color: rgba(16, 32, 51, 0.72);
  font-weight: 620;
}

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

.profile-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(30, 138, 90, 0.13);
  border-radius: 30px;
  padding: clamp(18px, 2.5vw, 30px);
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 138, 90, 0.1), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(244, 122, 31, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 72px rgba(6, 27, 46, 0.08);
}

.profile-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 24px;
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.profile-image-wrap img,
.customer-proof-tile img,
.outcomes-copy img,
.system-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(6, 27, 46, 0.62);
  font-size: 0.68rem;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(10px);
}

.profile-role {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.profile-card p:last-child {
  margin: 0;
  color: rgba(16, 32, 51, 0.68);
  font-weight: 620;
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.outcomes-copy img {
  height: auto;
  max-width: 420px;
  margin-top: 26px;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(6, 27, 46, 0.08);
}

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

.outcome-stat-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(30, 138, 90, 0.13);
  border-radius: 26px;
  padding: clamp(20px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 122, 31, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 56px rgba(6, 27, 46, 0.07);
}

.outcome-stat-card strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

.outcome-stat-card span {
  color: rgba(6, 27, 46, 0.78);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.25;
}

.outcome-stat-card p {
  margin: 0;
  color: rgba(102, 115, 131, 0.9);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.case-type-chips,
.system-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-type-chips {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 8px;
}

.case-type-chips span,
.system-proof-chips span {
  border: 1px solid rgba(30, 138, 90, 0.14);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(6, 27, 46, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.outcome-note {
  grid-column: 1 / -1;
  max-width: 700px;
  margin: 8px auto 0;
  color: rgba(102, 115, 131, 0.88);
  font-size: 0.92rem;
  font-weight: 650;
  text-align: center;
}

.story-section .system-card-grid {
  gap: 22px;
}

.story-section .system-visual-card {
  padding: 24px;
  border-color: rgba(30, 138, 90, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.9)),
    radial-gradient(circle at 88% 12%, rgba(244, 122, 31, 0.08), transparent 34%);
}

.system-image-panel {
  min-height: 214px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #fffaf1;
}

.system-image-panel img {
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.system-visual-card:hover .system-image-panel img {
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-3px) scale(1.015);
}

.system-proof-block {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 28px;
  border: 1px solid rgba(30, 138, 90, 0.14);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 20%, rgba(30, 138, 90, 0.11), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(244, 122, 31, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 74px rgba(6, 27, 46, 0.08);
}

.system-proof-block h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.02;
}

.system-proof-block p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 22px;
  color: rgba(16, 32, 51, 0.68);
  font-weight: 650;
}

.system-proof-block a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(244, 122, 31, 0.12);
  color: var(--orange-dark);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.system-proof-block a:hover {
  background: rgba(244, 122, 31, 0.18);
  transform: translateY(-2px);
}

.system-proof-chips {
  justify-content: flex-end;
}

.promise-seal {
  width: 164px;
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 22px;
}

.promise-brand-logo {
  width: 112px;
  height: 42px;
  object-fit: contain;
}

.promise-seal-text {
  color: rgba(6, 27, 46, 0.72);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .people-grid,
  .outcomes-layout,
  .system-proof-block {
    grid-template-columns: 1fr;
  }

  .outcomes-copy {
    text-align: center;
    margin: 0 auto;
  }

  .outcomes-copy img {
    margin-right: auto;
    margin-left: auto;
  }

  .system-proof-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .mobile-customer-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 430px);
    margin: 28px auto 0;
  }

  .customer-proof-tile {
    display: grid;
    gap: 9px;
    border: 1px solid rgba(30, 138, 90, 0.14);
    border-radius: 20px;
    padding: 10px;
    background:
      radial-gradient(circle at 95% 0%, rgba(244, 122, 31, 0.09), transparent 34%),
      rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 36px rgba(6, 27, 46, 0.07);
    text-align: left;
  }

  .customer-proof-tile img {
    aspect-ratio: 1.35 / 1;
    border-radius: 15px;
    filter: saturate(0.82) blur(0.2px);
  }

  .customer-proof-tile strong,
  .customer-proof-tile span {
    display: block;
  }

  .customer-proof-tile strong {
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.2;
  }

  .customer-proof-tile span {
    margin-top: 3px;
    color: rgba(102, 115, 131, 0.94);
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.35;
  }

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

  .profile-image-wrap {
    aspect-ratio: 16 / 11;
  }

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

  .outcome-stat-card {
    min-height: 176px;
    padding: 18px;
  }

  .system-image-panel {
    min-height: 178px;
  }

  .system-proof-block {
    margin-top: 22px;
    border-radius: 26px;
  }

  .system-proof-block a {
    width: 100%;
  }

  .system-proof-chips {
    gap: 8px;
  }

  .promise-seal {
    width: 148px;
    height: 148px;
  }

  .promise-brand-logo {
    width: 104px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .mobile-customer-proof,
  .outcome-stat-grid {
    grid-template-columns: 1fr;
  }

  .people-section .section-heading,
  .outcomes-copy {
    text-align: left;
  }

  .outcomes-copy img {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-visual-card:hover .system-image-panel img,
  .system-proof-block a:hover {
    transform: none;
  }
}

/* Proof and authority expansion */
.risk-section,
.myths-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 27, 46, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(30, 138, 90, 0.1), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(244, 122, 31, 0.09), transparent 32%),
    linear-gradient(180deg, #fffaf1, #f8f1e8);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

.risk-section .section-heading,
.myths-section .section-heading {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.risk-section .section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(16, 32, 51, 0.72);
  font-weight: 650;
}

.risk-card,
.myth-card,
.case-study-card,
.customer-story-grid article {
  border: 1px solid rgba(30, 138, 90, 0.13);
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 122, 31, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 56px rgba(6, 27, 46, 0.07);
}

.people-note {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(102, 115, 131, 0.88);
  font-size: 0.92rem;
  font-weight: 650;
  text-align: center;
}

.outcomes-section .outcomes-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

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

.outcome-stat-card {
  min-height: 196px;
}

.outcome-stat-card strong {
  font-size: clamp(1.85rem, 3vw, 3.35rem);
}

.case-study-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 10px;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 44px);
}

.case-study-card h3 {
  max-width: 650px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
}

.case-study-card p {
  max-width: 760px;
  margin-bottom: 16px;
  color: rgba(16, 32, 51, 0.7);
  font-weight: 650;
}

.case-study-card small {
  color: rgba(102, 115, 131, 0.92);
  font-weight: 760;
}

.case-study-card img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 56px rgba(6, 27, 46, 0.08);
}

.customer-story-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.customer-story-grid article {
  display: grid;
  gap: 9px;
  border-radius: 22px;
  padding: 12px;
}

.customer-story-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  border-radius: 17px;
  object-fit: cover;
  filter: saturate(0.86) blur(0.15px);
}

.customer-story-grid strong,
.customer-story-grid span {
  display: block;
}

.customer-story-grid strong {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.customer-story-grid span {
  color: rgba(102, 115, 131, 0.96);
  font-size: 0.76rem;
  font-weight: 680;
  line-height: 1.38;
}

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

.risk-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 22px;
  padding: 14px;
}

.risk-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
}

.risk-card span {
  color: rgba(6, 27, 46, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

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

.myth-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 12px;
  border-radius: 28px;
  padding: 16px;
}

.myth-card div {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.68);
}

.myth-card div:last-child {
  background: rgba(230, 242, 236, 0.62);
}

.myth-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.myth-card div:last-child span {
  color: var(--green);
}

.myth-card p {
  margin: 0;
  color: rgba(6, 27, 46, 0.74);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.48;
}

@media (max-width: 1040px) {
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcomes-section .outcomes-layout,
  .case-study-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .risk-section .section-heading,
  .myths-section .section-heading {
    text-align: left;
  }

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

  .outcome-stat-grid,
  .customer-story-grid,
  .risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-card {
    border-radius: 28px;
  }

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

@media (max-width: 480px) {
  .outcome-stat-grid,
  .customer-story-grid,
  .risk-grid {
    grid-template-columns: 1fr;
  }
}

/* Cleanup and production polish */
.story-photo-placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 224, 190, 0.95) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 56%, rgba(30, 138, 90, 0.82) 0 19%, transparent 20%),
    radial-gradient(circle at 22% 18%, rgba(244, 122, 31, 0.18), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(30, 138, 90, 0.18), transparent 34%),
    linear-gradient(145deg, #fff5e9, #eaf5ee);
}

.story-photo-placeholder span {
  display: none;
}

.profile-image-wrap::after {
  content: none;
}

.profile-card {
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid rgba(30, 138, 90, 0.14);
  opacity: 0.45;
  pointer-events: none;
}

.profile-card:hover {
  border-color: rgba(244, 122, 31, 0.22);
  box-shadow: 0 30px 82px rgba(6, 27, 46, 0.11);
  transform: translateY(-4px);
}

.profile-card small {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border: 1px solid rgba(30, 138, 90, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(241, 248, 244, 0.86);
  color: rgba(6, 27, 46, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-image-wrap {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 225, 196, 0.78) 0 13%, transparent 14%),
    radial-gradient(ellipse at 50% 66%, rgba(30, 138, 90, 0.18) 0 31%, transparent 32%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(231, 244, 237, 0.9));
}

.profile-image-wrap img[src*="/assets/placeholders/"],
.customer-story-grid img[src*="/assets/placeholders/"],
.customer-proof-tile img[src*="/assets/placeholders/"] {
  filter: grayscale(1) sepia(0.1) saturate(0.25);
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.system-image-panel {
  position: relative;
  min-height: 224px;
  border: 1px solid rgba(30, 138, 90, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 24% 18%, rgba(30, 138, 90, 0.12), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(244, 122, 31, 0.11), transparent 30%),
    #fffaf1;
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
}

.system-image-panel span {
  position: absolute;
  display: block;
}

.plate-core {
  width: 142px;
  height: 142px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 42%, transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 241, 0.88));
  box-shadow: inset 0 0 0 2px rgba(30, 138, 90, 0.18), 0 20px 44px rgba(6, 27, 46, 0.1);
}

.food-zone {
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 10px 24px rgba(6, 27, 46, 0.08);
}

.food-zone-green {
  width: 46px;
  height: 46px;
  top: 73px;
  left: calc(50% - 54px);
  background: rgba(30, 138, 90, 0.78);
}

.food-zone-cream {
  width: 52px;
  height: 40px;
  top: 86px;
  right: calc(50% - 58px);
  background: rgba(246, 225, 183, 0.92);
}

.food-zone-orange {
  width: 58px;
  height: 35px;
  bottom: 58px;
  left: calc(50% - 29px);
  background: rgba(244, 122, 31, 0.7);
}

.guidance-check {
  top: 42px;
  right: calc(50% - 86px);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(30, 138, 90, 0.24);
}

.guidance-check::after,
.review-check::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.monitor-card {
  inset: 42px 36px;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.03) 1px, transparent 1px),
    rgba(255, 255, 255, 0.88);
  background-size: 24px 24px;
  box-shadow: 0 22px 48px rgba(6, 27, 46, 0.1);
}

.monitor-line {
  left: 58px;
  right: 58px;
  bottom: 82px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 19%, var(--green) 44% 100%);
  box-shadow: 0 10px 24px rgba(30, 138, 90, 0.18);
  transform: rotate(-7deg);
}

.monitor-spike {
  left: 78px;
  top: 70px;
  width: 22px;
  height: 42px;
  border-radius: 999px 999px 7px 7px;
  background: rgba(244, 122, 31, 0.2);
}

.monitor-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(30, 138, 90, 0.12);
}

.dot-one { left: 116px; bottom: 82px; }
.dot-two { left: 50%; bottom: 74px; }
.dot-three { right: 86px; bottom: 64px; }

.review-note {
  top: 44px;
  right: 52px;
  width: 112px;
  height: 116px;
  border: 1px solid rgba(6, 27, 46, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.08) 0 0) 22px 32px / 62px 3px no-repeat,
    linear-gradient(rgba(6, 27, 46, 0.055) 0 0) 22px 52px / 72px 3px no-repeat,
    linear-gradient(rgba(30, 138, 90, 0.13) 0 0) 22px 76px / 52px 9px no-repeat,
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 42px rgba(6, 27, 46, 0.1);
}

.medicine-strip {
  left: 54px;
  bottom: 54px;
  width: 122px;
  height: 46px;
  border: 1px solid rgba(30, 138, 90, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 24px 23px, rgba(30, 138, 90, 0.78) 0 8px, transparent 9px),
    radial-gradient(circle at 62px 23px, rgba(30, 138, 90, 0.32) 0 8px, transparent 9px),
    radial-gradient(circle at 100px 23px, rgba(30, 138, 90, 0.32) 0 8px, transparent 9px),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(6, 27, 46, 0.09);
}

.review-line {
  right: 72px;
  bottom: 58px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-21deg);
  transform-origin: right center;
}

.review-check {
  right: 50px;
  bottom: 48px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(30, 138, 90, 0.22);
}

.system-proof-chips {
  position: relative;
  min-height: 176px;
  align-content: center;
  justify-content: center;
}

.system-proof-chips span {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.system-proof-chips span:nth-child(1) {
  transform: translate(-14px, -10px);
}

.system-proof-chips span:nth-child(2) {
  transform: translate(12px, 4px);
}

.system-proof-chips span:nth-child(3) {
  transform: translate(-2px, 16px);
}

.system-proof-chips span:nth-child(4) {
  transform: translate(18px, -7px);
}

.system-proof-chips span:hover {
  border-color: rgba(244, 122, 31, 0.2);
  box-shadow: 0 12px 30px rgba(6, 27, 46, 0.08);
  transform: translateY(-3px);
}

.outcome-chart-visual,
.case-a1c-chart {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(30, 138, 90, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(rgba(6, 27, 46, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 27, 46, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 20% 22%, rgba(244, 122, 31, 0.13), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(30, 138, 90, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.82);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  box-shadow: 0 24px 68px rgba(6, 27, 46, 0.08);
}

.outcome-chart-visual::before,
.case-a1c-chart::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 42%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(105deg, var(--orange) 0 24%, var(--green) 60% 100%);
  box-shadow: 0 14px 30px rgba(30, 138, 90, 0.14);
  transform: rotate(-16deg);
}

.outcome-chart-visual::after,
.case-a1c-chart::after {
  content: "";
  position: absolute;
  left: 17%;
  top: 34%;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow:
    0 0 0 9px rgba(244, 122, 31, 0.12);
}

.chart-label,
.chart-duration,
.case-a1c-chart span {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(30, 138, 90, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: rgba(6, 27, 46, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(6, 27, 46, 0.06);
}

.chart-label-start,
.case-a1c-start {
  left: 12%;
  top: 22%;
  color: var(--orange-dark);
}

.chart-label-end,
.case-a1c-end {
  right: 12%;
  bottom: 22%;
  color: var(--green);
}

.chart-duration,
.case-a1c-days {
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
}

.case-a1c-chart {
  min-height: 280px;
}

.case-study-card .case-a1c-chart {
  width: 100%;
}

.customer-story-grid article {
  position: relative;
  overflow: hidden;
}

.customer-story-grid article::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 44%, #fff 45% 55%, transparent 56%) center / 18px 18px no-repeat,
    var(--green);
  box-shadow: 0 12px 24px rgba(30, 138, 90, 0.18);
}

.faq-section {
  padding-top: clamp(108px, 12vw, 168px);
}

.faq-list details[open]:not(:has(p)) {
  padding-bottom: 0;
}

.final-human-visual {
  isolation: isolate;
}

.journey-card {
  width: 122px;
  height: 122px;
  border-radius: 999px;
  padding: 0;
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(6, 27, 46, 0.07);
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 999px;
}

.journey-card-before::after {
  background: rgba(102, 115, 131, 0.36);
}

.journey-card-after::after {
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(30, 138, 90, 0.1);
}

.refund-section {
  padding-top: clamp(84px, 9vw, 130px);
  padding-bottom: clamp(132px, 12vw, 190px);
}

.refund-card {
  max-width: 940px;
  margin-inline: auto;
  padding-top: clamp(34px, 4.5vw, 58px);
  padding-bottom: clamp(40px, 5vw, 66px);
}

.refund-card h2 {
  margin-bottom: 18px;
}

.refund-support {
  margin-top: 16px;
}

.promise-pillars {
  margin-top: 32px;
}

.refund-note {
  margin-top: 28px;
  margin-bottom: 30px;
}

.promise-seal {
  margin-top: 16px;
  margin-bottom: 38px;
}

.risk-card {
  min-height: 76px;
}

.risk-card img {
  background:
    radial-gradient(circle at 50% 50%, rgba(30, 138, 90, 0.13), transparent 62%),
    rgba(255, 255, 255, 0.82);
  padding: 8px;
}

.process-section,
.refund-section,
.risk-section,
.myths-section,
.faq-section,
.final-cta {
  scroll-margin-top: 84px;
}

@media (max-width: 1040px) {
  .people-section .section-heading {
    text-align: left;
    margin-left: 0;
  }

  .system-proof-chips {
    min-height: 0;
    justify-content: flex-start;
  }

  .system-proof-chips span:nth-child(n) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .system-image-panel {
    min-height: 184px;
  }

  .plate-core {
    width: 118px;
    height: 118px;
  }

  .monitor-card {
    inset: 34px 28px;
  }

  .monitor-line {
    left: 46px;
    right: 46px;
  }

  .review-note {
    right: 34px;
    width: 96px;
    height: 104px;
  }

  .medicine-strip {
    left: 34px;
  }

  .outcome-chart-visual,
  .case-a1c-chart {
    min-height: 220px;
  }

  .profile-image-wrap img {
    object-fit: cover;
  }

  .faq-section {
    padding-top: clamp(86px, 18vw, 118px);
  }

  .refund-section {
    padding-bottom: clamp(118px, 26vw, 160px);
  }

  .journey-card {
    width: 96px;
    height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-card,
  .system-proof-chips span,
  .journey-card-after {
    transition: none;
    animation: none !important;
  }
}

/* Section repair pass: finished editorial visuals */
.system-image-panel {
  padding: 18px;
}

.system-svg {
  width: min(100%, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(6, 27, 46, 0.08));
}

.system-svg path,
.system-svg circle,
.system-svg rect {
  transition: transform 220ms ease, opacity 220ms ease;
}

.system-visual-card:hover .system-svg {
  transform: translateY(-3px);
}

.question-system-visual {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, 440px);
  height: auto;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.system-proof-chips span {
  position: relative;
  z-index: 1;
}

.leadership-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(30, 138, 90, 0.14);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(230, 245, 237, 0.9), rgba(255, 253, 248, 0.82) 50%, rgba(255, 239, 220, 0.82)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 90px rgba(6, 27, 46, 0.09);
}

.leadership-panel::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 46, 0.12), transparent);
  pointer-events: none;
}

.leadership-bg-lines {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  pointer-events: none;
}

.leadership-card {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(24px, 4vw, 46px);
}

.leadership-card:hover {
  box-shadow: none;
}

.leader-image-slot {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 27, 46, 0.12)),
    var(--leader-image, none),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(231, 244, 237, 0.82));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
}

.leader-image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.36), transparent 32%),
    radial-gradient(circle at 84% 84%, rgba(244, 122, 31, 0.14), transparent 34%);
  opacity: 0.9;
}

.leader-image-anup {
  --leader-image: url("assets/anup-singh-dlife.png");
}

.leader-image-ira {
  --leader-image: url("assets/ira-sahay-dlife.png");
}

.leader-image-slot img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.98) contrast(1.02);
}

.leader-copy {
  position: relative;
}

.leader-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.leader-chips span {
  border: 1px solid rgba(30, 138, 90, 0.15);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(6, 27, 46, 0.7);
  font-size: 0.74rem;
  font-weight: 850;
}

.outcome-stat-card {
  min-height: 236px;
  align-content: start;
  padding: clamp(22px, 2.4vw, 30px);
}

.outcome-stat-card strong {
  font-size: clamp(1.8rem, 2.45vw, 3rem);
  overflow-wrap: anywhere;
}

.outcome-stat-card span {
  min-height: 2.5em;
}

.outcome-chart-visual::before,
.outcome-chart-visual::after,
.case-a1c-chart::before,
.case-a1c-chart::after {
  content: none;
}

.a1c-chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-factor-icon,
.risk-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(30, 138, 90, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 20%, rgba(244, 122, 31, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.case-factor-icon::before,
.case-factor-icon::after,
.risk-icon::before,
.risk-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.customer-story-grid article::before {
  content: none;
}

.case-icon-history::before {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(30, 138, 90, 0.78);
  border-radius: 999px;
}

.case-icon-history::after {
  width: 10px;
  height: 9px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: translate(1px, -2px);
}

.case-icon-medicine::before,
.risk-icon-pills::before {
  width: 28px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 50%, rgba(30, 138, 90, 0.18) 50%);
  transform: rotate(-20deg);
}

.case-icon-food::before {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(30, 138, 90, 0.76);
  border-radius: 999px;
}

.case-icon-food::after {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.case-icon-energy::before,
.risk-icon-energy::before {
  width: 16px;
  height: 26px;
  clip-path: polygon(58% 0, 18% 48%, 48% 48%, 32% 100%, 84% 38%, 54% 38%);
  background: var(--orange);
}

.case-icon-family::before {
  width: 29px;
  height: 18px;
  border-radius: 999px 999px 8px 8px;
  background:
    radial-gradient(circle at 28% 30%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 30%, rgba(30, 138, 90, 0.5) 0 5px, transparent 6px),
    linear-gradient(to top, rgba(30, 138, 90, 0.18) 0 8px, transparent 9px);
}

.risk-card img {
  display: none;
}

.risk-icon-heart::before {
  content: "♥";
  position: static;
  color: var(--orange);
  font-size: 1.35rem;
  line-height: 1;
}

.risk-icon-kidney::before,
.risk-icon-liver::before,
.risk-icon-brain::before {
  width: 25px;
  height: 22px;
  border: 3px solid rgba(30, 138, 90, 0.72);
  border-radius: 54% 46% 56% 44%;
}

.risk-icon-weight::before {
  width: 28px;
  height: 23px;
  border: 3px solid rgba(30, 138, 90, 0.72);
  border-radius: 8px 8px 12px 12px;
}

.risk-icon-weight::after {
  width: 10px;
  height: 5px;
  border-top: 3px solid var(--orange);
  border-radius: 999px;
  top: 14px;
}

.risk-icon-bandage::before {
  width: 30px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(30, 138, 90, 0.6);
  background:
    radial-gradient(circle at 50% 50%, var(--orange) 0 2px, transparent 3px),
    rgba(255, 250, 242, 0.86);
  transform: rotate(-18deg);
}

.risk-icon-eye::before {
  width: 30px;
  height: 18px;
  border: 3px solid rgba(30, 138, 90, 0.7);
  border-radius: 70% 30% 70% 30%;
  transform: rotate(45deg);
}

.risk-icon-eye::after {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.risk-icon-rupee::before {
  content: "₹";
  position: static;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
}

.promise-brand-logo {
  width: 116px;
  height: 42px;
  display: block;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.final-human-visual {
  min-height: 360px;
}

.journey-card {
  width: min(48%, 196px);
  height: auto;
  min-height: 62px;
  border-radius: 999px;
  padding: 13px 18px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
}

.journey-card::before,
.journey-card::after {
  content: none;
}

.journey-card-before {
  left: 8%;
  top: 28%;
}

.journey-card-after {
  right: 8%;
  bottom: 24%;
  color: var(--orange-dark);
}

.final-close {
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 48px);
}

.story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.story-photo-solapur {
  object-position: center 34%;
}

.story-photo-ani {
  object-position: center 30%;
}

.story-photo-mr-j {
  object-position: center 28%;
}

.story-carousel .case-slide::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  z-index: 2;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 46, 0.88));
  pointer-events: none;
}

.people-section,
.outcomes-section {
  padding-bottom: clamp(120px, 11vw, 178px);
}

.faq-section {
  padding-top: clamp(132px, 13vw, 188px);
}

.process-section,
.refund-section,
.risk-section,
.myths-section,
.faq-section,
.final-cta {
  padding-bottom: clamp(120px, 11vw, 178px);
}

@media (max-width: 1040px) {
  .leadership-panel {
    grid-template-columns: 1fr;
  }

  .leadership-panel::after {
    inset: 50% 32px auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 27, 46, 0.12), transparent);
  }

  .leadership-card {
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .leadership-card {
    grid-template-columns: 1fr;
  }

  .leader-image-slot {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .outcome-stat-card {
    min-height: auto;
  }

  .final-human-visual {
    min-height: 240px;
  }

  .journey-card {
    width: min(50%, 158px);
    min-height: 54px;
    font-size: 0.72rem;
    padding: 10px 12px;
  }

  .mobile-sticky-cta {
    min-height: 58px;
    padding: 9px 12px;
  }
}

/* Requested landing page refinements */
.leader-image-anup img {
  object-position: center 18%;
}

.leader-image-ira img {
  object-position: center 24%;
}

.outcome-stat-grid {
  align-items: stretch;
}

.outcome-stat-card {
  height: 100%;
  grid-template-rows: auto minmax(2.5em, auto) 1fr;
}

.outcome-stat-card strong,
.outcome-stat-card span,
.outcome-stat-card p {
  text-align: left;
}

.promise-brand-logo {
  display: block;
  width: 118px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  background: none;
}

.site-footer {
  border-top: 1px solid rgba(6, 27, 46, 0.12);
  padding: 44px 20px 50px;
  background: #fffdf8;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  margin-bottom: 24px;
}

.site-footer a {
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 650;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

.site-footer p {
  margin: 0;
  color: rgba(102, 115, 131, 0.92);
  font-size: 1rem;
  font-weight: 650;
}

.legal-page {
  background: #fffdf8;
}

.legal-header,
.legal-content,
.legal-footer {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-header {
  padding: 34px 0 24px;
}

.legal-header a {
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
}

.legal-content {
  padding: 48px 0 70px;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
}

.legal-content h2 {
  max-width: none;
  margin-top: 38px;
  margin-bottom: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.legal-content h3 {
  margin-top: 26px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: rgba(16, 32, 51, 0.74);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}

.legal-footer {
  border-top: 1px solid rgba(6, 27, 46, 0.12);
  padding: 28px 0 46px;
}

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

.legal-footer a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 760px) {
  .process-grid {
    width: min(100% - 30px, 1220px);
    overflow: hidden;
  }

  .process-copy,
  .process-copy h2,
  .process-copy p {
    max-width: 100%;
    text-align: left;
  }

  .leader-image-slot {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .leader-image-anup img {
    object-position: center 20%;
  }

  .leader-image-ira img {
    object-position: center 12%;
  }

  .journey-board {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: hidden;
    padding: 16px 12px;
    border-radius: 24px;
  }

  .journey-board::before,
  .journey-board::after {
    top: 34px;
    bottom: 34px;
    left: 34px;
    width: 3px;
  }

  .journey-board .journey-step {
    width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    align-items: center;
    justify-items: start;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 14px 12px;
    transform: none;
  }

  .journey-board .journey-step > span {
    width: 42px;
    height: 42px;
    border-width: 4px;
    grid-row: auto;
    transform: none;
  }

  .journey-board .journey-copy,
  .journey-board .journey-step:nth-child(odd) .journey-copy,
  .journey-board .journey-step:nth-child(even) .journey-copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    grid-row: auto;
    text-align: left;
    transform: none;
  }

  .journey-board .journey-copy h3,
  .journey-board .journey-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .journey-board .journey-copy h3 {
    font-size: 1.05rem;
  }

  .journey-board .journey-copy p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .promise-seal {
    width: 132px;
    height: 132px;
    padding: 18px;
  }

  .promise-brand-logo {
    width: 94px;
    max-height: 36px;
  }

  .booking-nudge {
    display: none;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

/* Final logo and booking-progress overrides */
.promise-logo-pill {
  width: min(320px, 82vw);
  min-height: 98px;
  display: grid;
  place-items: center;
  margin: 0 auto 30px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 42px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.promise-logo-pill .promise-brand-logo,
.promise-logo-pill .promise-inline-logo {
  display: block;
  width: min(245px, 100%);
  height: auto;
  max-height: none;
  object-fit: contain;
  background: none;
}

.refund-card.reveal.visible .promise-logo-pill {
  animation: promiseSealIn 700ms ease both;
}

.journey-board,
.journey-board.in-view,
.journey-board:not([data-progress-line]) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: auto;
  padding: clamp(18px, 3vw, 30px);
  overflow: visible;
}

.journey-board::before,
.journey-board::after,
.journey-board .journey-step::before {
  content: none !important;
  display: none !important;
}

.journey-board .journey-step,
.journey-board .journey-step:nth-child(2),
.journey-board .journey-step:nth-child(3),
.journey-board .journey-step:nth-child(4),
.journey-board .journey-step:nth-child(5) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: center;
  justify-items: start;
  gap: 20px;
  margin: 0;
  border: 1px solid rgba(30, 138, 90, 0.13);
  border-radius: 28px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.78);
  transform: none !important;
  opacity: 1;
}

.journey-board .journey-step > span,
.journey-board .journey-step:nth-child(5) > span,
.journey-board.in-view .journey-step > span,
.journey-board:not([data-progress-line]) .journey-step > span {
  position: static;
  grid-row: auto;
  width: 64px;
  height: 64px;
  transform: none !important;
  opacity: 1;
}

.journey-board .journey-copy,
.journey-board .journey-step:nth-child(odd) .journey-copy,
.journey-board .journey-step:nth-child(even) .journey-copy,
.journey-board.in-view .journey-copy,
.journey-board:not([data-progress-line]) .journey-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-row: auto;
  margin: 0;
  text-align: left;
  transform: none !important;
  opacity: 1;
}

.journey-board .journey-copy h3,
.journey-board .journey-copy p {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.journey-board .journey-copy p {
  margin: 0;
}

@media (max-width: 760px) {
  .promise-logo-pill {
    width: min(274px, 84vw);
    min-height: 86px;
    border-radius: 34px;
    padding: 15px 22px;
  }

  .promise-logo-pill .promise-brand-logo,
  .promise-logo-pill .promise-inline-logo {
    width: min(220px, 100%);
  }

  .journey-board,
  .journey-board.in-view,
  .journey-board:not([data-progress-line]) {
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
  }

  .journey-board .journey-step,
  .journey-board .journey-step:nth-child(2),
  .journey-board .journey-step:nth-child(3),
  .journey-board .journey-step:nth-child(4),
  .journey-board .journey-step:nth-child(5) {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    border-radius: 22px;
    padding: 15px 13px;
  }

  .journey-board .journey-step > span,
  .journey-board .journey-step:nth-child(5) > span,
  .journey-board.in-view .journey-step > span,
  .journey-board:not([data-progress-line]) .journey-step > span {
    width: 46px;
    height: 46px;
    border-width: 4px;
    font-size: 1.05rem;
  }

  .journey-board .journey-copy h3 {
    margin-bottom: 6px;
    font-size: 1.03rem;
    line-height: 1.18;
  }

  .journey-board .journey-copy p {
    font-size: 0.86rem;
    line-height: 1.42;
  }
}

/* Final leadership and footer scale overrides */
.leadership-panel {
  overflow: hidden;
}

.leadership-card,
.leadership-card-anup,
.leadership-card-ira {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 2.6vw, 34px);
  min-width: 0;
  padding: clamp(26px, 3vw, 38px);
}

.leadership-card .leader-image-slot {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.leadership-card .leader-copy {
  min-width: 0;
  max-width: 430px;
}

.leadership-card .leader-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 1;
}

.leadership-card .leader-copy p {
  max-width: 100%;
  overflow-wrap: break-word;
  color: rgba(16, 32, 51, 0.7);
  font-size: clamp(0.95rem, 1.05vw, 1.04rem);
  font-weight: 620;
  line-height: 1.58;
}

.leadership-card .leader-chips {
  gap: 8px;
  margin-top: 16px;
}

.leadership-card .leader-chips span {
  max-width: 100%;
  white-space: normal;
  font-size: 0.7rem;
  line-height: 1.18;
}

.site-footer {
  padding: 28px 20px 34px;
}

.site-footer nav {
  gap: 14px 28px;
  margin-bottom: 16px;
}

.site-footer a {
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  font-weight: 720;
}

.site-footer p {
  font-size: 0.82rem;
}

.legal-header,
.legal-content,
.legal-footer {
  width: min(820px, calc(100% - 36px));
}

.legal-header {
  padding: 24px 0 12px;
}

.legal-content {
  padding: 30px 0 48px;
}

.legal-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 30px;
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
}

.legal-content p,
.legal-content li {
  font-size: 0.96rem;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .leadership-card,
  .leadership-card-anup,
  .leadership-card-ira {
    grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
    padding: 26px;
  }

  .leadership-card .leader-copy h3 {
    font-size: clamp(2rem, 3.8vw, 2.85rem);
  }

  .leadership-card .leader-copy p {
    font-size: 0.94rem;
    line-height: 1.54;
  }
}

@media (max-width: 1040px) {
  .leadership-card,
  .leadership-card-anup,
  .leadership-card-ira {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  }

  .leadership-card .leader-copy {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .leadership-panel {
    border-radius: 26px;
  }

  .leadership-card,
  .leadership-card-anup,
  .leadership-card-ira {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .leadership-card .leader-image-slot {
    width: min(100%, 360px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .leadership-card .leader-copy {
    max-width: 100%;
    text-align: left;
  }

  .leadership-card .leader-copy h3 {
    font-size: clamp(2rem, 12vw, 2.7rem);
  }

  .leadership-card .leader-copy p {
    font-size: 0.94rem;
  }

  .site-footer {
    padding: 24px 18px 96px;
  }

  .site-footer nav {
    gap: 10px 18px;
  }

  .site-footer a {
    font-size: 0.82rem;
  }
}
