:root {
  --bg: #f8f3ea;
  --bg-soft: #fffaf2;
  --panel: rgba(255, 251, 244, 0.86);
  --card: #fffdf8;
  --ink: #1f2a37;
  --ink-soft: #506172;
  --line: rgba(31, 42, 55, 0.12);
  --line-strong: rgba(31, 42, 55, 0.22);
  --navy: #1d3b53;
  --navy-deep: #112537;
  --gold: #cf8b2b;
  --gold-soft: #f4d8aa;
  --peach: #f0c7a1;
  --mint: #dce9dd;
  --shadow: 0 24px 60px rgba(17, 37, 55, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: 1180px;
  --sticky-header-offset: 104px;
  --display-font: "Avenir Next Condensed", "Arial Narrow", "Avenir Next",
    "Gill Sans", sans-serif;
  --body-font: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

.gtm-noscript-iframe {
  display: none;
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-header-offset);
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 216, 170, 0.55), transparent 32%),
    linear-gradient(180deg, #fcf8ef 0%, #f4efe4 100%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(207, 139, 43, 0.45);
  outline-offset: 4px;
  border-radius: 14px;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: visible;
  overflow-x: clip;
  padding-bottom: 30px;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-one {
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(240, 199, 161, 0.48);
}

.ambient-two {
  top: 520px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(207, 139, 43, 0.2);
}

.site-header,
.section,
.hero,
.site-footer {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(32, 41, 54, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.3), transparent 42%),
    rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 32px rgba(19, 38, 58, 0.06);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

@supports (backdrop-filter: blur(14px)) {
  .site-header {
    backdrop-filter: blur(14px);
  }
}

.site-header.is-header-scrolled,
.site-header.is-mobile-menu-open {
  border-color: rgba(32, 41, 54, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.42), transparent 42%),
    rgba(255, 253, 248, 0.94);
  box-shadow:
    0 18px 46px rgba(19, 38, 58, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: block;
  flex: 0 0 58px;
  border-radius: 999px;
  background: url("logo-orbite-valide.svg") center / contain no-repeat;
  box-shadow: 0 18px 34px rgba(19, 38, 58, 0.14);
}

.brand-mark-letter {
  display: none;
}

.brand-mark-road {
  display: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-family: var(--display-font);
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 38ch;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button-primary {
  background: linear-gradient(135deg, var(--navy) 0%, #315a78 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(29, 59, 83, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 38px rgba(29, 59, 83, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  border-color: rgba(29, 59, 83, 0.16);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  border-color: rgba(29, 59, 83, 0.12);
}

.site-header .button-ghost {
  min-height: 52px;
  padding: 0 22px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(29, 59, 83, 0.18);
  box-shadow:
    0 16px 30px rgba(29, 59, 83, 0.12),
    0 0 0 5px rgba(240, 199, 161, 0.18);
  color: var(--navy-deep);
}

.site-header .button-ghost:hover {
  box-shadow:
    0 20px 36px rgba(29, 59, 83, 0.16),
    0 0 0 6px rgba(240, 199, 161, 0.22);
}

.button.wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
  padding: 56px 0 34px;
}

.hero-copy {
  padding: 22px 6px 0 0;
}

.eyebrow,
.panel-label,
.result-kicker,
.label-chip {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 59, 83, 0.08);
  box-shadow: 0 12px 24px rgba(29, 59, 83, 0.05);
}

.hero h1,
.section-heading h2,
.booking-card h2 {
  margin: 0;
  font-family: var(--display-font);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.35rem);
  max-width: 9.7ch;
}

.hero-lead,
.section-heading p,
.price-note,
.timeline p,
.resource-grid p,
.faq-grid p,
.booking-card p,
.scope-card li,
.pricing-card li,
.result-copy,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 33ch;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--navy-deep);
  font-weight: 600;
}

.hero-sublead {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  line-height: 1.76;
  font-size: 1.02rem;
}

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

.hero-actions .button-primary {
  min-width: 246px;
}

.hero-actions .button-secondary {
  border-width: 1.5px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}

.hero-trust article,
.panel-card,
.pricing-card,
.scope-card,
.quiz-card,
.result-card,
.resource-grid article,
.links-card,
.faq-grid details,
.booking-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-trust article {
  min-height: 150px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 24px 24px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.9)),
    var(--panel);
  border: 1px solid rgba(29, 59, 83, 0.08);
  box-shadow: 0 22px 48px rgba(29, 59, 83, 0.08);
}

.hero-trust article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d9a142 0%, #edd29f 100%);
}

.hero-trust span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 2.3rem;
  letter-spacing: -0.04em;
}

.hero-trust p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
  max-width: 22ch;
}

.hero-trust-source {
  margin: 4px 8px 0;
  color: #6c7b88;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-panel {
  display: grid;
  gap: 20px;
  padding-top: 12px;
}

.panel-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(29, 59, 83, 0.08);
  box-shadow: 0 26px 56px rgba(29, 59, 83, 0.09);
}

.panel-card h2 {
  margin: 0 0 16px;
  font-size: 1.95rem;
  font-family: var(--display-font);
  letter-spacing: -0.04em;
}

.panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 59, 83, 0.08);
}

.glass {
  background:
    radial-gradient(circle at top right, rgba(210, 149, 53, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 246, 236, 0.84)),
    var(--panel);
}

.warm {
  background:
    radial-gradient(circle at top right, rgba(210, 149, 53, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(244, 216, 170, 0.55), rgba(255, 251, 244, 0.9)),
    var(--panel);
}

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

.feature-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.62;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, #e8b45f 100%);
}

.muted-list li::before {
  background: linear-gradient(135deg, #a6b3bf 0%, #6f8598 100%);
}

.compliance-strip {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 4px auto 0;
  padding: 8px 20px 10px;
  border-radius: 24px;
  background: rgba(29, 59, 83, 0.92);
  color: #edf4f8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(17, 37, 55, 0.12);
  text-align: center;
  display: grid;
  justify-items: center;
}

.compliance-strip p {
  margin: 0;
}

.compliance-lead {
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.55vw, 1.42rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #f7fafc;
  text-wrap: balance;
}

.compliance-divider {
  width: 72px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(243, 217, 165, 0.12),
    rgba(243, 217, 165, 0.95),
    rgba(243, 217, 165, 0.12)
  );
}

.compliance-body {
  max-width: 92ch;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.38;
  color: rgba(244, 247, 251, 0.9);
  text-align: center;
  text-wrap: balance;
}

.section {
  padding: 96px 0 0;
}

.offer {
  padding-top: 40px;
}

#process {
  padding-top: 48px;
}

#qualification {
  padding-top: 48px;
}

.section-heading {
  max-width: 62ch;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.15rem);
  max-width: 14ch;
}

.section-heading p {
  margin-top: 14px;
}

.offer-grid,
.qualification-grid,
.resource-grid {
  display: grid;
  gap: 20px;
}

.offer-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  gap: 22px;
}

.pricing-card,
.scope-card,
.quiz-card,
.result-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.pricing-card,
.scope-card {
  display: flex;
  flex-direction: column;
}

.offer .section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  max-width: none;
  text-align: center;
}

.offer-heading h2 {
  margin: 0 auto;
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
  text-wrap: balance;
}

.offer-title-line {
  display: block;
}

.offer .pricing-card,
.offer .scope-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px rgba(29, 59, 83, 0.08);
}

.offer .pricing-card {
  padding: 26px;
  gap: 22px;
  background: linear-gradient(180deg, #20384f 0%, #294e69 100%);
  color: #f4f7fb;
}

.offer .price-top {
  display: grid;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.label-chip {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-card h3,
.scope-card h3,
.resource-grid h3,
.faq-grid summary,
.result-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-family: var(--display-font);
  letter-spacing: -0.03em;
}

.offer .pricing-card h3,
.offer .scope-card h3 {
  font-size: 1.7rem;
  line-height: 0.98;
  margin: 0;
}

.price {
  margin: 0;
  font-family: var(--display-font);
  color: #fff;
  font-size: 3.3rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.offer .price {
  font-size: clamp(2.9rem, 4.8vw, 4rem);
  letter-spacing: -0.05em;
  color: #fff;
}

.offer .price-note {
  margin: 0;
  line-height: 1.65;
  color: rgba(244, 247, 251, 0.82);
}

.pricing-card .price-top h3 {
  color: #fff;
}

.offer .pricing-card .label-chip {
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-card .feature-list {
  flex: 1;
  padding: 0;
}

.offer .pricing-card .feature-list li,
.offer .pricing-card .button {
  color: #f4f7fb;
}

.offer .pricing-card .button-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 230, 210, 0.96));
  color: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 26px rgba(24, 44, 61, 0.16);
}

.pricing-card .button {
  margin-top: 0;
}

.scope-card {
  padding: 28px;
  gap: 26px;
  background:
    radial-gradient(circle at top right, rgba(220, 233, 221, 0.85), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.9));
  border: 1px solid rgba(29, 59, 83, 0.08);
}

.scope-block {
  display: grid;
  gap: 16px;
}

.scope-card h3 + .feature-list {
  margin-bottom: 0;
}

.scope-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(39, 65, 91, 0.06);
  line-height: 1.65;
}

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

.timeline article {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 230, 0.88));
  border: 1px solid rgba(29, 59, 83, 0.08);
  box-shadow: 0 18px 45px rgba(29, 59, 83, 0.08);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.timeline h3 {
  margin: 22px 0 10px;
  font-size: 1.3rem;
  font-family: var(--display-font);
  letter-spacing: -0.03em;
}

.timeline p {
  margin: 0;
}

.timeline p + p {
  margin-top: 12px;
}


.situation-hub {
  padding-top: 44px;
}

.situation-heading {
  align-items: center;
  text-align: center;
}

.situation-heading h2 {
  max-width: 11ch;
}

.situation-heading p {
  max-width: 58ch;
  margin-inline: auto;
}

.situation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.situation-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(220, 233, 221, 0.6), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 244, 236, 0.88));
  border: 1px solid rgba(29, 59, 83, 0.08);
  box-shadow: 0 18px 45px rgba(29, 59, 83, 0.08);
}

.situation-card-featured {
  background:
    radial-gradient(circle at top right, rgba(244, 216, 170, 0.7), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 234, 0.9));
}

.situation-card-dark {
  background: linear-gradient(180deg, #20384f 0%, #294e69 100%);
  color: #f4f7fb;
}

.situation-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.75rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

.situation-card-dark h3 {
  color: #f4f7fb;
}

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

.situation-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 59, 83, 0.08);
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.25;
}

.situation-link-list a::after {
  content: ">";
  flex: 0 0 auto;
  color: var(--gold);
}

.situation-card-dark .situation-link-list a {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f4f7fb;
}

.proof-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
}

.proof-copy-card {
  align-self: start;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(26, 48, 69, 0.98), rgba(49, 86, 117, 0.94));
  color: #f4f7fb;
}

.proof-copy-card .eyebrow,
.proof-copy-card .proof-intro,
.proof-copy-card li {
  color: rgba(244, 247, 251, 0.88);
}

.proof-copy-card h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.proof-intro {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

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

.proof-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.48;
}

.proof-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
}

.proof-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, #efc573 100%);
}

.proof-image-card {
  align-self: start;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 235, 0.96));
  border: 1px solid rgba(34, 50, 71, 0.08);
}

.proof-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(34, 50, 71, 0.08);
  box-shadow: 0 20px 50px rgba(29, 59, 83, 0.12);
}

.proof-image-card figcaption {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.qualification-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.quiz-card {
  display: grid;
  gap: 16px;
}

.quiz-card label {
  display: grid;
  gap: 8px;
}

.quiz-card span {
  font-weight: 600;
}

.quiz-card select {
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.result-card {
  position: sticky;
  top: 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(160deg, rgba(255, 251, 244, 0.86), rgba(220, 233, 221, 0.5)),
    var(--panel);
}

.result-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.result-card.has-outcome {
  gap: 10px;
}

.result-card.has-outcome h3 {
  font-size: 1.55rem;
}

.result-kicker {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--navy-deep);
}

.result-copy {
  display: grid;
  gap: 14px;
}

.result-copy p {
  margin: 0;
}

.result-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.result-steps:empty {
  display: none;
}

.result-steps li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 59, 83, 0.08);
}

.result-inline-form {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 59, 83, 0.1);
}

.result-inline-form[hidden] {
  display: none;
}

.result-inline-form label,
.result-form-fieldset {
  display: grid;
  gap: 8px;
}

.result-inline-form > label > span,
.result-form-fieldset legend {
  color: var(--navy-deep);
  font-weight: 700;
}

.result-inline-form input[type="text"],
.result-inline-form input[type="tel"],
.result-inline-form input[type="email"],
.result-inline-form select {
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(29, 59, 83, 0.18);
  background: #fff;
  color: var(--ink);
}

.result-form-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.result-availability label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(29, 59, 83, 0.12);
  color: var(--ink);
}

.result-availability input {
  margin: 0;
  accent-color: var(--navy);
}

.result-inline-form .button {
  margin-top: 8px;
}

.result-card.has-outcome .result-copy {
  gap: 10px;
}

.result-card.has-outcome .result-inline-form {
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.result-card.has-outcome .result-inline-form label,
.result-card.has-outcome .result-form-fieldset {
  gap: 6px;
}

.result-card.has-outcome .result-inline-form input[type="text"],
.result-card.has-outcome .result-inline-form input[type="tel"],
.result-card.has-outcome .result-inline-form select {
  min-height: 50px;
}

.result-card.has-outcome .result-availability label {
  padding: 12px 14px;
}

.result-card.has-outcome .result-inline-form .button {
  margin-top: 2px;
}

.result-card.is-confirmation {
  justify-content: center;
}

.result-card.is-confirmation .result-copy {
  max-width: 34rem;
}

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

.resource-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.links-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.links-card a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 59, 83, 0.1);
  color: var(--navy);
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  padding: 18px 22px;
  border-radius: 18px;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-grid p {
  margin: 12px 0 0;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(17, 37, 55, 0.92), rgba(49, 90, 120, 0.9)),
    var(--navy-deep);
  color: #fff;
}

.booking-card .eyebrow,
.booking-card p,
.booking-card h2 {
  color: #fff;
}

.booking-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  max-width: 11ch;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.booking-copy {
  max-width: 34rem;
}

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

.booking-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.booking-points li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c788 0%, #fff1d0 100%);
}

.call-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
}

.call-form label {
  display: grid;
  gap: 8px;
}

.call-form span {
  color: var(--navy-deep);
  font-weight: 700;
}

.call-form input,
.call-form select {
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(29, 59, 83, 0.18);
  background: #fff;
  color: var(--ink);
}

.call-form-full {
  grid-column: 1 / -1;
}

.call-form .button {
  grid-column: 1 / -1;
}

.call-form-note,
.call-form-status {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.55;
}

.call-form-note {
  color: var(--navy-deep);
  font-size: 0.94rem;
}

.call-form-status {
  min-height: 1.55em;
  color: var(--navy);
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.55fr) minmax(240px, 0.75fr);
  align-items: start;
  gap: 28px;
  padding: 40px 0 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  order: 4;
  justify-self: center;
  max-width: 920px;
  margin: 0 auto;
  color: rgba(80, 97, 114, 0.82);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.brand-footer .brand-mark {
  width: 48px;
  height: 48px;
}

.brand-footer .brand-mark-letter {
  font-size: 0.96rem;
}

.brand-footer .brand-mark-road {
  height: 24px;
}

.brand-footer .brand-copy strong {
  font-size: 0.95rem;
}

.brand-footer .brand-copy span {
  font-size: 0.84rem;
}

.footer-sitemap,
.footer-links {
  color: var(--ink-soft);
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 14px 28px;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  justify-items: end;
  gap: 14px 26px;
  text-align: right;
}

.footer-links a:last-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.footer-mobile-card-art {
  display: none;
}

.page-note {
  margin: 0;
  color: var(--ink-soft);
}

.legal-page {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 56px 0 80px;
}

.brand-legal,
.legal-page > .brand {
  margin-bottom: 18px;
}

.legal-page h1 {
  margin: 0 0 14px;
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--navy-deep);
  letter-spacing: -0.05em;
}

.legal-page h2 {
  margin: 36px 0 12px;
  font-family: var(--display-font);
  font-size: 1.9rem;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.legal-page h3 {
  margin: 26px 0 10px;
  color: var(--navy-deep);
  font-size: 1.14rem;
  line-height: 1.35;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 18px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--navy);
}



.seo-page {
  position: relative;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 52px 0 72px;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.seo-hero-copy,
.seo-side-card,
.seo-content-card,
.seo-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.seo-hero-copy {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(220, 233, 221, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.9));
}

.seo-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--display-font);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--navy-deep);
  text-wrap: balance;
}

.seo-lead,
.seo-page p,
.seo-page li {
  color: var(--ink-soft);
  line-height: 1.7;
}

.seo-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--navy-deep);
  font-size: 1.12rem;
  font-weight: 600;
}

.seo-hero-copy p:not(.eyebrow):not(.seo-lead) {
  margin: 0;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.seo-side-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #20384f 0%, #294e69 100%);
  color: #f4f7fb;
}

.seo-side-card h2,
.seo-side-card p,
.seo-side-card li {
  color: #f4f7fb;
}

.seo-side-card h2,
.seo-content-card h2,
.seo-cta-card h2 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.04em;
}

.seo-side-card h2 {
  font-size: 2rem;
  line-height: 0.98;
}

.seo-side-card p {
  margin: 0;
  color: rgba(244, 247, 251, 0.84);
}

.seo-side-card .feature-list li {
  color: rgba(244, 247, 251, 0.9);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.seo-content-card,
.seo-cta-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.9)),
    var(--panel);
}

.seo-content-card {
  display: grid;
  gap: 24px;
}

.seo-section {
  display: grid;
  gap: 12px;
}

.seo-section h2 {
  font-size: 2rem;
  line-height: 1;
  color: var(--navy-deep);
}

.seo-section h3 {
  margin: 8px 0 0;
  font-family: var(--display-font);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.seo-section p {
  margin: 0;
}

.seo-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(29, 59, 83, 0.08), rgba(236, 172, 76, 0.16));
  border: 1px solid rgba(29, 59, 83, 0.09);
}

.seo-inline-cta p {
  margin: 0;
  max-width: 46ch;
  color: var(--navy-deep);
  font-weight: 700;
}

.seo-section .feature-list {
  gap: 10px;
}

.seo-related-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-related-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(29, 59, 83, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-deep);
  font-weight: 700;
}

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

.seo-checklist li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(29, 59, 83, 0.08);
}

.seo-cta-card {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.seo-cta-card h2 {
  font-size: 2.2rem;
  line-height: 0.96;
  color: var(--navy-deep);
}

.seo-cta-card p {
  margin: 0;
}

.seo-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(39, 65, 91, 0.06);
  color: var(--navy-deep);
}

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

.seo-faq details {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 59, 83, 0.08);
}

.seo-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy-deep);
}

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

.seo-faq p {
  margin: 10px 0 0;
}

@media (max-width: 1100px) {
  .hero,
  .offer-grid,
  .qualification-grid,
  .booking-card,
  .booking-layout,
  .proof-block,
  .seo-hero,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

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

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

  .booking-card {
    display: grid;
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 10px;
  }

  .hero-trust,
  .timeline,
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .booking-card h2 {
    max-width: 100%;
  }

  .offer-title-line {
    display: inline;
  }

  .section {
    padding-top: 72px;
  }

  .result-card,
  .seo-cta-card {
    position: static;
    top: auto;
  }

  .legal-page {
    padding: 44px 0 68px;
  }

  .legal-page h1,
  .legal-page h2 {
    max-width: 100%;
    text-wrap: balance;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-sitemap,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .hero,
  .site-footer,
  .compliance-strip,
  .legal-page,
  .seo-page {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .site-header {
    gap: 12px;
    margin-top: 14px;
  }

  .site-header .button-ghost {
    min-height: 50px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-copy {
    gap: 3px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
  }

  .brand-copy span {
    font-size: 0.82rem;
    max-width: 24ch;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    justify-content: stretch;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(29, 59, 83, 0.08);
  }

  .hero {
    gap: 18px;
    padding: 28px 0 20px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero .eyebrow {
    min-height: 0;
    padding: 8px 14px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 17vw, 4.1rem);
    line-height: 0.92;
  }

  .hero-lead {
    margin-top: 16px;
    max-width: none;
    font-size: 1.08rem;
  }

  .hero-sublead {
    margin-top: 14px;
    font-size: 0.97rem;
    line-height: 1.66;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

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

  .hero-trust article {
    min-height: 0;
    padding: 18px 18px 17px;
  }

  .hero-trust span {
    margin-bottom: 8px;
    font-size: 2rem;
  }

  .hero-trust p {
    max-width: none;
    font-size: 0.95rem;
  }

  .hero-trust-source {
    margin: 8px 4px 0;
  }

  .panel-card,
  .pricing-card,
  .scope-card,
  .quiz-card,
  .result-card,
  .booking-card {
    padding: 22px;
  }

  .panel-card h2 {
    margin-bottom: 12px;
    font-size: 1.7rem;
  }

  .compliance-strip {
    padding: 14px 16px 16px;
    border-radius: 22px;
  }

  .compliance-divider {
    width: 58px;
  }

  .compliance-body {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .section {
    padding-top: 56px;
  }

  .offer {
    padding-top: 28px;
  }

  #process,
  #qualification {
    padding-top: 28px;
  }

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

  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(2.2rem, 13vw, 3.25rem);
    line-height: 0.94;
    max-width: 100%;
  }

  .offer-grid,
  .qualification-grid,
  .timeline,
  .proof-block,
  .faq-grid,
  .feature-list,
  .proof-list {
    gap: 14px;
  }

  .offer .pricing-card,
  .scope-card {
    gap: 20px;
  }

  .price,
  .offer .price {
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .feature-list li,
  .scope-note,
  .timeline p,
  .proof-intro,
  .proof-image-card figcaption,
  .result-copy,
  .faq-grid p,
  .call-form-note {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .feature-list li,
  .proof-list li,
  .booking-points li {
    padding-left: 18px;
  }

  .timeline article {
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .timeline h3 {
    margin: 18px 0 8px;
    font-size: 1.18rem;
  }

  .proof-block {
    padding: 16px;
    border-radius: 28px;
  }

  .proof-copy-card,
  .proof-image-card {
    padding: 18px;
    border-radius: 22px;
  }

  .proof-copy-card h2 {
    font-size: clamp(1.75rem, 10vw, 2.45rem);
  }

  .proof-intro,
  .proof-list li {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .proof-image-card img {
    border-radius: 18px;
  }

  .quiz-card,
  .result-card {
    gap: 14px;
  }

  .quiz-card label,
  .result-inline-form label,
  .result-form-fieldset {
    gap: 6px;
  }

  .quiz-card select,
  .result-inline-form input[type="text"],
  .result-inline-form input[type="tel"],
  .call-form input,
  .call-form select {
    min-height: 50px;
    border-radius: 14px;
  }

  .result-card h3 {
    font-size: 1.75rem;
    line-height: 0.96;
  }

  .result-kicker {
    font-size: 0.95rem;
  }

  .result-inline-form {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    gap: 12px;
  }

  .result-availability {
    grid-template-columns: 1fr;
  }

  .result-availability label {
    padding: 12px 14px;
  }

  .booking-card {
    gap: 18px;
    padding: 24px 20px;
  }

  .call-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .call-form-full,
  .call-form .button,
  .call-form-note,
  .call-form-status {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .legal-page {
    padding: 34px 0 56px;
  }

  .legal-page h1 {
    font-size: clamp(2.2rem, 13vw, 3.1rem);
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .legal-page h2 {
    margin-top: 28px;
    font-size: 1.55rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .legal-page p,
  .legal-page li,
  .legal-page a {
    overflow-wrap: anywhere;
  }

  .back-link {
    min-height: 42px;
    align-items: center;
  }



  .seo-page {
    padding: 28px 0 54px;
  }

  .seo-hero-copy,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-card {
    padding: 20px;
  }

  .seo-hero {
    gap: 16px;
  }

  .seo-hero-copy {
    gap: 14px;
  }

  .seo-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 13vw, 3.45rem);
    line-height: 0.94;
  }

  .seo-lead {
    font-size: 1rem;
  }

  .seo-actions {
    flex-direction: column;
  }

  .situation-hub {
    padding-top: 32px;
  }

  .situation-heading {
    text-align: left;
    align-items: flex-start;
  }

  .situation-heading h2 {
    max-width: 100%;
  }

  .situation-card {
    gap: 14px;
    padding: 20px;
  }

  .situation-card h3 {
    font-size: 1.45rem;
    letter-spacing: 0;
  }

  .situation-link-list a {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .seo-inline-cta {
    align-items: stretch;
  }

  .seo-inline-cta .button {
    width: 100%;
  }

  .seo-content-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .seo-content-card {
    gap: 20px;
  }

  .seo-section h2,
  .seo-cta-card h2 {
    font-size: 1.85rem;
    letter-spacing: 0;
  }

  .seo-section h3 {
    font-size: 1.3rem;
    letter-spacing: 0;
  }

  .seo-checklist li,
  .seo-faq details {
    padding: 14px;
  }

  .site-footer {
    gap: 16px;
    padding: 32px 0 44px;
  }

  .footer-sitemap,
  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 12px 18px;
    text-align: center;
  }

  .footer-links a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-sitemap a,
  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .site-header,
  .section,
  .hero,
  .site-footer,
  .compliance-strip,
  .legal-page,
  .seo-page {
    width: min(calc(100% - 16px), var(--content-width));
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.78rem;
  }

  .hero h1,
  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(2rem, 15vw, 2.9rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .panel-card,
  .pricing-card,
  .scope-card,
  .quiz-card,
  .result-card,
  .booking-card {
    padding: 18px;
  }

  .proof-block {
    padding: 12px;
  }

  .proof-copy-card,
  .proof-image-card,
  .call-form {
    padding: 16px;
  }

  .faq-grid details {
    padding: 16px 18px;
  }

  .faq-grid summary {
    font-size: 1.2rem;
  }

  .legal-page h1 {
    font-size: clamp(2rem, 12vw, 2.65rem);
  }

  .legal-page h2 {
    font-size: 1.42rem;
  }

  .seo-hero-copy,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-card {
    padding: 18px;
  }

  .seo-hero-copy h1 {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .seo-section h2,
  .seo-cta-card h2 {
    font-size: 1.65rem;
  }

}

/* V3 - direction Google light + home allegee.
   Cette passe reste volontairement CSS-only: logo et contenus inchanges. */
:root {
  --bg: #fbfaf7;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.86);
  --card: #ffffff;
  --ink: #202936;
  --ink-soft: #5f6c7a;
  --line: rgba(32, 41, 54, 0.1);
  --line-strong: rgba(32, 41, 54, 0.18);
  --navy: #24445e;
  --navy-deep: #182736;
  --gold: #c7852a;
  --shadow: 0 18px 52px rgba(24, 39, 54, 0.08);
  --content-width: 1160px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 226, 236, 0.54), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(247, 222, 176, 0.48), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, #f7f4ed 100%);
}

.ambient {
  opacity: 0.34;
  filter: blur(86px);
}

.page-shell {
  padding-bottom: 18px;
}

.site-header {
  margin-top: 16px;
}

.site-header .button-ghost {
  min-height: 54px;
  padding: 0 24px;
  background: linear-gradient(135deg, #b83261 0%, #8d2048 100%);
  border-color: rgba(184, 50, 97, 0.28);
  color: #fff;
  box-shadow:
    0 16px 30px rgba(184, 50, 97, 0.22),
    0 0 0 7px rgba(184, 50, 97, 0.08);
}

.site-header .button-ghost:hover {
  box-shadow:
    0 20px 38px rgba(184, 50, 97, 0.28),
    0 0 0 8px rgba(184, 50, 97, 0.11);
}

.button-primary {
  background: linear-gradient(135deg, #b83261 0%, #8d2048 100%);
  box-shadow: 0 18px 34px rgba(184, 50, 97, 0.2);
}

.button-primary:hover {
  box-shadow: 0 22px 38px rgba(184, 50, 97, 0.25);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(32, 41, 54, 0.12);
}

.hero {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  padding: 54px 0 24px;
}

.hero-copy {
  padding-top: 14px;
}

.hero .eyebrow {
  min-height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(184, 50, 97, 0.11);
  color: var(--navy-deep);
  box-shadow: 0 12px 26px rgba(24, 39, 54, 0.04);
}

.hero h1 {
  max-width: 11.2ch;
  font-size: clamp(3.05rem, 5.8vw, 5.35rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 38ch;
  font-size: 1.16rem;
}

.hero-sublead {
  max-width: 60ch;
  line-height: 1.66;
}

.hero-actions {
  margin-top: 28px;
}

.hero-actions .button-primary {
  min-width: 270px;
}

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

.hero-trust article {
  min-height: 124px;
  padding: 19px 20px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(32, 41, 54, 0.08);
  box-shadow: 0 16px 36px rgba(24, 39, 54, 0.055);
}

.hero-trust span {
  font-size: 1.92rem;
}

.hero-trust p {
  line-height: 1.46;
}

.hero-panel {
  gap: 16px;
}

.panel-card,
.pricing-card,
.scope-card,
.quiz-card,
.result-card,
.faq-grid details,
.booking-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 41, 54, 0.08);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 26px;
  border-radius: 26px;
}

.panel-card h2 {
  font-size: 1.65rem;
}

.glass,
.warm {
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 243, 0.92));
}

.feature-list {
  gap: 11px;
}

.feature-list li {
  line-height: 1.54;
}

.compliance-strip {
  margin-top: 16px;
  padding: 18px 28px 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(32, 41, 54, 0.08);
  box-shadow: 0 16px 42px rgba(24, 39, 54, 0.055);
}

.compliance-lead {
  color: var(--navy-deep);
}

.compliance-divider {
  background: linear-gradient(
    90deg,
    rgba(184, 50, 97, 0.08),
    rgba(184, 50, 97, 0.42),
    rgba(184, 50, 97, 0.08)
  );
}

.compliance-body {
  color: var(--ink-soft);
}

.section {
  padding-top: 72px;
}

.offer {
  padding-top: 48px;
}

#process,
#qualification {
  padding-top: 52px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3.35vw, 3.2rem);
  line-height: 1;
}

.offer-heading h2 {
  max-width: 980px;
  font-size: clamp(2.1rem, 3.35vw, 3.25rem);
}

.offer-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.offer .pricing-card {
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.68), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 248, 245, 0.94));
  color: var(--ink);
  border-color: rgba(32, 41, 54, 0.08);
  box-shadow: var(--shadow);
}

.offer .pricing-card .label-chip {
  background: #fff0f5;
  color: var(--navy-deep);
  border-color: rgba(184, 50, 97, 0.11);
}

.offer .pricing-card .feature-list li,
.offer .pricing-card .button {
  color: var(--ink);
}

.pricing-card .price-top h3,
.price,
.offer .price {
  color: var(--navy-deep);
}

.offer .price {
  font-size: clamp(2.7rem, 4.1vw, 3.45rem);
}

.offer .price-note,
.price-note {
  color: var(--ink-soft);
}

.offer .pricing-card .button-primary {
  background: linear-gradient(135deg, #b83261 0%, #8d2048 100%);
  color: #fff;
  border-color: rgba(184, 50, 97, 0.25);
  box-shadow: 0 16px 30px rgba(184, 50, 97, 0.2);
}

.scope-card {
  background:
    radial-gradient(circle at top right, rgba(223, 238, 230, 0.74), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  box-shadow: var(--shadow);
}

.scope-note {
  background: rgba(184, 50, 97, 0.055);
}

.timeline {
  gap: 14px;
}

.timeline article {
  min-height: 215px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(32, 41, 54, 0.08);
  box-shadow: 0 16px 38px rgba(24, 39, 54, 0.055);
}

.timeline span {
  width: 42px;
  height: 42px;
  background: #fff0f5;
  color: #b83261;
}

.timeline h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.situation-hub {
  padding-top: 54px;
}

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

.situation-card,
.situation-card-featured,
.situation-card-dark {
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.52), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 244, 0.92));
  color: var(--ink);
  border-color: rgba(32, 41, 54, 0.08);
  box-shadow: 0 16px 38px rgba(24, 39, 54, 0.055);
}

.situation-card h3,
.situation-card-dark h3 {
  color: var(--navy-deep);
  font-size: 1.42rem;
  line-height: 1;
}

.situation-link-list {
  gap: 8px;
}

.situation-link-list a,
.situation-card-dark .situation-link-list a {
  min-height: 43px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(32, 41, 54, 0.08);
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.proof {
  padding-top: 60px;
}

.proof-block {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 14px;
  padding: 0;
  background: transparent;
}

.proof-copy-card {
  gap: 12px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.6), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  color: var(--ink);
  border: 1px solid rgba(32, 41, 54, 0.08);
  box-shadow: var(--shadow);
}

.proof-copy-card .eyebrow {
  color: #b83261;
}

.proof-copy-card .proof-intro,
.proof-copy-card li {
  color: var(--ink-soft);
}

.proof-copy-card h2,
.proof-list strong {
  color: var(--navy-deep);
}

.proof-copy-card h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
}

.proof-list li {
  font-size: 0.92rem;
}

.proof-image-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.qualification-grid {
  gap: 18px;
}

.quiz-card,
.result-card {
  padding: 24px;
}

.quiz-card select,
.result-inline-form input[type="text"],
.result-inline-form input[type="tel"],
.result-inline-form select,
.callback-slot-field select,
.call-form input,
.call-form select {
  border-color: rgba(32, 41, 54, 0.14);
  background: #fff;
}

.result-card {
  background:
    radial-gradient(circle at top right, rgba(223, 238, 230, 0.64), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
}

.booking-card {
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  color: var(--ink);
}

.booking-card .eyebrow {
  color: #b83261;
}

.booking-card h2,
.booking-card p {
  color: var(--navy-deep);
}

.call-form {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(32, 41, 54, 0.08);
}

.faq-grid {
  gap: 10px;
}

.faq-grid details {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(24, 39, 54, 0.045);
}

.site-footer {
  padding-top: 34px;
}

@media (max-width: 1100px) {
  .hero {
    gap: 24px;
    padding-top: 34px;
  }

  .proof-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 4.6rem);
  }

  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(2.05rem, 8vw, 3rem);
  }
}

@media (max-width: 640px) {
  .site-header .button-ghost {
    min-height: 52px;
  }

  .hero {
    padding-top: 24px;
  }

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

  .hero-lead {
    font-size: 1rem;
  }

  .hero-sublead {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

  .hero-trust {
    margin-top: 24px;
  }

  .section {
    padding-top: 46px;
  }

  .offer,
  #process,
  #qualification,
  .proof,
  .situation-hub {
    padding-top: 34px;
  }

  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
  }

  .panel-card,
  .pricing-card,
  .scope-card,
  .quiz-card,
  .result-card,
  .booking-card,
  .situation-card {
    border-radius: 22px;
  }

  .proof-copy-card h2 {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }
}

@media (max-width: 420px) {
  .hero h1,
  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(1.85rem, 11vw, 2.45rem);
  }

  .hero .eyebrow {
    font-size: 0.68rem;
  }
}

/* V3 - garde responsive finale.
   Toutes les corrections ci-dessous sont limitees au mobile/tablette pour ne pas toucher au desktop. */
@media (max-width: 1180px) {
  .hero,
  .offer-grid,
  .qualification-grid,
  .booking-card,
  .booking-layout,
  .proof-block,
  .seo-hero,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .hero > *,
  .offer-grid > *,
  .qualification-grid > *,
  .booking-layout > *,
  .proof-block > *,
  .seo-hero > *,
  .seo-content-grid > * {
    min-width: 0;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    max-width: 12.5ch;
  }

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

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

  .situation-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .proof-block {
    gap: 18px;
  }

  .result-card,
  .seo-cta-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
  }

  .hero-panel,
  .hero-trust,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .offer-heading h2,
  .booking-card h2,
  .seo-hero-copy h1,
  .legal-page h1 {
    max-width: 100%;
    text-wrap: balance;
  }

  .section {
    padding-top: 58px;
  }

  .offer,
  .situation-hub,
  .proof,
  #process,
  #qualification {
    padding-top: 44px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  .section,
  .hero,
  .site-footer,
  .compliance-strip,
  .legal-page,
  .seo-page {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .brand-copy span {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .site-header .button-ghost {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 0;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    text-align: center;
    border: 1px solid rgba(32, 41, 54, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
  }

  .hero {
    gap: 18px;
    padding: 22px 0 18px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero .eyebrow {
    width: 100%;
    min-height: 0;
    padding: 9px 13px;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.09em;
    white-space: normal;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11.5vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: none;
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-sublead {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button,
  .booking-actions .button,
  .call-form .button,
  .seo-actions .button,
  .seo-inline-cta .button {
    width: 100%;
    min-width: 0;
  }

  .hero-trust {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-trust article {
    min-height: 0;
    padding: 16px;
  }

  .hero-trust span {
    margin-bottom: 6px;
    font-size: 1.55rem;
  }

  .hero-trust p,
  .hero-trust-source {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .panel-card,
  .pricing-card,
  .scope-card,
  .quiz-card,
  .result-card,
  .booking-card,
  .situation-card,
  .seo-hero-copy,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-card {
    padding: 18px;
    border-radius: 22px;
  }

  .panel-card h2 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .feature-list {
    gap: 9px;
  }

  .feature-list li,
  .scope-note,
  .timeline p,
  .proof-intro,
  .proof-image-card figcaption,
  .result-copy,
  .faq-grid p,
  .call-form-note,
  .seo-page p,
  .seo-page li,
  .legal-page p,
  .legal-page li {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .compliance-strip {
    margin-top: 10px;
    padding: 14px 16px 16px;
    border-radius: 22px;
  }

  .compliance-lead {
    font-size: 1.28rem;
  }

  .compliance-divider {
    width: 56px;
  }

  .section {
    padding-top: 46px;
  }

  .offer,
  .situation-hub,
  .proof,
  #process,
  #qualification {
    padding-top: 34px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(1.95rem, 9.8vw, 2.55rem);
    line-height: 1.02;
  }

  .section-heading p,
  .situation-heading p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .offer-grid,
  .qualification-grid,
  .timeline,
  .proof-block,
  .faq-grid,
  .seo-content-grid {
    gap: 14px;
  }

  .offer .pricing-card,
  .scope-card {
    gap: 16px;
  }

  .offer .price,
  .price {
    font-size: clamp(2.2rem, 12vw, 2.8rem);
  }

  .timeline article {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .timeline h3,
  .situation-card h3 {
    font-size: 1.22rem;
    line-height: 1.05;
  }

  .situation-link-list {
    gap: 8px;
  }

  .situation-link-list a {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .proof-copy-card,
  .proof-image-card {
    padding: 16px;
    border-radius: 20px;
  }

  .proof-copy-card h2 {
    font-size: clamp(1.65rem, 8.8vw, 2.18rem);
    line-height: 1.04;
  }

  .proof-image-card img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .quiz-card,
  .result-card {
    gap: 13px;
  }

  .quiz-card label,
  .result-inline-form label,
  .result-form-fieldset,
  .callback-slot-field,
  .call-form label {
    gap: 6px;
  }

  .quiz-card select,
  .result-inline-form input[type="text"],
  .result-inline-form input[type="tel"],
  .result-inline-form select,
  .callback-slot-field select,
  .call-form input,
  .call-form select {
    min-height: 50px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .result-card h3 {
    font-size: 1.55rem;
    line-height: 1.05;
  }

  .result-availability,
  .call-form {
    grid-template-columns: 1fr;
  }

  .result-availability label {
    min-height: 48px;
    padding: 11px 14px;
  }

  .call-form {
    gap: 13px;
    padding: 16px;
    border-radius: 18px;
  }

  .call-form-full,
  .call-form .button,
  .call-form-note,
  .call-form-status {
    grid-column: auto;
  }

  .faq-grid details {
    padding: 15px 17px;
  }

  .faq-grid summary {
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .legal-page {
    padding: 30px 0 52px;
  }

  .legal-page h1,
  .seo-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .legal-page h2,
  .seo-section h2,
  .seo-cta-card h2 {
    font-size: 1.45rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .seo-actions {
    flex-direction: column;
  }

  .site-footer {
    gap: 16px;
    padding: 30px 0 42px;
  }

  .footer-sitemap,
  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 12px 18px;
    text-align: center;
  }

  .footer-links a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-sitemap a,
  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.35;
  }
}

@media (max-width: 430px) {
  .site-header,
  .section,
  .hero,
  .site-footer,
  .compliance-strip,
  .legal-page,
  .seo-page {
    width: min(calc(100% - 16px), var(--content-width));
  }

  .hero h1 {
    font-size: clamp(2.12rem, 10.8vw, 2.75rem);
  }

  .section-heading h2,
  .offer-heading h2,
  .booking-card h2 {
    font-size: clamp(1.72rem, 9.2vw, 2.25rem);
  }

  .panel-card,
  .pricing-card,
  .scope-card,
  .quiz-card,
  .result-card,
  .booking-card,
  .situation-card,
  .proof-copy-card,
  .proof-image-card,
  .call-form,
  .seo-hero-copy,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-card {
    padding: 16px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .nav a {
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .brand-copy span {
    display: block;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.5rem);
  }

  .hero .eyebrow {
    font-size: 0.62rem;
  }
}


/* V3 publication refinements */
.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero h1,
.hero-lead,
.hero-sublead,
.hero-trust-source,
.section-heading,
.section-heading h2,
.section-heading p,
.booking-copy,
.booking-card h2,
.booking-card p,
.seo-hero-copy h1,
.seo-lead,
.seo-page p,
.legal-page p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions,
.seo-actions {
  justify-content: center;
}

.hero-quick-form {
  width: min(100%, 860px);
  margin: 28px auto 0;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 1.05fr) minmax(170px, 0.85fr) auto;
  gap: 12px;
  align-items: start;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.96));
  border: 1px solid rgba(29, 59, 83, 0.12);
  box-shadow:
    0 24px 54px rgba(29, 59, 83, 0.13),
    0 0 0 7px rgba(240, 199, 161, 0.14);
}

.hero-quick-form label {
  display: grid;
  gap: 7px;
  text-align: left;
}

.hero-quick-form label span {
  color: var(--navy-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-quick-form input,
.hero-quick-form select {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(29, 59, 83, 0.18);
  background: #fff;
  color: var(--ink);
}

.hero-quick-form .button {
  min-height: 52px;
  padding-inline: 24px;
  white-space: nowrap;
  align-self: end;
}

.hero-quick-form .call-form-status {
  grid-column: 1 / -1;
  min-height: 1.35em;
  margin: -2px 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.hero-trust article,
.panel-card,
.pricing-card,
.scope-card,
.timeline article,
.situation-card,
.proof-copy-card,
.result-card,
.booking-card,
.faq-grid details,
.seo-hero-copy,
.seo-side-card,
.seo-content-card,
.seo-cta-card,
.legal-page {
  text-align: center;
}

.hero-trust article {
  align-items: center;
}

.hero-trust p,
.booking-copy,
.seo-hero-copy,
.seo-side-card,
.seo-content-card,
.seo-cta-card {
  max-width: none;
}

.feature-list,
.seo-checklist,
.booking-points {
  justify-items: center;
}

.feature-list li,
.seo-checklist li,
.booking-points li {
  padding-left: 0;
  text-align: center;
}

.feature-list li::before,
.seo-checklist li::before,
.booking-points li::before {
  position: static;
  display: block;
  margin: 0 auto 8px;
}

.situation-link-list a {
  justify-content: center;
  text-align: center;
}

.situation-link-list a::after {
  margin-left: 4px;
}

.proof-image-card figcaption,
.scope-note,
.price-note,
.result-copy,
.faq-grid p,
.seo-note,
.seo-faq p {
  text-align: center;
}

.quiz-card label,
.result-inline-form label,
.result-form-fieldset,
.result-availability label,
.call-form label,
.hero-quick-form label {
  text-align: left;
}

@media (max-width: 980px) {
  .hero-quick-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-quick-form .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-quick-form {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    padding: 14px;
    border-radius: 22px;
  }

  .hero-quick-form .button {
    min-height: 56px;
  }

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

  .hero-trust article,
  .panel-card,
  .pricing-card,
  .scope-card,
  .timeline article,
  .situation-card,
  .proof-copy-card,
  .result-card,
  .booking-card,
  .faq-grid details,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-card {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero-quick-form {
    margin-top: 22px;
    padding: 12px;
    box-shadow:
      0 18px 36px rgba(29, 59, 83, 0.12),
      0 0 0 5px rgba(240, 199, 161, 0.12);
  }

  .hero-quick-form input,
  .hero-quick-form .button {
    min-height: 54px;
  }
}

/* Editorial FAQ accordion */
.faq .section-heading {
  width: min(100%, 1240px);
  max-width: none;
  margin-inline: auto;
  align-items: center;
  text-align: center;
}

.faq .section-heading h2,
.faq .section-heading p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq #faq-title {
  max-width: min(100%, 900px);
  font-size: clamp(2.35rem, 3.15vw, 2.95rem);
  line-height: 1.04;
}

.faq-grid {
  display: block;
  width: min(100%, 1040px);
  margin: 34px auto 0;
  border-top: 2px solid rgba(29, 34, 46, 0.9);
}

.faq-grid details {
  padding: 0;
  border: 0;
  border-bottom: 2px solid rgba(29, 34, 46, 0.9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.faq-grid summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 22px 0;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: clamp(1.08rem, 1.18vw, 1.28rem);
  font-weight: 710;
  line-height: 1.3;
  letter-spacing: -0.012em;
  text-align: left;
}

.faq-grid summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(29, 34, 46, 0.62);
  border-bottom: 2px solid rgba(29, 34, 46, 0.62);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(225deg);
}

.faq-grid summary:hover::after,
.faq-grid details[open] summary::after {
  border-color: var(--navy);
}

.faq-grid p {
  max-width: 780px;
  margin: -8px 0 30px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  text-align: left;
}

@media (max-width: 760px) {
  .faq {
    padding-top: 58px;
  }

  .faq .section-heading {
    width: min(100%, 92vw);
  }

  .faq .section-heading h2 {
    font-size: clamp(1.78rem, 6vw, 2.12rem);
    line-height: 1.08;
  }

  .faq #faq-title {
    max-width: min(100%, 92vw);
  }

  .faq-grid {
    width: min(100%, 92vw);
    margin-top: 26px;
    border-top-width: 1.5px;
  }

  .faq-grid details {
    border-bottom-width: 1.5px;
  }

  .faq-grid summary {
    grid-template-columns: minmax(0, 1fr) 16px;
    min-height: 76px;
    padding: 19px 0;
    gap: 16px;
    font-size: clamp(1.06rem, 4.35vw, 1.26rem);
    line-height: 1.28;
    font-weight: 690;
  }

  .faq-grid summary::after {
    width: 9px;
    height: 9px;
  }

  .faq-grid p {
    margin: -4px 0 24px;
    font-size: 1rem;
    line-height: 1.62;
  }
}

@media (max-width: 430px) {
  .faq #faq-title {
    font-size: clamp(1.58rem, 6.1vw, 1.84rem);
    line-height: 1.08;
  }

  .faq-grid summary {
    min-height: 70px;
    padding: 17px 0;
    font-size: clamp(1.02rem, 4.35vw, 1.18rem);
  }
}

/* Wide qualification heading */
.qualification .section-heading {
  width: min(100%, 1240px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.qualification #qualification-title {
  max-width: min(100%, 1120px);
  margin-inline: auto;
  font-size: clamp(3.2rem, 5.25vw, 5.25rem);
  line-height: 0.95;
  text-align: center;
}

@media (max-width: 760px) {
  .qualification #qualification-title {
    max-width: min(100%, 92vw);
    font-size: clamp(1.9rem, 7.2vw, 2.65rem);
    line-height: 1.04;
  }
}

@media (max-width: 430px) {
  .qualification #qualification-title {
    font-size: clamp(1.72rem, 7vw, 2.12rem);
    line-height: 1.06;
  }
}

/* Wide process heading */
#process .section-heading {
  width: min(100%, 1240px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

#process #process-title {
  max-width: min(100%, 1120px);
  margin-inline: auto;
  font-size: clamp(3.2rem, 5.25vw, 5.25rem);
  line-height: 0.95;
  text-align: center;
}

@media (max-width: 760px) {
  #process #process-title {
    max-width: min(100%, 96vw);
    font-size: clamp(1.18rem, 4.85vw, 2.35rem);
    line-height: 1;
  }
}

@media (max-width: 430px) {
  #process #process-title {
    font-size: clamp(1.16rem, 4.85vw, 1.32rem);
    line-height: 1.04;
  }
}

/* Center hero statistics across the page without changing card sizing */
.hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.hero-copy {
  width: 100%;
  max-width: none;
  padding-right: 0;
}

.hero h1 {
  max-width: 13.4ch;
}

.hero-lead {
  max-width: 44ch;
}

.hero-sublead {
  max-width: 74ch;
}

.hero-panel {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  padding-top: 0;
}

.hero-stats {
  width: 100%;
  max-width: var(--content-width);
  justify-self: center;
  display: grid;
  justify-items: center;
  margin-top: 0;
}

.hero-stats .hero-trust {
  width: 100%;
  margin: 0 auto;
}

.hero-stats .hero-trust-source {
  width: min(100%, 1040px);
}

@media (max-width: 1180px) {
  .hero h1 {
    max-width: 12.5ch;
  }
}

@media (max-width: 900px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-stats {
    max-width: 100%;
    margin-top: 0;
  }
}

/* Proof case study: two wide editorial blocks on desktop */
.proof-block {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 0;
  background: transparent;
}

.proof-copy-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  grid-template-areas:
    "eyebrow kicker"
    "title quote"
    "list list";
  gap: 18px 34px;
  align-items: start;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 32px;
}

.proof-copy-card .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
  font-size: 0.78rem;
}

.proof-copy-card h2 {
  grid-area: title;
  max-width: 12.5ch;
  font-size: clamp(2.35rem, 3.45vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-kicker {
  grid-area: kicker;
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}

.proof-quote {
  grid-area: quote;
  margin: 0;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 41, 54, 0.08);
}

.proof-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  font-weight: 650;
  line-height: 1.48;
}

.proof-quote footer {
  margin-top: 12px;
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

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

.proof-list li {
  min-height: 100%;
  padding: 18px 20px 18px 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 41, 54, 0.08);
  font-size: 1rem;
  line-height: 1.52;
}

.proof-list strong {
  margin-bottom: 6px;
  font-weight: 850;
}

.proof-list li::before {
  top: 27px;
  left: 16px;
}

.proof-image-card {
  padding: clamp(16px, 1.5vw, 22px);
  border-radius: 32px;
}

.proof-picture-full,
.proof-split-picture {
  display: block;
}

.proof-mobile-split {
  display: none;
}

.proof-image-card figcaption {
  color: var(--navy-deep);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.38;
}

@media (max-width: 640px) {
  .proof-copy-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "kicker"
      "quote"
      "list";
    gap: 12px;
    padding: 18px 16px;
  }

  .proof-copy-card h2 {
    max-width: none;
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.06;
  }

  .proof-kicker {
    font-size: 0.98rem;
  }

  .proof-quote {
    padding: 13px;
  }

  .proof-quote p,
  .proof-quote footer,
  .proof-list li {
    font-size: 0.92rem;
  }

  .proof-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-list li {
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .proof-list li::before {
    top: 0.56em;
    left: 0;
  }

  .proof-picture-full {
    display: none;
  }

  .proof-mobile-split {
    display: grid;
    gap: 12px;
  }

  .proof-split-frame {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(34, 50, 71, 0.08);
    background: #fff;
    box-shadow: 0 18px 40px rgba(29, 59, 83, 0.12);
  }

  .proof-image-card .proof-split-image {
    display: block;
    width: 200%;
    max-width: none;
    height: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .proof-image-card .proof-split-before .proof-split-image {
    transform: translateX(0);
  }

  .proof-image-card .proof-split-after .proof-split-image {
    transform: translateX(-50%);
  }

  .proof-image-card figcaption {
    font-size: 0.95rem;
  }
}

/* V3 design charter: final shared rhythm, type scale and form language */
:root {
  --title-primary: #122337;
  --title-secondary: #1d3b53;
  --accent-blue: #b83261;
  --accent-blue-soft: rgba(184, 50, 97, 0.12);
  --card-border: rgba(32, 41, 54, 0.1);
  --field-border: rgba(32, 41, 54, 0.16);
}

.eyebrow,
.panel-label,
.result-kicker,
.label-chip {
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.hero h1,
.section-heading h2,
.booking-card h2,
.seo-hero-copy h1,
.legal-page h1 {
  color: var(--title-primary);
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading h2,
.offer-heading h2,
#process #process-title,
.qualification #qualification-title,
.faq #faq-title {
  max-width: 960px;
  font-size: 3.15rem;
  line-height: 1.02;
}

.faq #faq-title {
  max-width: 900px;
  font-size: clamp(2.35rem, 3.15vw, 2.95rem);
  line-height: 1.04;
}

.panel-card h2,
.pricing-card h3,
.scope-card h3,
.timeline h3,
.situation-card h3,
.result-card h3,
.seo-side-card h2,
.seo-section h2,
.seo-section h3,
.seo-cta-card h2,
.legal-page h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.panel-card h2,
.timeline h3,
.situation-card h3,
.result-card h3,
.scope-card h3 {
  color: var(--title-primary);
}

.hero {
  gap: 24px;
  padding-top: 24px;
}

.hero .eyebrow {
  min-height: 40px;
  margin-bottom: 10px;
  padding: 8px 16px;
}

.hero h1 {
  max-width: 22ch;
  font-size: 3.75rem;
  line-height: 0.95;
}

.hero-lead {
  max-width: 50ch;
  margin-top: 14px;
  color: var(--title-primary);
  font-size: 1.1rem;
  line-height: 1.42;
  font-weight: 500;
}

.hero-sublead {
  max-width: 76ch;
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-quick-form {
  width: min(100%, 940px);
  margin-top: 18px;
  padding: 14px;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 1.05fr) minmax(170px, 0.85fr) auto;
  border-radius: 22px;
}

.hero-quick-form .button {
  align-self: start;
  margin-top: calc((0.9rem * 1.32) + 7px);
}

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

.hero-panel {
  gap: 16px;
}

.panel-card,
.pricing-card,
.scope-card,
.quiz-card,
.result-card,
.booking-card,
.situation-card,
.proof-copy-card,
.proof-image-card,
.seo-hero-copy,
.seo-side-card,
.seo-content-card,
.seo-cta-card,
.legal-page {
  border-color: var(--card-border);
}

.hero-quick-form label span,
.hero-quick-form .phone-field > label span,
.callback-slot-field > span,
.quiz-card span,
.result-inline-form > label > span,
.result-inline-form .phone-field > label span,
.result-form-fieldset legend,
.call-form span {
  color: var(--title-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.32;
}

.hero-quick-form input,
.hero-quick-form select,
.phone-control input,
.phone-control select,
.quiz-card select,
.result-inline-form input[type="text"],
.result-inline-form input[type="tel"],
.result-inline-form select,
.call-form input,
.call-form select {
  min-height: 50px;
  border-color: var(--field-border);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.phone-field {
  display: grid;
  gap: 7px;
  text-align: left;
}

.phone-field > label {
  display: block;
}

.phone-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.phone-control input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--field-border);
  border-radius: 16px;
  background-color: #fff;
}

.phone-control input::placeholder {
  color: rgba(80, 97, 114, 0.58);
}

.hero-quick-form input::placeholder,
.result-inline-form input::placeholder,
.call-form input::placeholder {
  color: rgba(80, 97, 114, 0.58);
}

.phone-control input[aria-invalid="true"] {
  border-color: rgba(168, 50, 62, 0.58);
  box-shadow: 0 0 0 4px rgba(168, 50, 62, 0.09);
}

.callback-slot-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  text-align: left;
}

.callback-slot-field select {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--field-border);
  border-radius: 16px;
  appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(29, 59, 83, 0.72) 50%),
    linear-gradient(135deg, rgba(29, 59, 83, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
}

.callback-slot-field select[aria-invalid="true"] {
  border-color: rgba(168, 50, 62, 0.58);
  box-shadow: 0 0 0 4px rgba(168, 50, 62, 0.09);
}

.call-form .callback-slot-field {
  grid-column: 1 / -1;
}

.field-error,
.form-error {
  min-height: 1.2em;
  color: #a8323e;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.progressive-lead-form {
  position: relative;
  overflow: visible;
  transition:
    box-shadow 0.3s ease;
}

.progressive-lead-form > :not(.progressive-email-step):not(.progressive-final-state) {
  transition:
    opacity 0.28s ease,
    filter 0.28s ease,
    transform 0.28s ease;
}

.progressive-lead-form.is-progressive-step-visible {
  min-height: 0;
}

.call-form.progressive-lead-form.is-progressive-step-visible {
  min-height: 0;
}

.result-inline-form.progressive-lead-form.is-progressive-step-visible {
  min-height: 0;
}

.progressive-lead-form.is-progressive-step-visible
  > :not(.progressive-email-step):not(.progressive-final-state),
.progressive-lead-form.is-progressive-complete
  > :not(.progressive-email-step):not(.progressive-final-state) {
  display: none !important;
}

.progressive-email-step,
.progressive-final-state {
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(29, 59, 83, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 12%, rgba(176, 47, 104, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.98));
  box-shadow: 0 22px 48px rgba(29, 59, 83, 0.16);
}

.progressive-email-step[hidden],
.progressive-final-state[hidden] {
  display: none;
}

.progressive-email-step:not([hidden]) {
  animation: progressivePanelReveal 0.52s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.progressive-final-state:not([hidden]) {
  align-content: center;
  justify-items: center;
  color: var(--navy-deep);
  font-size: clamp(1.15rem, 2.8vw, 1.42rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  animation: progressiveFinalReveal 0.5s ease both;
}

.progressive-email-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.progressive-email-step h3 {
  max-width: 36rem;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.02;
}

.progressive-email-field {
  display: grid;
  gap: 8px;
  max-width: 34rem;
}

.progressive-email-field span:first-child {
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.progressive-email-field input {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--field-border);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.progressive-email-field input[aria-invalid="true"] {
  border-color: rgba(168, 50, 62, 0.58);
  box-shadow: 0 0 0 4px rgba(168, 50, 62, 0.09);
}

.progressive-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.progressive-email-actions .button {
  width: auto;
  min-height: 52px;
  margin: 0;
  overflow: visible;
  line-height: 1.18;
  white-space: normal;
}

@keyframes progressivePanelReveal {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

@keyframes progressiveFinalReveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

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

@media (prefers-reduced-motion: reduce) {
  .progressive-email-step:not([hidden]),
  .progressive-final-state:not([hidden]) {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-quick-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-quick-form .phone-field,
  .hero-quick-form .button,
  .hero-quick-form .call-form-status {
    grid-column: 1 / -1;
  }

  .hero-quick-form .button {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .hero-quick-form {
    grid-template-columns: 1fr;
  }

  .progressive-lead-form.is-progressive-step-visible,
  .call-form.progressive-lead-form.is-progressive-step-visible,
  .result-inline-form.progressive-lead-form.is-progressive-step-visible {
    min-height: 0;
  }

  .progressive-email-step,
  .progressive-final-state {
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
  }

  .progressive-email-step h3 {
    font-size: clamp(1.25rem, 7vw, 1.65rem);
    line-height: 1.08;
  }

  .progressive-email-actions {
    display: grid;
  }

  .progressive-email-actions .button {
    width: 100%;
  }
}

.result-availability label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
}

.booking-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  color: var(--ink);
}

.booking-card .eyebrow {
  color: var(--accent-blue);
}

.booking-card h2,
.booking-card p {
  color: var(--title-primary);
}

.booking-card h2 {
  font-size: 2.65rem;
  line-height: 1.03;
}

.seo-page,
.legal-page {
  color: var(--ink);
}

.seo-hero {
  gap: 18px;
  padding-top: 36px;
}

.seo-hero-copy h1 {
  max-width: 12.8ch;
  font-size: 4.2rem;
  line-height: 0.98;
}

.seo-lead {
  color: var(--title-primary);
  font-size: 1.08rem;
  font-weight: 700;
}

.seo-content-card,
.seo-content-card p,
.seo-content-card li,
.seo-section h2,
.seo-section h3,
.seo-checklist li,
.seo-faq p,
.seo-faq summary,
.legal-page,
.legal-page p,
.legal-page li,
.legal-page h2 {
  text-align: left;
}

.seo-section h2 {
  color: var(--title-primary);
  font-size: 1.78rem;
  line-height: 1.12;
}

.seo-section h3,
.legal-page h2 {
  color: var(--title-secondary);
  font-size: 1.28rem;
  line-height: 1.2;
}

.seo-cta-card h2,
.seo-side-card h2 {
  font-size: 1.8rem;
  line-height: 1.08;
}

.seo-inline-cta {
  align-items: center;
}

.legal-page {
  max-width: 920px;
}

.legal-page h1 {
  margin-top: 28px;
  font-size: 3.4rem;
  line-height: 1;
  text-align: left;
}

.legal-page h2 {
  margin-top: 30px;
}

@media (max-width: 1180px) {
  .hero h1 {
    max-width: 19.5ch;
    font-size: 3.1rem;
  }

  .section-heading h2,
  .offer-heading h2,
  #process #process-title,
  .qualification #qualification-title,
  .faq #faq-title {
    font-size: 2.75rem;
  }

  .faq #faq-title {
    font-size: 2.42rem;
  }

  .seo-hero-copy h1 {
    max-width: 14ch;
    font-size: 3.4rem;
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 16px;
    padding-top: 18px;
  }

  .hero .eyebrow {
    justify-content: center;
    min-height: 0;
    margin-bottom: 8px;
    padding: 8px 12px;
    font-size: 0.66rem;
  }

  .hero h1 {
    max-width: 15.8ch;
    font-size: 2.32rem;
    line-height: 0.96;
  }

  .hero-lead {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.34;
  }

  .hero-sublead {
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-quick-form {
    margin-top: 14px;
    gap: 11px;
    padding: 13px;
  }

  .hero-quick-form input,
  .hero-quick-form select,
  .phone-control input,
  .phone-control select,
  .hero-quick-form .button,
  .quiz-card select,
  .result-inline-form input[type="text"],
  .result-inline-form input[type="tel"],
  .result-inline-form select,
  .call-form input,
  .call-form select {
    min-height: 48px;
  }

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

  .proof-image-card {
    order: 1;
  }

  .proof-copy-card {
    order: 2;
  }

  .section-heading h2,
  .offer-heading h2,
  #process #process-title,
  .qualification #qualification-title,
  .faq #faq-title {
    max-width: 100%;
    font-size: 2.15rem;
    line-height: 1.06;
  }

  .faq #faq-title {
    max-width: min(100%, 92vw);
    font-size: clamp(1.78rem, 6vw, 2.12rem);
    line-height: 1.08;
  }

  .booking-card h2 {
    font-size: 2rem;
  }

  .seo-hero {
    gap: 14px;
    padding-top: 24px;
  }

  .seo-hero-copy h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1;
  }

  .seo-side-card h2,
  .seo-cta-card h2,
  .seo-section h2 {
    font-size: 1.55rem;
  }

  .legal-page h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: 15.2ch;
    font-size: 2.08rem;
  }

  .section-heading h2,
  .offer-heading h2,
  #process #process-title,
  .qualification #qualification-title,
  .faq #faq-title {
    font-size: 1.92rem;
  }

  .faq #faq-title {
    font-size: clamp(1.58rem, 6.1vw, 1.84rem);
  }

  .hero-quick-form label span,
  .hero-quick-form .phone-field > label span,
  .quiz-card span,
  .result-inline-form > label > span,
  .result-inline-form .phone-field > label span,
  .result-form-fieldset legend,
  .call-form span {
    font-size: 0.86rem;
  }
}

/* SEO pages: align with the home visual charter */
.seo-page {
  width: min(calc(100% - 32px), 1160px);
  padding-top: 32px;
}

.seo-hero,
.seo-content-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.seo-hero-copy,
.seo-side-card,
.seo-content-card,
.seo-cta-card {
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.56), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.seo-hero-copy {
  justify-items: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
}

.seo-hero-copy h1 {
  max-width: 17ch;
  margin-inline: auto;
  color: var(--title-primary);
  font-size: clamp(2.65rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
}

.seo-lead,
.seo-hero-copy > p:not(.eyebrow):not(.seo-lead) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--ink-soft);
  text-align: center;
}

.seo-lead {
  color: var(--title-primary);
  font-weight: 750;
}

.seo-quick-form {
  margin-top: 12px;
}

.seo-actions {
  justify-content: center;
  margin-top: 0;
}

.seo-side-card {
  justify-items: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  text-align: center;
}

.seo-side-card h2,
.seo-side-card p,
.seo-side-card li {
  color: var(--title-primary);
}

.seo-side-card h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.seo-side-card .feature-list {
  width: min(100%, 860px);
}

.seo-side-card .feature-list li {
  color: var(--ink-soft);
}

.seo-content-grid {
  margin-top: 18px;
}

.seo-content-card,
.seo-cta-card {
  padding: clamp(22px, 3vw, 34px);
}

.seo-content-card {
  gap: 30px;
}

.seo-section {
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
}

.seo-section h2,
.seo-section h3,
.seo-cta-card h2 {
  color: var(--title-primary);
  letter-spacing: 0;
}

.seo-section h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  line-height: 1.08;
}

.seo-section h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

.seo-inline-cta {
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.5), transparent 30%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 34px rgba(24, 39, 54, 0.045);
}

.seo-inline-cta p {
  color: var(--title-primary);
}

.seo-cta-card {
  position: static;
  top: auto;
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.seo-cta-card h2 {
  max-width: 680px;
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  line-height: 1.04;
}

.seo-cta-card p {
  max-width: 720px;
}

.seo-note {
  background: rgba(184, 50, 97, 0.055);
  color: var(--title-primary);
}

.seo-section:has(.seo-faq) {
  max-width: 1040px;
  margin-top: 6px;
}

.seo-section:has(.seo-faq) h2 {
  margin-inline: auto;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.05;
  text-align: center;
}

.seo-faq {
  display: block;
  width: 100%;
  margin-top: 26px;
  border-top: 2px solid rgba(29, 34, 46, 0.9);
}

.seo-faq details {
  padding: 0;
  border: 0;
  border-bottom: 2px solid rgba(29, 34, 46, 0.9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.seo-faq summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 22px 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.18vw, 1.28rem);
  font-weight: 710;
  line-height: 1.3;
  letter-spacing: -0.012em;
  text-align: left;
}

.seo-faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(29, 34, 46, 0.62);
  border-bottom: 2px solid rgba(29, 34, 46, 0.62);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.seo-faq details[open] summary::after {
  transform: rotate(225deg);
}

.seo-faq summary:hover::after,
.seo-faq details[open] summary::after {
  border-color: var(--navy);
}

.seo-faq p {
  max-width: 780px;
  margin: -8px 0 30px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  text-align: left;
}

@media (max-width: 760px) {
  .seo-page {
    width: min(calc(100% - 18px), 1160px);
    padding-top: 22px;
  }

  .seo-hero-copy,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-card {
    padding: 18px;
    border-radius: 22px;
  }

  .seo-hero-copy h1 {
    max-width: 15.5ch;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1;
  }

  .seo-quick-form {
    width: 100%;
  }

  .seo-side-card h2,
  .seo-cta-card h2,
  .seo-section h2 {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .seo-inline-cta {
    align-items: stretch;
    padding: 16px;
  }

  .seo-inline-cta .button,
  .seo-actions .button,
  .seo-cta-card .button {
    width: 100%;
  }

  .seo-section:has(.seo-faq) h2 {
    font-size: clamp(1.78rem, 6vw, 2.12rem);
  }

  .seo-faq {
    margin-top: 22px;
    border-top-width: 1.5px;
  }

  .seo-faq details {
    border-bottom-width: 1.5px;
  }

  .seo-faq summary {
    grid-template-columns: minmax(0, 1fr) 16px;
    min-height: 76px;
    padding: 19px 0;
    gap: 16px;
    font-size: clamp(1.06rem, 4.35vw, 1.26rem);
    line-height: 1.28;
    font-weight: 690;
  }

  .seo-faq p {
    margin: -4px 0 24px;
    font-size: 1rem;
    line-height: 1.62;
  }
}

/* Logo selection page */
.logo-selection-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 226, 236, 0.62), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(244, 216, 170, 0.52), transparent 26%),
    linear-gradient(180deg, #fffaf4 0%, #f4efe6 100%);
}

.logo-selection-page {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
  padding: 28px 0 72px;
}

.logo-selection-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(32px, 6vw, 74px) clamp(18px, 4vw, 52px);
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.62), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  box-shadow: var(--shadow);
  text-align: center;
}

.logo-selection-hero .back-link {
  justify-self: start;
}

.logo-selection-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--title-primary);
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 5.4vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.logo-selection-hero > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.logo-concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.logo-concept-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 244, 0.94));
  box-shadow: 0 18px 46px rgba(24, 39, 54, 0.07);
}

.logo-concept-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
  align-items: stretch;
}

.logo-full-mark,
.logo-compact-mark {
  border: 1px solid rgba(32, 41, 54, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.logo-full-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 108px;
  padding: 18px;
  border-radius: 24px;
}

.logo-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
}

.logo-full-mark div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.logo-full-mark strong {
  color: var(--title-primary);
  font-family: var(--body-font);
  font-size: clamp(0.9rem, 1.35vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.logo-full-mark span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.logo-compact-mark {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 14px;
  border-radius: 24px;
}

.logo-compact-mark svg {
  width: 74px;
  height: 74px;
}

.logo-concept-copy {
  position: relative;
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.logo-concept-count {
  margin: 0;
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.logo-concept-copy h2 {
  margin: 0;
  color: var(--title-primary);
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.logo-concept-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.logo-concept-points,
.logo-concept-folder,
.logo-concept-permit-card {
  background:
    radial-gradient(circle at top right, rgba(244, 216, 170, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 244, 0.94));
}

.logo-concept-monogram,
.logo-concept-shield,
.logo-concept-compass {
  background:
    radial-gradient(circle at top right, rgba(220, 233, 221, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 244, 0.94));
}

.logo-concept-passage,
.logo-concept-wheel,
.logo-concept-orbit {
  background:
    radial-gradient(circle at top right, rgba(255, 226, 236, 0.5), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 244, 0.94));
}

@media (max-width: 980px) {
  .logo-concept-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo-selection-page {
    width: min(calc(100% - 18px), 1280px);
    padding-top: 14px;
  }

  .logo-selection-hero {
    border-radius: 24px;
  }

  .logo-selection-hero .back-link {
    justify-self: center;
  }

  .logo-selection-hero h1 {
    font-size: clamp(2.1rem, 10.6vw, 2.85rem);
    line-height: 1;
  }

  .logo-concept-card {
    border-radius: 24px;
  }

  .logo-concept-preview {
    grid-template-columns: 1fr;
  }

  .logo-full-mark {
    align-items: flex-start;
    min-height: 0;
  }

  .logo-compact-mark {
    min-height: 96px;
  }

  .logo-icon {
    width: 58px;
    height: 58px;
  }
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(32, 41, 54, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(19, 38, 58, 0.1);
  color: var(--navy-deep);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.mobile-menu-toggle:hover {
  border-color: rgba(162, 45, 91, 0.28);
  background: rgba(255, 250, 252, 0.96);
  box-shadow: 0 18px 38px rgba(162, 45, 91, 0.16);
  transform: translateY(-1px);
}

.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(162, 45, 91, 0.34);
  outline-offset: 4px;
}

.mobile-menu-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header.is-mobile-menu-open .mobile-menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-mobile-menu-open .mobile-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-menu-open .mobile-menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  :root {
    --sticky-header-offset: 92px;
  }

  .site-header {
    position: sticky;
    top: 8px;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 24px;
  }

  .site-header .brand {
    width: auto;
    min-width: 0;
    align-items: center;
  }

  .site-header > .button-ghost {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    z-index: 60;
    display: grid;
    width: min(100%, 390px);
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(32, 41, 54, 0.12);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(255, 226, 236, 0.5), transparent 38%),
      rgba(255, 253, 248, 0.96);
    box-shadow: 0 28px 70px rgba(19, 38, 58, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    visibility: hidden;
  }

  @supports (backdrop-filter: blur(14px)) {
    .site-header .nav {
      backdrop-filter: blur(14px);
    }
  }

  .site-header.is-mobile-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .site-header .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(32, 41, 54, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--navy-deep);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0;
  }
}

@media (max-width: 430px) {
  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .site-header .nav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-footer {
    position: relative;
    isolation: isolate;
    align-items: flex-start;
    gap: 18px;
    min-height: 520px;
    overflow: hidden;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-mobile-card-art {
    position: absolute;
    right: 8px;
    bottom: 140px;
    z-index: 0;
    display: block;
    width: 144px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(29, 59, 83, 0.14);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 248, 0.78)),
      #fffdf8;
    box-shadow: 0 24px 48px rgba(19, 38, 58, 0.14);
    pointer-events: none;
    transform: rotate(-3.5deg);
  }

  .footer-mobile-card-art::before {
    content: "";
    display: block;
    width: 46px;
    height: 7px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(29, 59, 83, 0.18);
    box-shadow:
      0 16px 0 rgba(162, 45, 91, 0.14),
      0 32px 0 rgba(207, 139, 43, 0.18);
  }

  .footer-mobile-card-art::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 14px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #a22d5b, #cf8b2b);
    box-shadow: 0 12px 22px rgba(162, 45, 91, 0.24);
  }

  .footer-mobile-card-art span {
    display: block;
    color: rgba(29, 59, 83, 0.56);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-mobile-card-art strong {
    display: block;
    margin-top: 4px;
    color: var(--navy-deep);
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .site-footer > *:not(.footer-mobile-card-art) {
    position: relative;
    z-index: 1;
  }

  .footer-sitemap {
    order: 2;
  }

  .footer-links {
    order: 3;
  }

  .footer-sitemap,
  .footer-links {
    width: min(72%, 270px);
    grid-template-columns: 1fr;
    justify-content: start;
    justify-items: start;
    gap: 8px;
    text-align: left;
  }

  .footer-sitemap {
    padding-top: 4px;
  }

  .footer-links {
    padding-top: 8px;
  }

  .footer-links a:last-child {
    grid-column: auto;
    justify-self: start;
  }

  .footer-sitemap a,
  .footer-links a {
    justify-content: flex-start;
    min-height: 36px;
    width: 100%;
    padding: 4px 0;
    text-align: left;
  }

  .footer-disclaimer {
    width: 100%;
  }
}

/* Home hero: keep the V4 promise punchy without turning the first fold into a wall of text. */
.hero h1 {
  max-width: min(100%, 1120px);
  font-size: clamp(2.9rem, 4.05vw, 3.45rem);
  line-height: 1;
}

.hero-title-line {
  display: block;
}

@media (max-width: 1180px) {
  .hero h1 {
    max-width: min(100%, 1010px);
    font-size: clamp(2.55rem, 4vw, 3.05rem);
  }
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: min(100%, 22ch);
    font-size: clamp(1.85rem, 7.65vw, 2.12rem);
    line-height: 1.03;
  }

  .hero-title-line {
    display: inline;
  }

  .hero-title-line::after {
    content: " ";
  }

  .hero-title-line:last-child::after {
    content: "";
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: min(100%, 21ch);
    font-size: clamp(1.72rem, 7.25vw, 1.96rem);
  }
}

/* Desktop conversion pass: sharper rhythm, less centering, clearer value. */
.hero-lead {
  display: grid;
  gap: 10px;
  max-width: 760px;
  font-weight: 430;
  text-align: left;
}

.hero-form-note {
  margin: 12px 0 0;
  color: rgba(80, 97, 114, 0.92);
  font-size: 0.92rem;
  font-weight: 650;
}

.support-card,
.support-card h2,
.support-card p,
.support-card li,
.offer .section-heading,
.offer .pricing-card,
.scope-card,
.timeline article,
.situation-card,
.proof-copy-card,
.qualification .section-heading,
.booking-copy {
  text-align: left;
}

.check-list {
  gap: 10px;
  justify-items: stretch;
}

.check-list li {
  width: 100%;
  padding-left: 28px;
  text-align: left;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0.04em;
  left: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.5;
}

.check-list li::after {
  content: none;
}

.support-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
}

.support-card h2 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.stats-heading {
  width: min(100%, 760px);
  margin: 0 auto 18px;
  text-align: center;
}

.stats-heading h2 {
  margin: 0 0 8px;
  font-family: var(--display-font);
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.stats-heading p {
  margin: 0 auto;
  max-width: 54ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-stats .hero-trust article {
  min-height: 126px;
  padding: 22px 24px;
}

.hero-stats .hero-trust span {
  color: var(--navy-deep);
  font-size: clamp(2.6rem, 4vw, 3.55rem);
}

.hero-stats .hero-trust p {
  max-width: 20ch;
  line-height: 1.42;
}

.reassurance-strip {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  justify-items: stretch;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 50, 97, 0.22), transparent 32%),
    linear-gradient(135deg, #152230 0%, #22364a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fffaf2;
  text-align: left;
}

.reassurance-strip .compliance-lead {
  color: #fffaf2;
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
}

.reassurance-strip .compliance-body {
  max-width: none;
  margin-top: 8px;
  color: rgba(237, 244, 248, 0.82);
}

.reassurance-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reassurance-points li {
  padding: 14px 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf2;
  font-weight: 780;
  line-height: 1.2;
}

.offer {
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 50, 97, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(248, 243, 234, 0.8));
  border: 1px solid rgba(32, 41, 54, 0.08);
}

.offer-heading {
  max-width: 860px;
  margin-inline: 0;
}

.offer-heading .eyebrow {
  color: var(--accent-blue);
}

.offer-heading p:not(.eyebrow) {
  max-width: 62ch;
}

.offer .pricing-card {
  padding: clamp(26px, 3vw, 42px);
}

.offer .pricing-card h3 {
  margin-top: 20px;
}

.offer .price {
  color: var(--navy-deep);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.88;
}

.offer .price-note {
  max-width: 38ch;
}

.price-objective {
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(184, 50, 97, 0.14);
  border-radius: 20px;
  background: rgba(184, 50, 97, 0.08);
  color: var(--navy-deep);
  font-weight: 820;
  line-height: 1.4;
}

.offer .scope-card {
  gap: 18px;
}

.scope-positive,
.scope-secondary {
  padding: clamp(20px, 2vw, 28px);
  border-radius: 24px;
}

.scope-positive {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 41, 54, 0.08);
}

.scope-secondary {
  background: rgba(29, 59, 83, 0.06);
  border: 1px solid rgba(29, 59, 83, 0.08);
}

.scope-secondary p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.process-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
}

.process-section .timeline {
  gap: 14px;
}

.process-section .timeline article {
  min-height: auto;
  padding: 24px 22px;
  border-radius: 24px;
}

.process-section .timeline span {
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.process-section .timeline h3 {
  margin-bottom: 8px;
}

.process-section .timeline p {
  line-height: 1.45;
}

.process-note {
  width: min(100%, 760px);
  margin: 22px auto 0;
  color: var(--navy-deep);
  font-weight: 760;
  line-height: 1.5;
  text-align: center;
}

.situation-card {
  display: flex;
  flex-direction: column;
}

.situation-card-intro {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.situation-card-dark .situation-card-intro {
  color: rgba(255, 255, 255, 0.72);
}

.situation-link-list {
  margin-top: auto;
}

.proof-block {
  gap: 18px;
}

.proof-copy-card {
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1.26fr);
  gap: 18px 28px;
}

.proof-copy-card h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.proof-quote {
  position: relative;
}

.proof-quote::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(184, 50, 97, 0.1);
}

.proof-quote p,
.proof-quote footer {
  position: relative;
}

.proof-image-card {
  gap: 14px;
  margin: 0;
}

.proof-visual-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.proof-cta {
  justify-self: center;
}

.qualification .section-heading p {
  max-width: 56ch;
  margin-inline: auto;
}

.qualification-grid {
  align-items: stretch;
}

.quiz-card,
.result-card {
  padding: clamp(24px, 2.4vw, 34px);
}

.booking-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  align-items: start;
}

.booking-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.booking-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 680;
  line-height: 1.45;
}

.booking-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(184, 50, 97, 0.12);
  box-shadow: inset 0 0 0 4px rgba(184, 50, 97, 0.28);
}

.faq-final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(32, 41, 54, 0.08);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.72);
}

.faq-final-cta p {
  margin: 0;
  color: var(--navy-deep);
  font-weight: 820;
}

.footer-conversion {
  grid-column: 3;
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 10px;
  max-width: 260px;
  text-align: right;
}

.footer-conversion p {
  margin: 0;
  color: var(--navy-deep);
  font-weight: 760;
  line-height: 1.35;
}

.footer-conversion .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .reassurance-strip,
  .booking-layout,
  .proof-copy-card {
    grid-template-columns: 1fr;
  }

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

  .proof-copy-card h2 {
    max-width: none;
  }

  .footer-conversion {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-form-note {
    max-width: 31ch;
    margin-inline: auto;
    text-align: center;
  }

  .support-card,
  .support-card h2,
  .support-card li,
  .offer .section-heading,
  .offer .pricing-card,
  .scope-card,
  .timeline article,
  .situation-card,
  .proof-copy-card,
  .qualification .section-heading,
  .booking-copy {
    text-align: left;
  }

  .stats-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .reassurance-strip {
    padding: 22px 18px;
  }

  .proof-cta,
  .faq-final-cta .button {
    width: 100%;
  }

  .faq-final-cta {
    display: grid;
    justify-items: stretch;
    text-align: center;
  }
}

/* Final desktop polish: lighter small text, tighter cards, clearer CTA hierarchy. */
.hero-actions {
  margin-top: 14px;
  justify-content: center;
}

.hero-actions .button-secondary {
  min-width: 172px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(32, 41, 54, 0.12);
  box-shadow: none;
}

.hero-form-note {
  margin-top: 12px;
  color: rgba(80, 97, 114, 0.86);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

:where(
  .panel-card p,
  .panel-card li,
  .feature-list li,
  .hero-trust p,
  .hero-trust-source,
  .compliance-body,
  .reassurance-points li,
  .price-note,
  .scope-card p,
  .scope-card li,
  .timeline p,
  .process-note,
  .situation-card-intro,
  .situation-link-list a,
  .proof-quote p,
  .proof-quote footer,
  .proof-list li,
  .proof-image-card figcaption,
  .quiz-card label span,
  .result-card p,
  .result-card li,
  .booking-card p,
  .booking-points li,
  .faq-grid summary,
  .faq-grid p,
  .faq-final-cta p,
  .footer-sitemap a,
  .footer-links a,
  .footer-conversion p,
  .footer-disclaimer
) {
  font-weight: 500;
  line-height: 1.6;
}

.support-card {
  min-height: 0;
  padding: clamp(22px, 2.2vw, 30px);
}

.support-card .check-list {
  gap: 11px;
}

.support-card .check-list li {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.62;
}

.check-list li::before {
  top: 0.1em;
  color: var(--accent-strong);
  font-weight: 850;
}

.hero-stats .hero-trust article {
  min-height: 118px;
  padding: 24px 22px 26px;
}

.hero-stats .hero-trust span {
  font-size: clamp(3.05rem, 4.8vw, 4.35rem);
  letter-spacing: -0.055em;
}

.hero-stats .hero-trust p {
  color: rgba(80, 97, 114, 0.88);
  font-weight: 430;
  line-height: 1.5;
}

.hero-stats .hero-trust-source {
  margin-top: 12px;
  color: rgba(80, 97, 114, 0.66);
  font-size: 0.72rem;
  line-height: 1.45;
}

.reassurance-strip {
  padding: 30px 34px;
  scroll-margin-top: 120px;
}

.reassurance-points {
  gap: 12px;
}

.reassurance-points li {
  padding: 13px 15px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 250, 242, 0.92);
  font-weight: 600;
  line-height: 1.35;
}

.offer-grid {
  gap: 16px;
}

.offer .pricing-card {
  gap: 16px;
  padding: clamp(24px, 2.6vw, 34px);
}

.offer .price-top {
  gap: 8px;
}

.offer .pricing-card .label-chip {
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.offer .price {
  margin-top: 4px;
  color: var(--navy-deep);
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 0.95;
}

.offer .price-note {
  max-width: 40ch;
  color: rgba(80, 97, 114, 0.88);
  font-weight: 450;
  line-height: 1.55;
}

.offer .pricing-card h3 {
  margin-top: 12px;
}

.price-objective {
  margin-top: 14px;
  padding: 14px 16px;
  font-weight: 650;
  line-height: 1.45;
}

.offer .scope-card {
  gap: 14px;
}

.scope-positive,
.scope-secondary {
  padding: clamp(18px, 1.8vw, 24px);
}

.scope-secondary {
  background: rgba(29, 59, 83, 0.035);
  border-color: rgba(29, 59, 83, 0.065);
}

.scope-secondary p {
  color: rgba(80, 97, 114, 0.82);
  font-weight: 430;
  line-height: 1.62;
}

.process-section .timeline article {
  padding: 20px 20px 22px;
}

.process-section .timeline span {
  margin-bottom: 12px;
}

.process-section .timeline p {
  color: rgba(80, 97, 114, 0.9);
  font-weight: 430;
  line-height: 1.58;
}

.process-note {
  margin-top: 18px;
  font-weight: 560;
  line-height: 1.55;
}

.situation-card {
  min-height: 0;
  gap: 12px;
  padding: 22px;
}

.situation-card-intro {
  margin-bottom: 4px;
  line-height: 1.55;
}

.situation-link-list {
  gap: 8px;
  margin-top: 2px;
}

.situation-link-list a {
  min-height: 42px;
  padding: 9px 13px;
  font-weight: 620;
  line-height: 1.3;
}

.proof-copy-card {
  gap: 16px 28px;
  padding: clamp(24px, 2.4vw, 34px);
}

.proof-copy-card h2 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.45vw, 2.7rem);
  line-height: 1.05;
}

.proof-quote p {
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 500;
  line-height: 1.62;
}

.proof-quote footer {
  font-weight: 650;
}

.proof-list li {
  font-weight: 430;
  line-height: 1.62;
}

.proof-image-card figcaption {
  font-weight: 620;
  line-height: 1.45;
}

.quiz-card,
.result-card {
  padding: clamp(22px, 2.2vw, 30px);
}

.result-card p,
.result-card li {
  font-weight: 430;
  line-height: 1.62;
}

.booking-card {
  padding: clamp(26px, 3vw, 42px);
}

.booking-layout {
  gap: clamp(22px, 3vw, 44px);
}

.booking-copy {
  align-self: start;
}

.booking-points {
  gap: 8px;
  margin-top: 18px;
}

.booking-points li {
  padding-left: 24px;
  color: rgba(80, 97, 114, 0.9);
  font-weight: 500;
  line-height: 1.55;
}

.booking-points li::before {
  content: "✓";
  top: 0.05em;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--accent-strong);
  font-weight: 850;
  line-height: 1.5;
}

.faq-grid details {
  border-color: rgba(32, 41, 54, 0.065);
}

.faq-grid summary {
  font-weight: 620;
  line-height: 1.45;
}

.faq-grid p {
  color: rgba(80, 97, 114, 0.9);
  font-weight: 430;
  line-height: 1.68;
}

.faq-final-cta p {
  font-weight: 620;
}

.site-footer {
  grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) minmax(170px, 0.7fr) minmax(230px, 0.85fr);
  gap: 24px;
}

.footer-brand {
  grid-column: 1;
}

.footer-sitemap {
  grid-column: 2;
  grid-template-columns: 1fr;
  justify-content: start;
  justify-items: start;
  gap: 9px;
  text-align: left;
}

.footer-links {
  grid-column: 3;
  grid-template-columns: 1fr;
  justify-content: start;
  justify-items: start;
  gap: 9px;
  text-align: left;
}

.footer-links a:last-child {
  grid-column: auto;
  justify-self: start;
}

.footer-sitemap a,
.footer-links a {
  font-weight: 500;
  line-height: 1.45;
}

.footer-conversion {
  grid-column: 4;
  justify-self: start;
  justify-items: start;
  text-align: left;
}

.footer-conversion p {
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-sitemap,
  .footer-links,
  .footer-conversion {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero-form-note {
    font-size: 0.88rem;
  }

  .hero-stats .hero-trust span {
    font-size: clamp(2.6rem, 13vw, 3.3rem);
  }

  .reassurance-strip {
    padding: 24px 20px;
  }

  .proof-copy-card h2 {
    max-width: none;
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }
}

/* Mobile conversion pass: shorter perceived scroll, native snap carousels and compact accordions. */
.mobile-sticky-cta {
  display: none;
}

.scope-secondary summary,
.situation-card summary {
  list-style: none;
}

.scope-secondary summary::-webkit-details-marker,
.situation-card summary::-webkit-details-marker {
  display: none;
}

.scope-secondary summary h3,
.situation-card summary h3 {
  margin: 0;
}

.scope-secondary summary::after,
.situation-card summary::after {
  content: none;
}

.scope-secondary-content,
.situation-card-body {
  display: grid;
  gap: inherit;
}

@media (max-width: 900px) {
  .site-header .nav {
    gap: 0;
    padding: 8px 10px 10px;
    border-radius: 22px;
  }

  .site-header .nav a {
    min-height: 54px;
    padding: 0 8px;
    border: 0;
    border-bottom: 1px solid rgba(32, 41, 54, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--navy-deep);
    font-size: 0.98rem;
    font-weight: 600;
  }

  .site-header .nav a::after {
    content: "›";
    margin-left: auto;
    color: rgba(80, 97, 114, 0.58);
    font-size: 1.18rem;
    line-height: 1;
  }

}

@media (max-width: 760px) {
  :root {
    --sticky-header-offset: 84px;
  }

  .page-shell {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .section {
    padding-top: 52px;
  }

  .hero {
    width: min(calc(100% - 22px), var(--content-width));
    gap: 18px;
    padding: 24px 0 20px;
  }

  .hero-copy {
    padding: 4px 0 0;
  }

  .hero .eyebrow {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  .hero h1 {
    max-width: min(100%, 22ch);
    margin-inline: 0;
    font-size: clamp(1.48rem, 6.4vw, 1.76rem);
    line-height: 1.04;
  }

  .hero-lead {
    gap: 8px;
    margin-top: 14px;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.48;
    text-align: left;
  }

  .hero-quick-form {
    gap: 10px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 22px;
  }

  .hero-quick-form label,
  .hero-quick-form .phone-field {
    gap: 6px;
  }

  .hero-quick-form label span,
  .hero-quick-form .phone-field > label span {
    font-size: 1rem;
  }

  .hero-quick-form input,
  .hero-quick-form select,
  .hero-quick-form .button {
    min-height: 52px;
    border-radius: 18px;
  }

  .hero-form-note {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .hero-actions .button-secondary {
    min-height: 44px;
    min-width: 150px;
    font-size: 0.9rem;
  }

  .offer .pricing-card > .button,
  .proof-cta,
  .faq-final-cta .button,
  .footer-conversion .button {
    display: none;
  }

  .hero-panel,
  .hero-stats .hero-trust,
  .process-section .timeline,
  .proof-mobile-split {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-panel::-webkit-scrollbar,
  .hero-stats .hero-trust::-webkit-scrollbar,
  .process-section .timeline::-webkit-scrollbar,
  .proof-mobile-split::-webkit-scrollbar {
    display: none;
  }

  .hero-panel {
    padding: 2px 0 10px;
  }

  .hero-panel .panel-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

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

  .support-card h2 {
    max-width: 17ch;
    font-size: 1.55rem;
  }

  .support-card .check-list {
    gap: 8px;
  }

  .support-card .check-list li {
    line-height: 1.48;
  }

  .hero-stats {
    padding-top: 16px;
  }

  .stats-heading {
    margin-bottom: 12px;
  }

  .stats-heading h2 {
    font-size: clamp(1.72rem, 7vw, 2.08rem);
  }

  .stats-heading p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-stats .hero-trust {
    margin-top: 0;
    align-items: stretch;
  }

  .hero-stats .hero-trust article {
    flex: 0 0 84%;
    min-height: 132px;
    padding: 20px 18px;
    scroll-snap-align: start;
  }

  .hero-stats .hero-trust span {
    font-size: clamp(2.65rem, 14vw, 3.4rem);
  }

  .hero-stats .hero-trust p {
    max-width: 24ch;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .hero-stats .hero-trust-source {
    margin: 4px 0 0;
    font-size: 0.68rem;
    text-align: left;
  }

  .reassurance-strip {
    width: min(calc(100% - 22px), var(--content-width));
    gap: 14px;
    margin-top: 4px;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .reassurance-strip .compliance-lead {
    font-size: clamp(1.5rem, 7vw, 2.05rem);
  }

  .reassurance-strip .compliance-body {
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .reassurance-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .reassurance-points li {
    flex: 1 1 calc(50% - 8px);
    min-width: 132px;
    padding: 9px 11px;
    border-radius: 999px;
    font-size: 0.86rem;
    line-height: 1.2;
    text-align: center;
  }

  .offer {
    width: min(calc(100% - 22px), var(--content-width));
    padding-top: 32px;
    border-radius: 28px;
  }

  .offer-heading {
    margin-bottom: 16px;
  }

  .offer-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1;
  }

  .offer-heading p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .offer-grid {
    gap: 14px;
  }

  .offer .pricing-card,
  .offer .scope-card {
    padding: 18px;
    border-radius: 24px;
  }

  .offer .pricing-card {
    gap: 12px;
  }

  .offer .price-top {
    gap: 6px;
  }

  .offer .pricing-card .label-chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .offer .price {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
  }

  .offer .price-note,
  .offer .pricing-card .feature-list li,
  .scope-card li,
  .scope-secondary p {
    font-size: 0.93rem;
    line-height: 1.48;
  }

  .price-objective {
    margin-top: 8px;
    padding: 12px 13px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .scope-positive {
    padding: 16px;
    border-radius: 20px;
  }

  .scope-secondary {
    display: block;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .scope-secondary summary,
  .situation-card summary {
    cursor: pointer;
  }

  .scope-secondary summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 0 16px;
  }

  .scope-secondary summary h3 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  .scope-secondary summary::after,
  .situation-card summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--navy-deep);
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 700;
  }

  .scope-secondary[open] summary::after,
  .situation-card[open] summary::after {
    content: "−";
  }

  .scope-secondary-content {
    gap: 8px;
    padding: 0 16px 16px;
  }

  .process-section {
    padding-top: 42px;
  }

  .process-section .section-heading {
    margin-bottom: 16px;
  }

  .process-section #process-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .process-section .timeline {
    gap: 12px;
  }

  .process-section .timeline article {
    flex: 0 0 88%;
    min-height: 190px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .process-section .timeline article::after {
    position: absolute;
    right: 16px;
    top: 16px;
    color: rgba(80, 97, 114, 0.6);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .process-section .timeline article:nth-child(1)::after { content: "1/4"; }
  .process-section .timeline article:nth-child(2)::after { content: "2/4"; }
  .process-section .timeline article:nth-child(3)::after { content: "3/4"; }
  .process-section .timeline article:nth-child(4)::after { content: "4/4"; }

  .process-section .timeline span {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .process-section .timeline h3 {
    margin: 0 0 8px;
  }

  .process-note {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.48;
    text-align: left;
  }

  .situation-hub {
    padding-top: 42px;
  }

  .situation-heading {
    margin-bottom: 16px;
  }

  .situation-heading h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
  }

  .situation-heading p {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .situation-grid {
    display: grid;
    gap: 10px;
  }

  .situation-card,
  .situation-card-featured,
  .situation-card-dark {
    display: block;
    padding: 0;
    border-radius: 20px;
    background:
      radial-gradient(circle at top right, rgba(220, 233, 221, 0.42), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.9));
    color: var(--ink);
  }

  .situation-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 62px;
    padding: 14px 16px;
  }

  .situation-card h3,
  .situation-card-dark h3 {
    color: var(--navy-deep);
    font-size: 1.38rem;
    line-height: 1.03;
  }

  .situation-card-body {
    gap: 10px;
    padding: 0 16px 16px;
  }

  .situation-card-intro,
  .situation-card-dark .situation-card-intro {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .situation-link-list {
    gap: 7px;
  }

  .situation-link-list a,
  .situation-card-dark .situation-link-list a {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy-deep);
    font-size: 0.93rem;
  }

  .proof {
    padding-top: 42px;
  }

  .proof-block {
    gap: 14px;
  }

  .proof-copy-card {
    gap: 10px;
    padding: 16px 14px;
    border-radius: 24px;
  }

  .proof-copy-card h2 {
    font-size: clamp(1.32rem, 6.4vw, 1.72rem);
    line-height: 1.05;
  }

  .proof-kicker {
    font-size: 0.9rem;
  }

  .proof-quote {
    padding: 12px;
    border-radius: 16px;
  }

  .proof-quote p,
  .proof-quote footer,
  .proof-list li {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .proof-list {
    gap: 8px;
  }

  .proof-list li {
    padding-left: 13px;
  }

  .proof-image-card {
    padding: 12px;
    border-radius: 24px;
  }

  .proof-mobile-split {
    gap: 12px;
  }

  .proof-split-frame {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .proof-image-card .proof-split-image {
    width: 200%;
  }

  .proof-image-card figcaption {
    font-size: 0.9rem;
    line-height: 1.42;
    text-align: left;
  }

  .proof-cta {
    width: 100%;
  }

  .qualification {
    padding-top: 42px;
  }

  .qualification .section-heading {
    margin-bottom: 16px;
  }

  .qualification .section-heading h2,
  .faq #faq-title {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .qualification .section-heading p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .quiz-card,
  .result-card {
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .quiz-card select {
    min-height: 50px;
    border-radius: 14px;
  }

  .result-card {
    position: static;
    min-height: 0;
  }

  .result-kicker {
    font-size: 0.86rem;
  }

  .result-card h3 {
    font-size: 1.45rem;
    line-height: 1.04;
  }

  .result-copy {
    gap: 8px;
  }

  .booking {
    padding-top: 42px;
  }

  .booking-card {
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .booking-card h2 {
    max-width: 14ch;
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .booking-points {
    display: none;
  }

  .call-form {
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .call-form input,
  .call-form select {
    min-height: 50px;
    border-radius: 14px;
  }

  .call-form-note {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .faq {
    padding-top: 42px;
  }

  .faq .section-heading {
    margin-bottom: 16px;
  }

  .faq-grid {
    gap: 8px;
  }

  .faq-grid details {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .faq-grid summary {
    font-size: clamp(1.25rem, 5.5vw, 1.38rem);
    font-weight: 560;
    line-height: 1.25;
  }

  .faq-grid summary::after {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .faq-grid p {
    margin-top: 8px;
    font-size: 0.93rem;
    line-height: 1.54;
  }

  .faq-final-cta {
    gap: 0;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .site-footer {
    gap: 14px;
    min-height: 0;
    padding-bottom: 90px;
  }

  .footer-mobile-card-art {
    width: 124px;
    right: 6px;
    bottom: 176px;
    padding: 12px;
    border-radius: 20px;
  }

  .footer-sitemap,
  .footer-links {
    gap: 5px;
  }

  .footer-sitemap a,
  .footer-links a {
    min-height: 31px;
    padding: 2px 0;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .footer-disclaimer {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 74;
    display: flex;
    align-items: center;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(32, 41, 54, 0.08);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 -16px 34px rgba(19, 38, 58, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  @supports (backdrop-filter: blur(12px)) {
    .mobile-sticky-cta {
      backdrop-filter: blur(12px);
    }
  }

  .mobile-sticky-cta .button {
    width: 100%;
    min-height: 48px;
    background: linear-gradient(135deg, #b83261 0%, #8e244e 100%);
    box-shadow: 0 14px 26px rgba(184, 50, 97, 0.22);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .is-mobile-menu-open .mobile-sticky-cta,
  .mobile-sticky-cta.is-hidden-context {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }
}

/* SEO landing pages premium refresh */
.seo-page .seo-hero-landing,
.seo-page .seo-landing-grid {
  align-items: stretch;
}

.seo-page .seo-hero-copy,
.seo-page .seo-verify-panel,
.seo-page .seo-content-card,
.seo-page .seo-cta-card {
  text-align: left;
}

.seo-page .seo-hero-copy {
  position: relative;
  overflow: hidden;
  border-color: rgba(184, 50, 97, 0.14);
  background:
    radial-gradient(circle at 88% 10%, rgba(184, 50, 97, 0.12), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 244, 0.82));
}

.seo-page-sensitive .seo-hero-copy {
  border-color: rgba(32, 41, 54, 0.14);
  background:
    radial-gradient(circle at 88% 8%, rgba(51, 68, 91, 0.14), transparent 33%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.88));
}

.seo-page .seo-hero-copy::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(184, 50, 97, 0.13);
  border-radius: 999px;
  content: "";
}

.seo-page-sensitive .seo-hero-copy::after {
  border-color: rgba(32, 41, 54, 0.13);
}

.seo-page .seo-hero-copy > * {
  position: relative;
  z-index: 1;
}

.seo-page .seo-hero-copy h1,
.seo-page .seo-hero-copy p,
.seo-page .seo-section h2,
.seo-page .seo-section h3,
.seo-page .seo-section p,
.seo-page .seo-cta-card h2,
.seo-page .seo-cta-card p {
  text-align: left;
}

.seo-page .seo-hero-copy h1 {
  max-width: 12.5ch;
}

.seo-page .seo-lead {
  max-width: 62ch;
}

.seo-hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
}

.seo-hero-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(184, 50, 97, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.25;
}

.seo-page-sensitive .seo-hero-assurance span {
  border-color: rgba(32, 41, 54, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.seo-form-context,
.seo-form-note,
.seo-cta-note,
.seo-sensitive-note {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 460;
  line-height: 1.55;
}

.seo-form-context {
  margin: 4px 0 0;
  padding-left: 14px;
  border-left: 3px solid rgba(184, 50, 97, 0.28);
}

.seo-page-sensitive .seo-form-context {
  border-left-color: rgba(32, 41, 54, 0.26);
}

.seo-form-note {
  margin: -4px 0 0;
}

.seo-page .seo-quick-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.seo-page .seo-quick-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: min(100%, 260px);
}

.seo-card-kicker {
  margin: 0 0 8px;
  color: #a72d59;
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.seo-page-sensitive .seo-card-kicker {
  color: #40516a;
}

.seo-verify-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.seo-micro-card,
.seo-related-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(32, 41, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(32, 41, 54, 0.06);
}

.seo-micro-card {
  padding: 16px;
}

.seo-micro-card::before {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(184, 50, 97, 0.1);
  color: #a72d59;
  content: "✓";
  font-size: 0.82rem;
  font-weight: 760;
}

.seo-page-sensitive .seo-micro-card::before {
  background: rgba(32, 41, 54, 0.08);
  color: #40516a;
}

.seo-micro-card h3,
.seo-related-card strong {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.12;
}

.seo-micro-card p,
.seo-related-card span {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 430;
  line-height: 1.5;
}

.seo-landing-grid .seo-content-card {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 253, 248, 0.78));
}

.seo-landing-grid .seo-content-card > .seo-section,
.seo-landing-grid .seo-content-card > .seo-inline-cta {
  border-bottom: 0;
}

.seo-section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.seo-section-heading p {
  max-width: 66ch;
}

.seo-context-block,
.seo-why-block,
.seo-takeover-block,
.seo-documents-block,
.seo-related-section,
.seo-faq-section {
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(32, 41, 54, 0.075);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.seo-why-block {
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 50, 97, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.62);
}

.seo-context-block {
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 41, 54, 0.055), transparent 31%),
    rgba(255, 255, 255, 0.62);
}

.seo-subsection {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.seo-page-sensitive .seo-why-block {
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 41, 54, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.66);
}

.seo-takeover-block {
  border-color: rgba(184, 50, 97, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 244, 247, 0.8), rgba(255, 255, 255, 0.66));
}

.seo-page-sensitive .seo-takeover-block {
  border-color: rgba(32, 41, 54, 0.13);
  background:
    linear-gradient(135deg, rgba(246, 248, 252, 0.92), rgba(255, 255, 255, 0.68));
}

.seo-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-check-list li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 38px;
  border: 1px solid rgba(32, 41, 54, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 480;
  line-height: 1.4;
}

.seo-check-list li::before {
  position: absolute;
  top: 10px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(184, 50, 97, 0.11);
  color: #a72d59;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 760;
}

.seo-page-sensitive .seo-check-list li::before {
  background: rgba(32, 41, 54, 0.08);
  color: #40516a;
}

.seo-sensitive-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(32, 41, 54, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

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

.seo-related-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.seo-related-card::after {
  color: #a72d59;
  content: "→";
  font-weight: 760;
}

.seo-page-sensitive .seo-related-card::after {
  color: #40516a;
}

.seo-related-card:hover,
.seo-related-card:focus-visible {
  border-color: rgba(184, 50, 97, 0.24);
  box-shadow: 0 20px 42px rgba(32, 41, 54, 0.1);
  transform: translateY(-2px);
}

.seo-page-sensitive .seo-related-card:hover,
.seo-page-sensitive .seo-related-card:focus-visible {
  border-color: rgba(32, 41, 54, 0.2);
}

.seo-page .seo-inline-cta {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(184, 50, 97, 0.18);
  background:
    radial-gradient(circle at 95% 15%, rgba(255, 255, 255, 0.52), transparent 30%),
    linear-gradient(135deg, #fff2f5, #fffdfa);
}

.seo-page-sensitive .seo-inline-cta {
  border-color: rgba(32, 41, 54, 0.14);
  background:
    radial-gradient(circle at 95% 15%, rgba(255, 255, 255, 0.56), transparent 30%),
    linear-gradient(135deg, #f4f7fb, #fffdfa);
}

.seo-page .seo-inline-cta h2,
.seo-page .seo-inline-cta p {
  text-align: left;
}

.seo-page .seo-inline-cta .primary-link {
  white-space: nowrap;
}

.seo-page .seo-faq details {
  border-color: rgba(32, 41, 54, 0.075);
  background: rgba(255, 255, 255, 0.68);
}

.seo-page .seo-faq summary {
  font-weight: 620;
}

.seo-page .seo-faq p {
  font-weight: 430;
  line-height: 1.58;
}

.seo-page .seo-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-color: rgba(184, 50, 97, 0.14);
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 50, 97, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.84);
}

.seo-page-sensitive .seo-cta-card {
  border-color: rgba(32, 41, 54, 0.13);
  background:
    radial-gradient(circle at 90% 0%, rgba(32, 41, 54, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.86);
}

.seo-page .seo-cta-card .primary-link {
  width: 100%;
  justify-content: center;
}

.seo-cta-note {
  margin: 0;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .seo-page .seo-quick-form,
  .seo-check-list,
  .seo-related-card-grid,
  .seo-verify-grid {
    grid-template-columns: 1fr;
  }

  .seo-page .seo-inline-cta {
    grid-template-columns: 1fr;
  }

  .seo-page .seo-inline-cta .primary-link {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .seo-page .seo-hero-copy h1 {
    max-width: none;
  }

  .seo-page .seo-hero-assurance {
    gap: 6px;
  }

  .seo-hero-assurance span {
    min-height: 31px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .seo-page .seo-quick-form {
    padding: 14px;
  }

  .seo-page .seo-quick-form button {
    width: 100%;
  }

  .seo-context-block,
  .seo-why-block,
  .seo-takeover-block,
  .seo-documents-block,
  .seo-related-section,
  .seo-faq-section {
    padding: 18px;
    border-radius: 22px;
  }

  .seo-micro-card,
  .seo-related-card {
    border-radius: 18px;
  }

  .seo-page .seo-cta-card {
    position: static;
  }
}

/* SEO landing alignment and form polish */
.seo-page .seo-hero-landing {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}

.seo-page .seo-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: clamp(18px, 2vw, 30px);
}

.seo-page .seo-hero-copy {
  align-content: start;
  justify-items: start;
  text-align: left;
}

.seo-page .seo-hero-copy h1,
.seo-page .seo-lead,
.seo-page .seo-hero-copy > p:not(.eyebrow):not(.seo-lead),
.seo-page .seo-verify-panel h2,
.seo-page .seo-verify-panel > p,
.seo-page .seo-micro-card h3,
.seo-page .seo-micro-card p {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.seo-page .seo-verify-panel .seo-card-kicker {
  align-self: start;
  text-align: left;
}

.seo-page .seo-hero-copy h1 {
  max-width: 12.8ch;
}

.seo-page .seo-lead {
  color: var(--ink);
  font-weight: 560;
  line-height: 1.48;
}

.seo-page .seo-hero-copy > p:not(.eyebrow):not(.seo-lead) {
  font-weight: 430;
  line-height: 1.62;
}

.seo-page .seo-quick-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #b83261 0%, #8e244e 100%);
  box-shadow: 0 18px 34px rgba(184, 50, 97, 0.22);
  color: #fff;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 760;
}

.seo-page .seo-quick-form button:hover,
.seo-page .seo-quick-form button:focus-visible {
  background: linear-gradient(135deg, #c23a6c 0%, #932653 100%);
  box-shadow: 0 20px 38px rgba(184, 50, 97, 0.28);
}

/* Consentement cookies RGPD : module global léger, sans traceur externe. */
.footer-cookie-link {
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.has-cookie-consent-open body {
  padding-bottom: 118px;
}

.cookie-consent-root {
  position: relative;
  z-index: 140;
}

.cookie-consent-banner[hidden],
.cookie-consent-panel[hidden] {
  display: none !important;
}

.cookie-consent-banner {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: clamp(14px, 3vw, 34px);
  z-index: 140;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(32, 41, 54, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 50, 97, 0.08), transparent 34%),
    rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 80px rgba(17, 37, 55, 0.16);
}

@supports (backdrop-filter: blur(16px)) {
  .cookie-consent-banner,
  .cookie-panel-card {
    backdrop-filter: blur(16px);
  }
}

.cookie-consent-copy {
  display: grid;
  gap: 6px;
}

.cookie-consent-kicker {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.cookie-consent-banner h2,
.cookie-panel-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.cookie-consent-banner p,
.cookie-panel-heading p,
.cookie-category p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 430;
  line-height: 1.52;
}

.cookie-consent-actions,
.cookie-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.94rem;
  font-weight: 740;
  line-height: 1;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

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

.cookie-button:focus-visible,
.footer-cookie-link:focus-visible,
.cookie-switch input:focus-visible + span {
  outline: 3px solid rgba(184, 50, 97, 0.3);
  outline-offset: 3px;
}

.cookie-button-accept {
  background: linear-gradient(135deg, #b83261 0%, #8e244e 100%);
  box-shadow: 0 14px 28px rgba(184, 50, 97, 0.2);
  color: #fff;
}

.cookie-button-refuse {
  background: linear-gradient(135deg, #20384f 0%, #112537 100%);
  box-shadow: 0 14px 28px rgba(17, 37, 55, 0.16);
  color: #fff;
}

.cookie-button-secondary {
  border-color: rgba(32, 41, 54, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-deep);
}

.cookie-consent-panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 34px);
  background: rgba(17, 37, 55, 0.28);
}

.cookie-panel-card {
  display: grid;
  gap: 18px;
  width: min(100%, 780px);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(32, 41, 54, 0.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 50, 97, 0.08), transparent 32%),
    rgba(255, 253, 248, 0.96);
  box-shadow: 0 30px 90px rgba(17, 37, 55, 0.22);
}

.cookie-panel-card:focus {
  outline: none;
}

.cookie-panel-heading {
  display: grid;
  gap: 8px;
}

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

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(32, 41, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.cookie-category h3 {
  margin: 0 0 5px;
  color: var(--navy-deep);
  font-family: var(--body-font);
  font-size: 1.02rem;
  font-weight: 740;
  line-height: 1.2;
}

.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--navy-deep);
  font-size: 0.86rem;
  font-weight: 680;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 106px;
  min-height: 38px;
  padding: 0 12px 0 42px;
  border: 1px solid rgba(32, 41, 54, 0.12);
  border-radius: 999px;
  background: rgba(246, 248, 252, 0.92);
  color: var(--ink-soft);
}

.cookie-switch span::before {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(17, 37, 55, 0.16);
  content: "";
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.cookie-switch input:checked + span {
  border-color: rgba(184, 50, 97, 0.22);
  background: rgba(184, 50, 97, 0.1);
  color: var(--accent-strong);
}

.cookie-switch input:checked + span::before {
  background: var(--accent-strong);
  transform: translateX(66px);
}

.cookie-switch.is-disabled {
  cursor: not-allowed;
}

.cookie-switch.is-disabled span {
  border-color: rgba(42, 116, 83, 0.16);
  background: rgba(220, 233, 221, 0.56);
  color: #2a7453;
}

.cookie-switch.is-disabled span::before {
  background: #2a7453;
  transform: translateX(66px);
}

@media (max-width: 760px) {
  .has-cookie-consent-open body {
    padding-bottom: calc(240px + env(safe-area-inset-bottom));
  }

  .cookie-consent-banner {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .cookie-consent-banner h2,
  .cookie-panel-heading h2 {
    font-size: 1.55rem;
  }

  .cookie-consent-banner p,
  .cookie-panel-heading p,
  .cookie-category p {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .cookie-consent-actions,
  .cookie-panel-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
  }

  .cookie-button {
    width: 100%;
    min-height: 44px;
  }

  .cookie-consent-panel {
    align-items: end;
    padding: 10px;
  }

  .cookie-panel-card {
    max-height: min(88vh, 760px);
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
  }

  .cookie-category {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-switch,
  .cookie-switch span {
    width: 100%;
  }

  .footer-cookie-link {
    min-height: 31px;
    font-size: 0.88rem;
    line-height: 1.25;
  }
}

@media (max-width: 980px) {
  .seo-page .seo-hero-landing,
  .seo-page .seo-landing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .seo-page .seo-hero-copy h1 {
    max-width: none;
  }
}

/* SEO landing pages: page-specific proof and less template-like rhythm. */
.seo-page .seo-situation-proof {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(100%, 650px);
  margin-top: 8px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 50, 97, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 245, 248, 0.88), rgba(255, 255, 255, 0.74));
  box-shadow: 0 18px 42px rgba(32, 41, 54, 0.06);
}

.seo-page .seo-situation-proof::before {
  position: absolute;
  top: -40px;
  right: -24px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(184, 50, 97, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.seo-page-sensitive .seo-situation-proof {
  border-color: rgba(32, 41, 54, 0.14);
  background:
    linear-gradient(135deg, rgba(246, 248, 252, 0.94), rgba(255, 255, 255, 0.78));
}

.seo-page-sensitive .seo-situation-proof::before {
  border-color: rgba(32, 41, 54, 0.13);
}

.seo-proof-kicker {
  margin: 0;
  color: #a72d59;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.seo-page-sensitive .seo-proof-kicker {
  color: #40516a;
}

.seo-page .seo-situation-proof p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 430;
  line-height: 1.48;
}

.seo-page .seo-situation-proof strong {
  font-weight: 660;
}

.seo-proof-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-proof-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(184, 50, 97, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 560;
  line-height: 1.2;
}

.seo-page-sensitive .seo-proof-steps span {
  border-color: rgba(32, 41, 54, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.seo-page .seo-form-context {
  max-width: 650px;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 50, 97, 0.12);
  border-left: 4px solid rgba(184, 50, 97, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.seo-page-sensitive .seo-form-context {
  border-color: rgba(32, 41, 54, 0.11);
  border-left-color: rgba(32, 41, 54, 0.32);
}

.seo-page .seo-context-block,
.seo-page .seo-why-block,
.seo-page .seo-takeover-block,
.seo-page .seo-documents-block,
.seo-page .seo-related-section,
.seo-page .seo-faq-section {
  box-shadow: 0 18px 48px rgba(32, 41, 54, 0.045);
}

.seo-page .seo-context-block {
  border-left: 5px solid rgba(184, 50, 97, 0.18);
}

.seo-page-sensitive .seo-context-block {
  border-left-color: rgba(32, 41, 54, 0.18);
}

.seo-page .seo-why-block {
  border-style: solid;
  border-color: rgba(184, 50, 97, 0.1);
}

.seo-page-sensitive .seo-why-block {
  border-color: rgba(32, 41, 54, 0.1);
}

.seo-page .seo-related-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 233, 221, 0.52), transparent 30%),
    rgba(255, 255, 255, 0.64);
}

.seo-page .seo-related-card strong::before {
  display: inline-flex;
  margin-right: 7px;
  color: #a72d59;
  content: "Situation";
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-page-sensitive .seo-related-card strong::before {
  color: #40516a;
}

.seo-page .seo-inline-cta,
.seo-page .seo-cta-card {
  position: relative;
  overflow: hidden;
}

.seo-page .seo-inline-cta::after,
.seo-page .seo-cta-card::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(184, 50, 97, 0.12);
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.seo-page-sensitive .seo-inline-cta::after,
.seo-page-sensitive .seo-cta-card::after {
  border-color: rgba(32, 41, 54, 0.12);
}

.seo-page .seo-inline-cta > *,
.seo-page .seo-cta-card > * {
  position: relative;
  z-index: 1;
}

.seo-page .seo-faq-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 255, 255, 0.66));
}

.seo-page .seo-faq details {
  border-radius: 18px;
}

.seo-page .seo-faq summary {
  padding-right: 8px;
  font-weight: 590;
}

.seo-page-standard .seo-content-card {
  background:
    radial-gradient(circle at 0% 16%, rgba(255, 222, 231, 0.4), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 247, 240, 0.76));
}

.seo-page-sensitive .seo-content-card {
  background:
    radial-gradient(circle at 0% 14%, rgba(32, 56, 79, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(250, 250, 247, 0.92), rgba(244, 246, 248, 0.78));
}

.seo-page-standard .seo-hero-copy,
.seo-page-standard .seo-verify-panel {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 58px rgba(184, 50, 97, 0.07);
}

.seo-page-sensitive .seo-hero-copy,
.seo-page-sensitive .seo-verify-panel {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 58px rgba(17, 37, 55, 0.085);
}

.seo-page-standard .seo-verify-panel {
  border-top: 4px solid rgba(184, 50, 97, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 50, 97, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.78);
}

.seo-page-sensitive .seo-verify-panel {
  border-top: 4px solid rgba(32, 56, 79, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 56, 79, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.8);
}

.seo-page-standard .seo-documents-block {
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 50, 97, 0.07), transparent 30%),
    rgba(255, 255, 255, 0.62);
}

.seo-page-sensitive .seo-documents-block {
  border-color: rgba(32, 41, 54, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 56, 79, 0.07), transparent 30%),
    rgba(249, 250, 248, 0.68);
}

.seo-page-sensitive .seo-faq-section {
  background:
    linear-gradient(180deg, rgba(248, 249, 250, 0.86), rgba(255, 255, 255, 0.66));
}

.seo-page-sensitive .seo-quick-form button,
.seo-page-sensitive .button-primary,
.seo-page-sensitive .primary-link {
  background: linear-gradient(135deg, #20384f 0%, #112537 100%);
  box-shadow: 0 18px 34px rgba(17, 37, 55, 0.2);
}

.seo-page-sensitive .seo-quick-form button:hover,
.seo-page-sensitive .seo-quick-form button:focus-visible,
.seo-page-sensitive .button-primary:hover,
.seo-page-sensitive .button-primary:focus-visible,
.seo-page-sensitive .primary-link:hover,
.seo-page-sensitive .primary-link:focus-visible {
  background: linear-gradient(135deg, #274760 0%, #142c42 100%);
  box-shadow: 0 20px 38px rgba(17, 37, 55, 0.26);
}

.seo-proof-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
  border-color: rgba(184, 50, 97, 0.13);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(135deg, rgba(255, 242, 246, 0.88), rgba(255, 255, 255, 0.68));
}

.seo-page-sensitive .seo-proof-showcase {
  border-color: rgba(32, 41, 54, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #1f3144, #142537);
  box-shadow: 0 24px 58px rgba(17, 37, 55, 0.14);
}

.seo-proof-showcase h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.seo-page-sensitive .seo-proof-showcase h2,
.seo-page-sensitive .seo-proof-showcase p {
  color: rgba(255, 255, 255, 0.92);
}

.seo-page-sensitive .seo-proof-showcase .seo-card-kicker {
  color: rgba(244, 216, 170, 0.92);
}

.seo-proof-showcase p:not(.seo-card-kicker) {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 430;
  line-height: 1.62;
}

.seo-proof-visual {
  display: grid;
  gap: 9px;
  min-height: 160px;
  padding: 16px;
  border: 1px solid rgba(184, 50, 97, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 244, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.seo-page-sensitive .seo-proof-visual {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
}

.seo-proof-visual span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(32, 41, 54, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1.15;
}

.seo-proof-visual span::after {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(184, 50, 97, 0.56);
  content: "";
}

.seo-page-sensitive .seo-proof-visual span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.seo-page-sensitive .seo-proof-visual span::after {
  background: rgba(244, 216, 170, 0.74);
}

.seo-proof-showcase-ants .seo-proof-visual span::after,
.seo-proof-showcase-prefecture .seo-proof-visual span::after {
  background: rgba(29, 59, 83, 0.62);
}

.seo-proof-showcase-timeline .seo-proof-visual,
.seo-proof-showcase-return .seo-proof-visual,
.seo-proof-showcase-medical .seo-proof-visual {
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 233, 221, 0.58), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 244, 0.7));
}

.seo-proof-showcase-sensitive .seo-proof-visual {
  min-height: 148px;
}

@media (max-width: 760px) {
  .seo-page .seo-situation-proof {
    padding: 14px;
    border-radius: 20px;
  }

  .seo-proof-steps {
    gap: 7px;
  }

  .seo-proof-steps span {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.79rem;
  }

  .seo-page .seo-form-context {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .seo-proof-showcase {
    grid-template-columns: 1fr;
  }

  .seo-proof-showcase h2 {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  .seo-proof-visual {
    min-height: 0;
    padding: 12px;
    border-radius: 20px;
  }
}

/* SEO typography calibration */
.seo-page .seo-hero-copy h1 {
  font-size: clamp(2.75rem, 4.4vw, 3.625rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.seo-page .seo-section h2,
.seo-page .seo-inline-cta h2,
.seo-page .seo-cta-card h2,
.seo-page .seo-verify-panel h2,
.seo-page .seo-proof-showcase h2 {
  font-size: clamp(2.125rem, 3vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.seo-page .seo-section h3,
.seo-page .seo-micro-card h3,
.seo-page .seo-proof-copy h3,
.seo-page .seo-related-card strong {
  font-size: clamp(1.25rem, 1.55vw, 1.625rem);
  line-height: 1.15;
  font-weight: 650;
}

.seo-page p,
.seo-page li,
.seo-page .seo-related-card span,
.seo-page .seo-micro-card p,
.seo-page .seo-proof-showcase p:not(.seo-card-kicker) {
  font-size: clamp(1.0625rem, 1.18vw, 1.1875rem);
  line-height: 1.62;
  font-weight: 430;
}

.seo-page .seo-lead {
  font-size: clamp(1.125rem, 1.32vw, 1.3125rem);
  line-height: 1.56;
  font-weight: 500;
}

.seo-page .seo-check-list li,
.seo-page .seo-proof-list li,
.seo-page .seo-doc-list li {
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.52;
  font-weight: 450;
}

.seo-page .seo-faq summary {
  font-size: clamp(1.25rem, 1.45vw, 1.5rem);
  line-height: 1.28;
  font-weight: 600;
}

.seo-page .seo-faq p {
  font-size: clamp(1.0625rem, 1.1vw, 1.125rem);
  line-height: 1.65;
  font-weight: 400;
}

.seo-page .seo-form-context,
.seo-page .seo-form-note,
.seo-page .seo-cta-note,
.seo-page .seo-sensitive-note,
.seo-page .seo-hero-assurance span,
.seo-page .seo-situation-proof p {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.56;
  font-weight: 450;
}

.seo-page .seo-situation-proof strong {
  font-weight: 560;
}

.seo-page .seo-proof-steps span,
.seo-page .seo-proof-visual span {
  font-size: clamp(0.9375rem, 0.95vw, 1rem);
  line-height: 1.35;
  font-weight: 500;
}

.seo-page .seo-card-kicker,
.seo-page .seo-proof-kicker {
  font-size: 0.78rem;
  line-height: 1.2;
}

.seo-page .button,
.seo-page .primary-link,
.seo-page .seo-quick-form button {
  font-size: clamp(1.0625rem, 1.1vw, 1.1875rem);
}

@media (max-width: 760px) {
  .seo-page .seo-hero-copy h1 {
    font-size: clamp(2.125rem, 10vw, 2.625rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .seo-page .seo-section h2,
  .seo-page .seo-inline-cta h2,
  .seo-page .seo-cta-card h2,
  .seo-page .seo-verify-panel h2,
  .seo-page .seo-proof-showcase h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.125rem);
    line-height: 1.06;
  }

  .seo-page .seo-section h3,
  .seo-page .seo-micro-card h3,
  .seo-page .seo-proof-copy h3,
  .seo-page .seo-related-card strong {
    font-size: clamp(1.25rem, 5.8vw, 1.5rem);
    line-height: 1.16;
  }

  .seo-page p,
  .seo-page li,
  .seo-page .seo-related-card span,
  .seo-page .seo-micro-card p,
  .seo-page .seo-proof-showcase p:not(.seo-card-kicker) {
    font-size: clamp(1.0625rem, 4.4vw, 1.1875rem);
    line-height: 1.62;
    font-weight: 430;
  }

  .seo-page .seo-lead {
    font-size: clamp(1.0625rem, 4.6vw, 1.1875rem);
    line-height: 1.58;
    font-weight: 500;
  }

  .seo-page .seo-check-list li,
  .seo-page .seo-proof-list li,
  .seo-page .seo-doc-list li {
    font-size: clamp(1rem, 4.2vw, 1.125rem);
    line-height: 1.55;
    font-weight: 450;
  }

  .seo-page .seo-faq summary {
    font-size: clamp(1.1875rem, 5.2vw, 1.375rem);
    line-height: 1.3;
    font-weight: 590;
  }

  .seo-page .seo-faq p {
    font-size: clamp(1.0625rem, 4.3vw, 1.125rem);
    line-height: 1.65;
  }

  .seo-page .seo-form-context,
  .seo-page .seo-form-note,
  .seo-page .seo-cta-note,
  .seo-page .seo-sensitive-note,
  .seo-page .seo-hero-assurance span,
  .seo-page .seo-situation-proof p {
    font-size: clamp(0.9375rem, 4vw, 1rem);
    line-height: 1.55;
    font-weight: 450;
  }

  .seo-page .seo-proof-steps span,
  .seo-page .seo-proof-visual span {
    font-size: 0.92rem;
    font-weight: 500;
  }

  .seo-page .seo-card-kicker,
  .seo-page .seo-proof-kicker {
    font-size: 0.72rem;
  }

  .seo-page .button,
  .seo-page .primary-link,
  .seo-page .seo-quick-form button {
    font-size: clamp(1.0625rem, 4.4vw, 1.1875rem);
  }
}

/* Homepage final polish: scoped overrides only, to avoid adding new global CSS history. */
.home-page .hero-mobile-proof-card,
.home-page .hero-mobile-assurance {
  display: none;
}

.home-page .faq-editorial-note {
  margin: 0;
}

@media (min-width: 761px) {
  .home-page .situation-hub {
    padding-top: 58px;
  }

  .home-page .situation-heading {
    max-width: 960px;
    margin-inline: auto;
  }

  .home-page .situation-grid {
    gap: 20px;
  }

  .home-page .situation-card {
    padding: 26px;
    border-color: rgba(32, 41, 54, 0.075);
    box-shadow: 0 22px 52px rgba(24, 39, 54, 0.075);
  }

  .home-page .situation-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, rgba(184, 50, 97, 0.72), rgba(236, 172, 76, 0.72));
  }

  .home-page .situation-card-featured::before {
    background: linear-gradient(90deg, rgba(236, 172, 76, 0.85), rgba(220, 233, 221, 0.85));
  }

  .home-page .situation-card-dark::before {
    background: linear-gradient(90deg, rgba(32, 56, 79, 0.82), rgba(184, 50, 97, 0.58));
  }

  .home-page .situation-card summary {
    display: grid;
    gap: 10px;
  }

  .home-page .situation-card-label {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(184, 50, 97, 0.14);
    border-radius: 999px;
    background: rgba(184, 50, 97, 0.075);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
  }

  .home-page .situation-card-featured .situation-card-label {
    border-color: rgba(173, 112, 24, 0.16);
    background: rgba(236, 172, 76, 0.13);
    color: #8a5a12;
  }

  .home-page .situation-card-dark .situation-card-label {
    border-color: rgba(32, 56, 79, 0.14);
    background: rgba(32, 56, 79, 0.06);
    color: var(--navy);
  }

  .home-page .situation-card-dark .situation-card-intro {
    color: rgba(80, 97, 114, 0.9);
  }

  .home-page .situation-link-list a {
    background: rgba(255, 255, 255, 0.82);
  }

  .home-page .situation-card-dark .situation-link-list a {
    background: rgba(255, 255, 255, 0.12);
  }

  .home-page .faq {
    scroll-margin-top: calc(var(--sticky-header-offset) + 22px);
    padding: clamp(54px, 5vw, 72px) clamp(28px, 4vw, 58px);
    border: 1px solid rgba(32, 41, 54, 0.075);
    border-radius: 36px;
    background:
      radial-gradient(circle at 94% 12%, rgba(184, 50, 97, 0.095), transparent 28%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(249, 244, 236, 0.86));
    box-shadow: 0 26px 70px rgba(24, 39, 54, 0.055);
  }

  .home-page .faq .section-heading {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
    gap: 24px 44px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(32, 41, 54, 0.14);
    text-align: left;
  }

  .home-page .faq .section-heading .eyebrow,
  .home-page .faq #faq-title,
  .home-page .faq-editorial-note {
    margin-inline: 0;
    text-align: left;
  }

  .home-page .faq .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .home-page .faq #faq-title {
    max-width: 13ch;
    font-size: clamp(2.45rem, 3.55vw, 3.35rem);
    line-height: 0.98;
  }

  .home-page .faq-editorial-note {
    max-width: 42ch;
    color: rgba(80, 97, 114, 0.88);
    font-size: 1rem;
    font-weight: 430;
    line-height: 1.7;
  }

  .home-page .faq-grid {
    width: 100%;
    max-width: none;
    margin-top: 12px;
    border-top: 0;
    counter-reset: faq-item;
  }

  .home-page .faq-grid details {
    counter-increment: faq-item;
    border-bottom: 1px solid rgba(32, 41, 54, 0.13);
  }

  .home-page .faq-grid summary {
    grid-template-columns: 48px minmax(0, 1fr) 18px;
    min-height: 86px;
    gap: 20px;
    padding: 24px 0;
  }

  .home-page .faq-grid summary::before {
    content: counter(faq-item, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(184, 50, 97, 0.13);
    border-radius: 999px;
    background: rgba(184, 50, 97, 0.07);
    color: var(--accent-strong);
    font-family: var(--body-font);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.04em;
  }

  .home-page .faq-grid p {
    max-width: 780px;
    margin: -8px 0 30px 68px;
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    position: relative;
    overflow: hidden;
    padding: 22px 16px 20px;
    border: 1px solid rgba(32, 41, 54, 0.075);
    border-radius: 28px;
    background:
      radial-gradient(circle at 94% 8%, rgba(184, 50, 97, 0.13), transparent 31%),
      radial-gradient(circle at 12% 58%, rgba(236, 172, 76, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(249, 244, 236, 0.88));
    box-shadow: 0 20px 54px rgba(24, 39, 54, 0.07);
  }

  .home-page .hero-copy {
    display: grid;
    gap: 0;
  }

  .home-page .hero .eyebrow {
    justify-self: start;
    margin-bottom: 12px;
  }

  .home-page .hero h1 {
    max-width: 21ch;
    margin-inline: 0;
    color: var(--navy-deep);
    font-size: clamp(1.62rem, 6.8vw, 1.98rem);
    line-height: 1.02;
    text-align: left;
  }

  .home-page .hero-lead {
    margin-top: 14px;
    color: rgba(22, 35, 50, 0.86);
    font-size: 0.98rem;
    font-weight: 430;
    line-height: 1.55;
  }

  .home-page .hero-mobile-proof-card {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid rgba(32, 41, 54, 0.075);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 32px rgba(24, 39, 54, 0.06);
  }

  .home-page .hero-mobile-proof-row {
    display: grid;
    grid-template-columns: 1fr 34px 1fr;
    gap: 8px;
    align-items: center;
  }

  .home-page .hero-mobile-proof-row::before {
    content: "";
    order: 2;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 50, 97, 0.35), rgba(29, 59, 83, 0.35));
  }

  .home-page .hero-mobile-proof-row span {
    display: grid;
    min-height: 74px;
    place-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(248, 243, 234, 0.9);
    color: rgba(80, 97, 114, 0.84);
    font-size: 0.78rem;
    font-weight: 660;
    line-height: 1.15;
    text-align: center;
  }

  .home-page .hero-mobile-proof-row span:first-child {
    order: 1;
  }

  .home-page .hero-mobile-proof-row span:last-child {
    order: 3;
  }

  .home-page .hero-mobile-proof-row span:first-child {
    border: 1px solid rgba(184, 50, 97, 0.16);
  }

  .home-page .hero-mobile-proof-row span:last-child {
    border: 1px solid rgba(42, 116, 83, 0.16);
  }

  .home-page .hero-mobile-proof-row strong {
    display: block;
    color: var(--navy-deep);
    font-family: var(--display-font);
    font-size: 1.7rem;
    letter-spacing: -0.045em;
    line-height: 0.95;
  }

  .home-page .hero-mobile-proof-card p {
    margin: 0;
    color: rgba(80, 97, 114, 0.9);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
  }

  .home-page .hero-mobile-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
  }

  .home-page .hero-mobile-assurance li {
    flex: 1 1 calc(50% - 7px);
    min-width: 132px;
    padding: 8px 10px;
    border: 1px solid rgba(184, 50, 97, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: rgba(22, 35, 50, 0.86);
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
  }

  .home-page .hero-quick-form {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(24, 39, 54, 0.065);
  }

  .home-page .hero-actions {
    justify-content: stretch;
  }

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

  .home-page .situation-card-label {
    display: block;
    margin-bottom: 5px;
    color: var(--accent-strong);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.075em;
    line-height: 1;
    text-transform: uppercase;
  }

  .home-page .situation-card summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 5px 12px;
    align-items: center;
  }

  .home-page .situation-card summary::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .home-page .situation-card summary h3 {
    grid-column: 1;
  }

  .home-page .situation-card-label {
    grid-column: 1;
  }

  .home-page .situation-card-dark .situation-card-label {
    color: var(--accent-strong);
  }

  .home-page .faq {
    scroll-margin-top: calc(var(--sticky-header-offset) + 18px);
    padding: 40px 16px;
    border: 1px solid rgba(32, 41, 54, 0.075);
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, rgba(184, 50, 97, 0.09), transparent 32%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(249, 244, 236, 0.88));
  }

  .home-page .faq .section-heading,
  .home-page .faq .section-heading h2,
  .home-page .faq .section-heading p,
  .home-page .faq #faq-title {
    width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  .home-page .faq-editorial-note {
    max-width: 34ch;
    color: rgba(80, 97, 114, 0.86);
    font-size: 0.94rem;
    font-weight: 430;
    line-height: 1.55;
  }

  .home-page .faq-grid {
    counter-reset: faq-item;
  }

  .home-page .faq-grid details {
    counter-increment: faq-item;
  }

  .home-page .faq-grid summary {
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    gap: 12px;
  }

  .home-page .faq-grid summary::before {
    content: counter(faq-item, decimal-leading-zero);
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(184, 50, 97, 0.08);
    color: var(--accent-strong);
    font-size: 0.68rem;
    font-weight: 760;
  }

  .home-page .faq-grid p {
    margin-left: 46px;
  }
}

/* SEO mobile conversion polish: compact perceived length without removing SEO content. */
@media (max-width: 760px) {
  .seo-page {
    padding-bottom: 10px;
  }

  .seo-page .seo-hero-landing {
    gap: 12px;
  }

  .seo-page .seo-hero-copy,
  .seo-page .seo-verify-panel,
  .seo-page .seo-content-card,
  .seo-page .seo-cta-card {
    padding: 16px;
    border-radius: 22px;
  }

  .seo-page .seo-hero-copy {
    gap: 12px;
  }

  .seo-page .seo-hero-copy h1 {
    max-width: 18ch;
  }

  .seo-page .seo-hero-copy > p:not(.eyebrow):not(.seo-lead) {
    line-height: 1.55;
  }

  .seo-page .seo-situation-proof {
    margin-top: 2px;
    padding: 12px;
  }

  .seo-page .seo-proof-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .seo-page .seo-proof-steps::-webkit-scrollbar {
    display: none;
  }

  .seo-page .seo-proof-steps span {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .seo-page .seo-proof-steps:focus-visible,
  .seo-page .seo-check-list:focus-visible {
    outline: 3px solid rgba(184, 50, 97, 0.34);
    outline-offset: 4px;
    border-radius: 16px;
  }

  .seo-page-sensitive .seo-proof-steps:focus-visible,
  .seo-page-sensitive .seo-check-list:focus-visible {
    outline-color: rgba(32, 56, 79, 0.34);
  }

  .seo-page .seo-form-context {
    margin-top: 2px;
    padding: 11px 12px;
    border-radius: 15px;
  }

  .seo-page .seo-quick-form {
    gap: 9px;
    padding: 12px;
    border-radius: 20px;
  }

  .seo-page .seo-quick-form .form-field {
    gap: 5px;
  }

  .seo-page .seo-quick-form label {
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .seo-page .seo-quick-form input,
  .seo-page .seo-quick-form button {
    min-height: 50px;
    border-radius: 16px;
  }

  .seo-page .seo-form-note {
    margin-top: -2px;
  }

  .seo-page .seo-actions {
    margin-top: 0;
  }

  .seo-page .seo-actions .secondary-link {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .seo-page .seo-check-list,
  .seo-page .seo-related-card-grid {
    display: flex;
    gap: 10px;
    margin-inline: -16px;
    padding: 2px 16px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .seo-page .seo-check-list::-webkit-scrollbar,
  .seo-page .seo-related-card-grid::-webkit-scrollbar {
    display: none;
  }

  .seo-page .seo-check-list li,
  .seo-page .seo-related-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .seo-page .seo-check-list li {
    min-height: 0;
    padding: 11px 12px 11px 38px;
    border-radius: 16px;
  }

  .seo-page .seo-check-list li::before {
    top: 12px;
  }

  .seo-page .seo-verify-panel .seo-check-list li {
    flex-basis: 86%;
  }

  .seo-page .seo-takeover-block,
  .seo-page .seo-documents-block,
  .seo-page .seo-related-section,
  .seo-page .seo-faq-section {
    padding: 16px;
  }

  .seo-page .seo-context-block,
  .seo-page .seo-why-block {
    padding: 18px 16px;
  }

  .seo-page .seo-section-heading {
    gap: 6px;
    margin-bottom: 10px;
  }

  .seo-page .seo-proof-showcase {
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .seo-page .seo-proof-visual {
    display: flex;
    gap: 9px;
    margin-inline: -4px;
    padding: 4px 4px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: 0;
    box-shadow: none;
    scrollbar-width: none;
  }

  .seo-page .seo-proof-visual::-webkit-scrollbar {
    display: none;
  }

  .seo-page .seo-proof-visual span {
    flex: 0 0 72%;
    min-height: 52px;
    scroll-snap-align: start;
  }

  .seo-page-sensitive .seo-proof-showcase {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
      linear-gradient(135deg, #263849, #182b3d);
  }

  .seo-page .seo-inline-cta {
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
  }

  .seo-page .seo-inline-cta .button,
  .seo-page .seo-cta-card .button {
    display: none;
  }

  .seo-page .seo-cta-card {
    gap: 9px;
    padding-bottom: 18px;
  }

  .seo-page .seo-faq {
    margin-top: 12px;
    border-top-width: 1px;
  }

  .seo-page .seo-faq details {
    border-bottom-width: 1px;
    border-radius: 0;
  }

  .seo-page .seo-faq summary {
    min-height: 58px;
    padding: 14px 0;
    gap: 12px;
    font-weight: 570;
  }

  .seo-page .seo-faq summary::after {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
  }

  .seo-page .seo-faq p {
    margin: -2px 0 16px;
    line-height: 1.58;
  }
}

/* Legal pages: readable policy layout, grouped content and fewer isolated lines. */
.legal-page {
  width: min(calc(100% - 32px), 980px);
  max-width: 980px;
  padding: 52px 0 88px;
  color: var(--navy-deep);
  text-align: left;
}

.legal-page > .brand {
  margin-bottom: 16px;
}

.legal-hero {
  margin: 22px 0 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(180, 45, 105, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 45, 105, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 244, 0.92));
  box-shadow: 0 22px 60px rgba(20, 35, 52, 0.08);
}

.legal-kicker {
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.legal-page h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--display-font);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--navy-deep);
  text-align: left;
}

.legal-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: left;
}

.legal-updated {
  margin: 16px 0 0;
  color: rgba(32, 41, 54, 0.62);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.legal-chapter {
  margin-top: 34px;
}

.legal-chapter > h2,
.legal-page > .legal-section > h2 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--navy-deep);
  text-align: left;
}

.legal-section {
  margin: 16px 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(21, 37, 54, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 38px rgba(20, 35, 52, 0.055);
}

.legal-section h2,
.legal-section h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  text-align: left;
}

.legal-section h2 {
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-section h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 800;
}

.legal-page p,
.legal-page li,
.legal-page dd {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
  text-align: left;
}

.legal-page p {
  margin: 0;
}

.legal-page p + p,
.legal-page ul + p,
.legal-page dl + p {
  margin-top: 12px;
}

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

.legal-list li {
  position: relative;
  padding-left: 22px;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-blue, #b83261);
}

.legal-info-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.legal-info-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(21, 37, 54, 0.08);
}

.legal-info-list dt {
  color: var(--navy-deep);
  font-weight: 800;
}

.legal-info-list dd {
  margin: 0;
}

.legal-page a {
  color: var(--accent-blue, #b83261);
  font-weight: 750;
}

.legal-table-wrap {
  width: 100%;
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid rgba(21, 37, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(21, 37, 54, 0.08);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--navy-deep);
  font-weight: 800;
  background: rgba(248, 243, 234, 0.72);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .legal-page {
    width: min(calc(100% - 24px), 980px);
    padding: 28px 0 58px;
  }

  .legal-hero {
    padding: 22px;
    border-radius: 26px;
  }

  .legal-page h1 {
    max-width: none;
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .legal-intro {
    font-size: 1rem;
    line-height: 1.58;
  }

  .legal-section {
    padding: 18px;
    border-radius: 22px;
  }

  .legal-info-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .legal-table {
    min-width: 580px;
  }
}

/* SEO desktop layout QA pass: keep pages premium without touching the homepage. */
@media (min-width: 981px) {
  .seo-page .seo-hero-landing {
    align-items: start;
    gap: clamp(22px, 2.2vw, 34px);
  }

  .seo-page .seo-hero-copy,
  .seo-page .seo-verify-panel {
    align-self: start;
    height: auto;
    min-height: 0;
  }

  .seo-page .seo-hero-copy > * {
    max-width: 100%;
    min-width: 0;
  }

  .seo-page .seo-hero-copy h1 {
    max-width: min(100%, 15.5ch);
  }

  .seo-page .seo-lead,
  .seo-page .seo-hero-copy > p:not(.eyebrow):not(.seo-lead),
  .seo-page .seo-form-context,
  .seo-page .seo-form-note,
  .seo-page .seo-situation-proof {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .seo-page .seo-verify-panel .seo-check-list {
    grid-template-columns: 1fr;
  }

  .seo-page .seo-quick-form {
    width: 100%;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(205px, 1.2fr);
    gap: 14px 16px;
    align-items: end;
    padding: 18px;
  }

  .seo-page .seo-quick-form .form-field,
  .seo-page .seo-quick-form .phone-field,
  .seo-page .seo-quick-form .callback-slot-field {
    min-width: 0;
  }

  .seo-page .seo-quick-form .callback-slot-field {
    grid-column: auto;
  }

  .seo-page .seo-quick-form input,
  .seo-page .seo-quick-form select {
    min-width: 0;
  }

  .seo-page .seo-quick-form button,
  .seo-page .seo-quick-form .button {
    grid-column: 1 / -1;
    justify-self: start;
    align-self: end;
    width: auto;
    min-width: min(100%, 300px);
    max-width: 100%;
    min-height: 56px;
    margin-top: 0;
    padding-inline: 26px;
    line-height: 1.16;
    white-space: normal;
  }

  .seo-page .seo-landing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(22px, 2.4vw, 36px);
  }

  .seo-page .seo-content-card {
    display: grid;
    gap: clamp(18px, 2vw, 28px);
  }

  .seo-page .seo-cta-card {
    width: min(100%, 880px);
    min-height: 0;
    margin-inline: auto;
    padding: clamp(26px, 3vw, 38px);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .seo-page .seo-cta-card h2,
  .seo-page .seo-cta-card p {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .seo-page .seo-cta-card .button {
    width: auto;
    min-width: min(100%, 320px);
    max-width: 100%;
    align-self: center;
    justify-content: center;
    padding-inline: 26px;
    line-height: 1.16;
    white-space: normal;
  }

  .seo-page .seo-inline-cta {
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
    gap: 20px;
    align-items: center;
  }

  .seo-page .seo-inline-cta .button,
  .seo-page .seo-inline-cta .primary-link {
    max-width: 360px;
    padding-inline: 24px;
    line-height: 1.16;
    white-space: normal;
    text-align: center;
  }

  .seo-page .seo-related-card-grid {
    align-items: stretch;
    gap: 16px;
  }

  .seo-page .seo-related-card {
    min-height: 100%;
    grid-template-rows: auto 1fr auto;
    align-content: start;
  }

  .seo-page .seo-related-card strong::before {
    display: block;
    width: fit-content;
    margin: 0 0 8px;
  }

  .seo-page .seo-related-card::after {
    align-self: end;
  }

  .seo-page .seo-faq-section {
    width: 100%;
  }
}

@media (min-width: 981px) and (max-width: 1499px) {
  .seo-page .seo-hero-landing {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-page .seo-verify-panel {
    max-width: none;
  }
}

@media (min-width: 1181px) {
  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(5):last-child) {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(5):last-child) .seo-related-card {
    grid-column: span 2;
  }

  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(5):last-child) .seo-related-card:nth-last-child(-n + 2) {
    grid-column: span 3;
  }

  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(6):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  .seo-page .seo-hero-landing {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  }
}

@media (min-width: 1680px) {
  .seo-page .seo-hero-landing {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.68fr);
  }
}

/* SEO 19-page correction pass: shared polish across desktop, tablet and mobile. */
.seo-page .button-primary,
.seo-page .seo-quick-form button,
.seo-page .seo-inline-cta .primary-link,
.seo-page .seo-cta-card .primary-link,
.seo-page .mobile-sticky-cta .button {
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.14;
}

.seo-page .seo-quick-form {
  align-items: start;
}

.seo-page .seo-quick-form .form-field,
.seo-page .seo-quick-form .phone-field,
.seo-page .seo-quick-form .callback-slot-field {
  display: grid;
  grid-template-rows: auto minmax(52px, auto) minmax(1.05em, auto);
  gap: 7px;
  align-content: start;
  min-width: 0;
}

.seo-page .seo-quick-form label,
.seo-page .seo-quick-form .phone-field > label,
.seo-page .seo-quick-form .callback-slot-field > span {
  min-height: 1.3em;
  margin: 0;
  color: var(--title-primary);
  font-weight: 680;
  line-height: 1.25;
}

.seo-page .seo-quick-form input,
.seo-page .seo-quick-form select {
  width: 100%;
  height: 52px;
  min-height: 52px;
  line-height: normal;
}

.seo-page .seo-quick-form .form-field:not(:has(.form-error))::after {
  display: block;
  min-height: 1.05em;
  content: "";
}

.seo-page .seo-quick-form button,
.seo-page .seo-quick-form .button {
  min-height: 52px;
  border-radius: 999px;
  text-align: center;
}

.seo-page .seo-actions .secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(32, 41, 54, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 620;
  text-decoration: none;
}

.seo-page .seo-actions .secondary-link:hover,
.seo-page .seo-actions .secondary-link:focus-visible {
  border-color: rgba(184, 50, 97, 0.24);
  color: #9f2752;
}

.seo-page-sensitive .seo-actions .secondary-link:hover,
.seo-page-sensitive .seo-actions .secondary-link:focus-visible {
  border-color: rgba(32, 41, 54, 0.22);
  color: #23384d;
}

.seo-page .seo-hero-copy::after,
.seo-page .seo-cta-card::after {
  opacity: 0.58;
}

.seo-page-sensitive .seo-hero-copy,
.seo-page-sensitive .seo-cta-card,
.seo-page-sensitive .seo-faq-section {
  background-color: rgba(255, 255, 255, 0.88);
}

.seo-page .seo-related-card,
.seo-page .seo-micro-card,
.seo-page .seo-check-list li {
  align-content: start;
}

@media (min-width: 1181px) {
  .seo-page .seo-quick-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(230px, 1.1fr);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .home-page .hero-quick-form,
  .seo-page .seo-quick-form {
    align-items: start;
  }

  .home-page .hero-quick-form .button,
  .seo-page .seo-quick-form button,
  .seo-page .seo-quick-form .button {
    width: auto;
    min-width: min(100%, 280px);
    max-width: 360px;
    justify-self: start;
    font-weight: 650;
  }

  .seo-page .seo-hero-landing {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .seo-page .seo-hero-copy h1 {
    max-width: min(100%, 20ch);
  }

  .seo-page .seo-verify-grid,
  .seo-page .seo-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-page .seo-related-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(3):last-child) .seo-related-card:last-child,
  .seo-page .seo-related-card-grid:has(.seo-related-card:nth-child(5):last-child) .seo-related-card:last-child {
    grid-column: 1 / -1;
  }

  .seo-page .seo-content-card {
    gap: 20px;
  }

  .seo-context-block,
  .seo-why-block,
  .seo-takeover-block,
  .seo-documents-block,
  .seo-related-section,
  .seo-faq-section {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .home-page .hero-quick-form {
    grid-template-columns: 1fr;
  }

  .home-page .hero-quick-form label,
  .home-page .hero-quick-form .phone-field,
  .home-page .hero-quick-form .callback-slot-field,
  .home-page .hero-quick-form .button,
  .home-page .hero-quick-form .call-form-status {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .home-page .hero-quick-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .home-page .hero-quick-form label,
  .home-page .hero-quick-form .phone-field,
  .home-page .hero-quick-form .callback-slot-field {
    min-width: 0;
  }

  .home-page .hero-quick-form .button,
  .home-page .hero-quick-form .call-form-status {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .seo-page .seo-hero-landing {
    gap: 10px;
    padding-top: 14px;
  }

  .seo-page .seo-hero-copy,
  .seo-page .seo-verify-panel,
  .seo-page .seo-content-card,
  .seo-page .seo-cta-card {
    padding: 14px;
    border-radius: 20px;
  }

  .seo-page .seo-hero-copy {
    gap: 10px;
  }

  .seo-page .seo-hero-copy h1 {
    max-width: 16.5ch;
    font-size: clamp(2.05rem, 9.5vw, 2.72rem);
    line-height: 0.98;
  }

  .seo-page .seo-lead {
    font-size: 1rem;
    line-height: 1.42;
  }

  .seo-page .seo-hero-copy > p:not(.eyebrow):not(.seo-lead),
  .seo-page .seo-form-context,
  .seo-page .seo-form-note,
  .seo-page .seo-cta-note,
  .seo-page .seo-sensitive-note {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .seo-page .seo-quick-form {
    gap: 8px;
    padding: 11px;
  }

  .seo-page .seo-quick-form .form-field,
  .seo-page .seo-quick-form .phone-field,
  .seo-page .seo-quick-form .callback-slot-field {
    grid-template-rows: auto minmax(48px, auto) minmax(0.85em, auto);
    gap: 5px;
  }

  .seo-page .seo-quick-form input,
  .seo-page .seo-quick-form select,
  .seo-page .seo-quick-form button,
  .seo-page .seo-quick-form .button {
    min-height: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .seo-page .seo-quick-form button,
  .seo-page .seo-quick-form .button {
    font-size: 0.98rem;
    font-weight: 650;
  }

  .seo-page .seo-hero-assurance span,
  .seo-page .seo-proof-steps span {
    min-height: 29px;
    padding: 5px 9px;
    font-size: 0.76rem;
  }

  .seo-page .seo-related-card,
  .seo-page .seo-check-list li {
    flex-basis: 78%;
    padding: 13px 14px;
  }

  .seo-page .seo-check-list li {
    padding-left: 36px;
  }

  .seo-page .seo-related-card strong {
    font-size: 0.96rem;
    line-height: 1.14;
  }

  .seo-page .seo-related-card span,
  .seo-page .seo-check-list li {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .seo-page .seo-context-block,
  .seo-page .seo-why-block,
  .seo-page .seo-takeover-block,
  .seo-page .seo-documents-block,
  .seo-page .seo-related-section,
  .seo-page .seo-faq-section {
    padding: 14px;
    border-radius: 20px;
  }

  .seo-page .seo-proof-showcase {
    padding: 14px;
  }

  .seo-page .seo-inline-cta {
    min-height: 0;
    padding: 14px;
  }

  .seo-page .seo-faq summary {
    min-height: 50px;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 560;
    line-height: 1.3;
  }

  .seo-page .seo-faq p {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .mobile-sticky-cta {
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding: 7px 12px calc(7px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta .button {
    min-height: 44px;
    font-size: 0.96rem;
    font-weight: 650;
  }

  .cookie-consent-banner {
    gap: 12px;
    padding: 14px;
  }

  .cookie-consent-banner h2 {
    font-size: 1.2rem;
  }

  .cookie-consent-banner p {
    font-size: 0.84rem;
    line-height: 1.42;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .cookie-consent-banner {
    gap: 14px;
    padding: 16px;
  }

  .cookie-consent-banner h2 {
    font-size: 1.3rem;
  }

  .cookie-consent-banner p {
    font-size: 0.9rem;
  }
}

@media (max-width: 760px) {
  .seo-page .seo-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.92rem, 8.9vw, 2.42rem);
  }

  .seo-page .seo-quick-form .form-field,
  .seo-page .seo-quick-form .phone-field,
  .seo-page .seo-quick-form .callback-slot-field {
    grid-template-rows: auto minmax(48px, auto);
  }

  .seo-page .seo-quick-form .field-error,
  .seo-page .seo-quick-form .form-error {
    min-height: 0;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .seo-page .seo-quick-form .form-field:not(:has(.form-error))::after {
    display: none;
  }

  .seo-page .seo-situation-proof {
    gap: 7px;
    margin-top: 0;
    padding: 11px;
    border-radius: 18px;
  }

  .seo-page .seo-situation-proof p {
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .seo-proof-kicker {
    font-size: 0.66rem;
  }

  .seo-page .seo-proof-steps {
    gap: 6px;
  }

  .seo-page .seo-proof-steps span {
    min-height: 27px;
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .seo-page .seo-form-context {
    padding: 9px 10px;
  }

  .seo-page .seo-form-note {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .seo-page .seo-verify-panel {
    gap: 8px;
  }

  .seo-page .seo-verify-panel h2 {
    font-size: clamp(1.38rem, 6.8vw, 1.72rem);
    line-height: 1.04;
  }

  .seo-page .seo-verify-panel > p:not(.seo-card-kicker) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@supports (content-visibility: auto) {
  .section:not(.hero),
  .seo-page main > section:not(.seo-hero-landing),
  .legal-section,
  .legal-chapter {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }

  .hero,
  .section.proof,
  .seo-page .seo-hero-landing,
  .site-header,
  .cookie-consent-banner,
  .mobile-sticky-cta {
    content-visibility: visible;
  }
}

@media (max-width: 760px) {
  .ambient {
    filter: blur(34px);
    opacity: 0.38;
  }

  .site-header,
  .mobile-sticky-cta,
  .cookie-consent-banner,
  .cookie-panel-card {
    backdrop-filter: none !important;
  }

  .seo-page .seo-quick-form,
  .seo-page .seo-content-card,
  .seo-page .seo-cta-card,
  .seo-page .seo-inline-cta,
  .seo-page .seo-proof-showcase,
  .cookie-consent-banner,
  .cookie-panel-card {
    box-shadow: 0 16px 38px rgba(17, 37, 55, 0.08);
  }

  .proof-mobile-split {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .proof-mobile-split {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 88%);
    align-items: start;
  }

  .proof-split-frame {
    width: 100%;
    aspect-ratio: 1.65 / 1;
  }

  .proof-split-picture {
    width: 100%;
    height: 100%;
  }

  .proof-image-card .proof-split-image {
    height: 100%;
    object-fit: cover;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.lead-honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
