/* Visa Tuya — official, calm, procedural */

:root {
  --navy: #16233f;
  --navy-mid: #132a4a;
  --navy-soft: #1a3558;
  --navy-footer: #0f1830;
  --ink: #2b2b28;
  --ink-muted: #6b6858;
  --ink-faint: #928d7c;
  --paper: #fbfaf7;
  --paper-soft: #f1ede3;
  --paper-rule: #e4e0d6;
  --paper-border: #ddd7c8;
  --gold: #c9a25c;
  --gold-hover: #b8924f;
  --gold-soft: #f4e9d8;
  --gold-text: #8a5a2b;
  --success: #4c7355;
  --danger: #8b3a3a;
  --serif: "PT Serif", Georgia, "Times New Roman", serif;
  --sans: "PT Sans", "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --space: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

button, input, select, textarea {
  font: inherit;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

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

.section--navy {
  background: var(--navy);
  color: #e8edf4;
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 36rem;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy-soft);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--paper-rule);
  color: var(--navy);
}

.btn--outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Site header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-rule);
}

.site-header.is-open {
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 4.25rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--navy);
}

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

.brand__mark {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand__name span {
  font-weight: 400;
  color: var(--ink-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.nav a:not(.btn):hover {
  color: var(--navy);
}

.nav > a:not(.btn):nth-last-child(2) {
  margin-left: 0.15rem;
  padding-left: 1.35rem;
  border-left: 1px solid var(--paper-rule);
}

.nav__cta {
  margin-left: 0.15rem;
}

.nav .btn--navy {
  padding: 0.62rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav .btn--navy:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--paper-rule);
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  border-radius: 2px;
}

/* ── Hero ── */

.hero {
  background: var(--navy);
  color: #e8edf4;
  padding: 3.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.02) 18px,
    rgba(255, 255, 255, 0.02) 19px
  );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 26rem;
  gap: 2rem 2.5rem;
  align-items: start;
  padding-bottom: 3.5rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.05rem, 3.8vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 22ch;
  margin-bottom: 1.15rem;
}

.hero__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4c4a0;
  margin-bottom: 0.85rem;
}

.hero-price-compare {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  max-width: 28rem;
}

.hero-price-compare > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
  color: #e8edf4;
}

.hero-price-compare__label {
  font-size: 0.88rem;
  color: #9aabc2;
}

.hero-price-compare strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.hero-price-compare p {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: #c5d0df;
}

.hero__h1-sub {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  color: #d4c4a0;
}

.repeat-line {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #e8edf4;
  margin: 1rem 0 1.25rem;
  line-height: 1.35;
}

.get-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.get-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.85rem 1rem;
  border: 1px solid var(--paper-rule);
  background: var(--paper);
}

.get-list .mark {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pillar {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--paper-rule);
  background: var(--paper);
}

.pillar__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.pillar p {
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

.pillar strong {
  color: var(--navy);
  font-weight: 600;
}

.section-closer--center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.speed-flow {
  list-style: none;
  max-width: 420px;
  margin: 0 auto;
  counter-reset: speed;
}

.speed-flow li {
  position: relative;
  padding: 0 0 2rem 0;
  text-align: center;
  counter-increment: speed;
}

.speed-flow li:not(:last-child)::after {
  content: "↓";
  display: block;
  margin-top: 1.15rem;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
}

.speed-flow strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.speed-flow span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-card__repeat {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.price-card__compare {
  margin: -0.5rem 0 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.final-cta__repeat {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #d4c4a0;
  margin-bottom: 0.75rem;
}

.explain-lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--navy);
  line-height: 1.4;
  margin: 0.85rem 0 1rem;
}

.explain-body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-copy p {
  font-size: 1.08rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.about-copy__repeat {
  font-family: var(--serif);
  font-size: 1.25rem !important;
  color: var(--navy) !important;
  margin-top: 0.5rem;
}

.help-list {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--paper-rule);
  background: var(--paper-soft);
}

.help-list__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.85rem;
}

.help-list ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.help-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--navy);
  font-weight: 500;
}

.help-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.section-closer {
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.45;
}

.exist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--paper-rule);
  background: var(--paper);
}

.exist-col {
  padding: 2rem 1.75rem;
}

.exist-col + .exist-col {
  border-left: 1px solid var(--paper-rule);
}

.exist-col--ours {
  background: var(--gold-soft);
}

.exist-col h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
  color: var(--ink-muted);
}

.exist-col--ours h3 {
  color: var(--gold);
}

.exist-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exist-col li {
  font-size: 1.05rem;
  color: var(--ink);
  padding-left: 1.1rem;
  position: relative;
}

.exist-col li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--ink-faint);
}

.exist-col--ours li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.include-item__benefit {
  margin-top: 0.85rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid var(--paper-rule);
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
}

.process-flow__time {
  display: block !important;
  margin-top: 0.25rem;
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

.final-cta__reassure {
  margin-top: 1.15rem;
  font-size: 0.95rem;
  color: #c5d0df;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--paper-rule);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--paper-rule);
  font-size: 1rem;
}

.compare-table th {
  background: var(--paper-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.compare-table th:last-child {
  background: var(--gold-soft);
  color: var(--gold);
}

.compare-table td:last-child {
  background: #fbf8f1;
  font-weight: 600;
  color: var(--navy);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.process-flow {
  list-style: none;
  max-width: 520px;
  margin: 0 auto;
  counter-reset: step;
}

.process-flow li {
  position: relative;
  padding: 0 0 1.75rem 2.5rem;
  border-left: 2px solid var(--paper-rule);
  counter-increment: step;
}

.process-flow li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.process-flow li::before {
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  top: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-flow strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.process-flow span {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.process-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-cta p {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.parity__sub {
  font-family: var(--sans) !important;
  font-size: 0.95rem !important;
  color: var(--ink-muted) !important;
  margin: -0.5rem 0 1.25rem !important;
}

.final-cta__price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  color: #c5d0df;
  font-size: 0.95rem;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #c5d0df;
  max-width: 34rem;
  margin-bottom: 0.75rem;
}

.hero__sub strong {
  color: #fff;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero__emotion {
  margin-top: 1rem;
  font-size: 1rem;
  color: #b7c4d6;
  max-width: 36rem;
}

.hero__cta-note {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #9aabc2;
}

.hero__checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  max-width: 32rem;
}

.hero__checks li {
  font-size: 0.92rem;
  color: #d5deea;
  font-weight: 500;
  line-height: 1.4;
}

.hero__urgency {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: #c5d0df;
  max-width: 32rem;
  line-height: 1.55;
}

.trust-pillars {
  background: var(--paper);
  border-bottom: 1px solid var(--paper-rule);
  padding: 1.15rem 0;
}

.trust-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-pillars__grid div {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 0.5rem;
}

.audience-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.audience-grid li {
  border: 1px solid var(--paper-rule);
  background: var(--paper);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}

.audience-grid .mark {
  color: var(--success);
}

.mexico-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.mexico-item {
  border: 1px solid var(--paper-rule);
  background: var(--paper);
  padding: 1.75rem 1.5rem;
}

.mexico-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.mexico-item p {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.parity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--paper-rule);
  background: var(--paper);
}

.parity__col {
  padding: 2rem 1.75rem;
}

.parity__col + .parity__col {
  border-left: 1px solid var(--paper-rule);
}

.parity__col--ours {
  background: var(--gold-soft);
}

.parity__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}

.parity__col--ours .parity__label {
  color: var(--gold);
}

.parity ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.parity li {
  display: flex;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--ink);
}

.parity .mark {
  color: var(--success);
  font-weight: 700;
}

.parity__price {
  margin-top: 2rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--navy);
  background: var(--paper);
}

.parity__price p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

/* Hero embedded assessment form */

.hero-form {
  width: 100%;
  max-width: 26rem;
  margin-left: auto;
  align-self: start;
  scroll-margin-top: 5rem;
}

.hero-form__frame {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero-form__card {
  background: #fff;
  border: 2px solid #c8d0dc;
  box-shadow: inset 0 0 0 1px #fff;
}

.hero-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
}

.hero-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4c4a0;
  white-space: nowrap;
}

.hero-form__progress {
  flex: 1;
  min-width: 0;
  max-width: 9rem;
}

.hero-form__progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.35rem;
}

.hero-form__progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.2s ease;
}

.hero-form__progress-label {
  display: block;
  font-size: 0.72rem;
  color: #9aabc2;
  text-align: right;
  white-space: nowrap;
}

.hero-form__body {
  padding: 1.15rem;
  background: #f4f6f9;
  border-top: 1px solid #e4e8ef;
}

#hero-apply-root {
  padding: 1rem;
  min-height: 17rem;
  background: #fff;
  border: 1px solid #d8dde6;
  box-shadow: inset 0 1px 2px rgba(15, 35, 58, 0.04);
}

.hero-form__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.hero-form__lead {
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
  margin-bottom: 0.85rem !important;
  color: var(--ink-muted) !important;
}

.hero-form .choice-group--compact {
  gap: 0.45rem;
}

.hero-form .choice--compact {
  padding: 0.65rem 0.75rem;
  gap: 0.6rem;
  background: #fafbfc;
  border-color: #d0d7e2;
}

.hero-form .choice--compact.is-selected {
  background: #f0f4fa;
  border-color: var(--navy);
}

.hero-form .choice--compact strong {
  font-size: 0.9rem;
}

.hero-form .choice--compact small {
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-form .field {
  margin-bottom: 0.7rem;
}

.hero-form .field label {
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.hero-form .field input,
.hero-form .field select {
  height: 2.4rem;
  font-size: 0.9rem;
  background: #fafbfc;
}

.hero-form .funnel-error {
  min-height: 1rem;
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.hero-form .funnel-actions--compact {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e8ecf2;
  gap: 0.55rem;
}

.hero-form .funnel-actions--compact .btn--gold {
  flex: 1;
}

.hero-form .funnel-actions--compact .btn--outline {
  flex: 0 0 auto;
  padding-inline: 1rem;
}

.hero-form .reassure--compact {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.76rem;
  line-height: 1.4;
  border-left-color: var(--gold);
  background: #f8f9fb;
}

/* Desk composition — readable 2×2 cards */

.hero-desk {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desk-surface {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  width: 100%;
  max-width: 420px;
  padding: 1.15rem;
  background: #12283f;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.desk-card {
  background: #f7f4ee;
  color: var(--navy);
  border: 1px solid #d5cfc3;
  padding: 1rem 1.05rem;
  min-height: 148px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.desk-card--passport {
  background: #0e2a1a;
  color: #f0e6cc;
  border-color: rgba(201, 178, 122, 0.45);
  transform: rotate(-1.5deg);
}

.desk-card--form {
  transform: rotate(1.25deg);
}

.desk-card--confirm {
  background: #fff;
  transform: rotate(0.75deg);
}

.desk-card--check {
  transform: rotate(-1deg);
}

.desk-card__crest {
  width: 1.85rem;
  height: 1.85rem;
  border: 1.5px solid #c9b27a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c9b27a;
  margin-bottom: 1.35rem;
  font-size: 0.85rem;
}

.desk-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.45rem;
}

.desk-card--passport .desk-card__eyebrow {
  color: #c9b27a;
}

.desk-card__eyebrow--ok {
  color: var(--success);
}

.desk-card__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
}

.desk-card--passport .desk-card__title {
  color: #f0e6cc;
}

.desk-card__lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.desk-card__lines span {
  display: block;
  height: 3px;
  background: #d9dde5;
}

.desk-card__lines span:nth-child(2) {
  width: 78%;
}

.desk-card__lines span:nth-child(3) {
  width: 52%;
}

.desk-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  color: var(--ink-muted);
  border-bottom: 1px solid #ece7df;
}

.desk-card__row:last-child {
  border-bottom: none;
}

.desk-card__row strong {
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.desk-card__list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.desk-card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.desk-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Authority strip */

.authority-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--paper-rule);
  padding: 2rem 0 1.25rem;
}

.authority-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.authority-bar__value {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.authority-bar__label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.authority-bar__note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
}

.purpose {
  text-align: center;
}

.purpose p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: var(--navy);
}

/* Trust bar */

.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--paper-rule);
  padding: 1.15rem 0;
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
  list-style: none;
}

.trust-bar__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.trust-bar__list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: none;
}

/* Comparison */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--paper-rule);
  background: var(--paper);
}

.compare__col {
  padding: 2rem 1.75rem;
}

.compare__col + .compare__col {
  border-left: 1px solid var(--paper-rule);
}

.compare__col--ours {
  background: var(--gold-soft);
}

.compare__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}

.compare__col--ours .compare__label {
  color: var(--gold);
}

.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.compare__list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.45;
}

.compare__list .mark {
  flex: none;
  width: 1.1rem;
  font-weight: 700;
}

.compare__col--theirs .mark {
  color: var(--danger);
}

.compare__col--ours .mark {
  color: var(--success);
}

/* Included grid */

.include-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--paper-rule);
  border: 1px solid var(--paper-rule);
}

.include-grid--tall .include-item {
  padding: 2.25rem 1.85rem;
  min-height: 220px;
}

.include-item {
  background: var(--paper);
  padding: 1.75rem 1.4rem;
}

.include-item svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  margin-bottom: 1rem;
  stroke-width: 1.5;
}

.include-item h3 {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.include-item p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Timeline */

.timeline {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 3.25rem;
}

.timeline--large {
  max-width: 720px;
  padding-left: 4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  background: var(--paper-rule);
}

.timeline--large::before {
  left: 1.15rem;
  width: 2px;
  background: var(--navy);
  opacity: 0.18;
}

.timeline li {
  position: relative;
  padding-bottom: 2.25rem;
}

.timeline--large li {
  padding-bottom: 3.25rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline__num {
  position: absolute;
  left: -3.25rem;
  top: 0;
  width: 1.85rem;
  height: 1.85rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.timeline--large .timeline__num {
  left: -4rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.95rem;
}

.timeline h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.timeline--large h3 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.timeline p {
  font-size: 1.02rem;
  color: var(--ink-muted);
  max-width: 34rem;
}

.timeline__time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem !important;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  border: 1px solid var(--paper-rule);
  background: var(--paper);
  padding: 1.75rem 1.5rem;
}

.why-card__value {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--navy);
  margin-bottom: 0.55rem;
  font-weight: 600;
  line-height: 1.2;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Stats / social proof */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.stat__value {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review {
  border: 1px solid var(--paper-rule);
  background: var(--paper);
  padding: 1.5rem;
}

.review__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.review__title {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.review p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.review__meta {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.proof-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
}

/* Trust strip */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  border: 1px solid var(--paper-rule);
  background: var(--paper);
  padding: 1.35rem 1.1rem;
  text-align: center;
}

.trust-badge__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  border: 1.5px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.trust-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.trust-badge span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.trust-grid--dense {
  margin-bottom: 2rem;
}

.payment-methods {
  border-top: 1px solid var(--paper-rule);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.payment-methods__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.payment-methods__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-methods__list span {
  border: 1px solid var(--paper-rule);
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
}

/* Pricing */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.trust-item p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.pricing {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.price-card {
  border: 1px solid var(--navy);
  background: var(--paper);
  padding: 2.25rem;
}

.price-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.price-card__name {
  font-family: var(--serif);
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.price-card__amount {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin: 1.25rem 0 0.35rem;
}

.price-card__amount span {
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink-muted);
}

.price-card__note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.price-card__list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.price-card__list .mark {
  color: var(--success);
  font-weight: 700;
}

.pricing--hero {
  grid-template-columns: 1fr;
  max-width: 32rem;
  margin: 0 auto;
}

.price-card--hero {
  padding: 3rem 2.5rem;
}

.price-card--hero .price-card__amount {
  font-size: clamp(3.5rem, 7vw, 5rem);
  margin: 1.5rem 0 0.5rem;
}

.price-card--hero .price-card__name {
  font-size: 2rem;
}

.btn--large {
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
}

.price-card__fine {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

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

.guarantee--hero {
  padding: 3rem 2.5rem;
  border-color: var(--navy);
  gap: 2rem;
}

.guarantee--hero .guarantee__badge {
  width: 6rem;
  height: 6rem;
  font-size: 0.85rem;
}

.guarantee__lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--navy);
  line-height: 1.4;
  margin: 0.75rem 0 1rem;
}

.addons {
  border: 1px solid var(--paper-rule);
  padding: 1.75rem;
  background: var(--paper-soft);
}

.addons h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.addon {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--paper-rule);
  font-size: 0.92rem;
}

.addon:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.addon:first-of-type {
  padding-top: 0;
}

.addon__price {
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

.addon p {
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* Guarantee */

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  border: 1px solid var(--paper-rule);
  padding: 2rem;
  background: var(--paper);
}

.guarantee__badge {
  width: 4.5rem;
  height: 4.5rem;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.guarantee h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.guarantee p {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.guarantee p + p {
  margin-top: 0.75rem;
}

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--paper-rule);
}

.faq details {
  border-bottom: 1px solid var(--paper-rule);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink-faint);
  flex: none;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 0 1.35rem;
  color: var(--ink-muted);
  max-width: 40rem;
  font-size: 0.98rem;
}

/* Final CTA */

.final-cta {
  text-align: center;
  padding: 4.5rem 0;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.final-cta p {
  color: #c5d0df;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: #9aabc2;
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 0.85rem;
}

.site-footer .brand__mark {
  border-color: #c9b27a;
  color: #c9b27a;
}

.site-footer .brand__name span {
  color: #9aabc2;
}

.site-footer p {
  max-width: 22rem;
  line-height: 1.6;
  font-size: 0.88rem;
}

.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d5deea;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer a {
  color: #9aabc2;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* ── Funnel pages ── */

.funnel-header {
  border-bottom: 1px solid var(--paper-rule);
  background: var(--paper);
}

.funnel-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

.funnel-progress {
  padding: 1.25rem 0 0;
}

.funnel-progress__bar {
  height: 3px;
  background: var(--paper-rule);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.funnel-progress__fill {
  height: 100%;
  background: var(--navy);
  transition: width 0.25s ease;
}

.funnel-progress__label {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.funnel-main {
  padding: 2.5rem 0 4rem;
  min-height: calc(100vh - 8rem);
}

.funnel-main h1 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.funnel-lead {
  color: var(--ink-muted);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.field {
  margin-bottom: 1.35rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.field .hint {
  font-weight: 400;
  color: var(--ink-faint);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 2.85rem;
  padding: 0 0.9rem;
  border: 1px solid var(--paper-rule);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  height: auto;
  min-height: 6rem;
  padding: 0.75rem 0.9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.choice-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid var(--paper-rule);
  background: var(--paper);
  border-radius: 2px;
  cursor: pointer;
  color: var(--ink);
}

.choice:hover {
  border-color: #c5ccd6;
}

.choice.is-selected {
  border-color: var(--navy);
  background: #f7f9fc;
}

.choice__radio {
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid #b0b8c4;
  border-radius: 50%;
  flex: none;
  margin-top: 0.15rem;
  display: grid;
  place-items: center;
}

.choice.is-selected .choice__radio {
  border-color: var(--navy);
}

.choice.is-selected .choice__radio::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--navy);
  border-radius: 50%;
}

.choice strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

.choice small {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.funnel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--paper-rule);
}

.funnel-actions .btn {
  min-height: 2.75rem;
}

.funnel-error {
  color: var(--danger);
  font-size: 0.9rem;
  min-height: 1.25rem;
  margin-top: 0.75rem;
}

.reassure {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--paper-soft);
  border-left: 3px solid var(--navy);
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Summary */

.summary-box {
  border: 1px solid var(--paper-rule);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  background: var(--paper);
}

.summary-box--recommend {
  border-color: var(--navy);
  background: var(--gold-soft);
}

.summary-box--recommend h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  margin: 0.35rem 0 0.5rem;
}

.summary-box h2 {
  font-family: var(--sans);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.summary-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.summary-list .mark {
  color: var(--success);
  font-weight: 700;
}

.answers {
  list-style: none;
  border: 1px solid var(--paper-rule);
}

.answers li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--paper-rule);
  font-size: 0.92rem;
}

.answers li:last-child {
  border-bottom: none;
}

.answers dt,
.answers .k {
  color: var(--ink-muted);
}

.answers .v {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* Summary page (post-assessment) */

.summary-page {
  padding: 2.5rem 0 4rem;
}

.summary-page__inner {
  max-width: var(--max);
}

.summary-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.summary-intro h1 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.summary-stat {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 36rem;
}

.summary-stat strong {
  color: var(--navy);
  font-weight: 700;
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.summary-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.summary-offer {
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--gold-soft);
  padding: 1.75rem;
}

.summary-offer h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 0.35rem 0 0;
}

.summary-offer__price {
  margin: 1rem 0 1.25rem;
}

.summary-offer__price .price-card__amount {
  font-size: 2.75rem;
  margin-bottom: 0.35rem;
}

.summary-offer__cta {
  margin-top: 1.25rem;
}

.summary-offer__note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.summary-list--offer {
  margin-top: 0.25rem;
}

.summary-benefits h2,
.summary-proof h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}

.summary-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.summary-benefits__grid article {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: 10px;
  padding: 1.25rem;
}

.summary-benefits__icon {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.55rem;
}

.summary-benefits__grid h3 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.summary-benefits__grid p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.summary-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.summary-proof__stats div {
  text-align: center;
  background: #f8f5ee;
  border-radius: 10px;
  padding: 1rem 0.75rem;
}

.summary-proof__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.summary-proof__stats span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

.summary-reviews {
  grid-template-columns: repeat(3, 1fr);
}

.summary-guarantee {
  background: #f8f5ee;
  border-radius: 12px;
  padding: 1.5rem;
}

.summary-guarantee .guarantee--inline {
  margin: 0;
}

.summary-guarantee .section-title {
  font-size: 1.25rem;
}

.summary-answers {
  margin-bottom: 0;
}

.summary-answers summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.summary-answers summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--ink-muted);
}

.summary-answers[open] summary::after {
  content: "−";
}

.summary-answers .answers {
  margin-top: 1rem;
}

.summary-sidebar {
  min-height: 1px;
}

@media (min-width: 901px) {
  .summary-sidebar__card {
    position: fixed;
    top: 5.5rem;
    width: 300px;
    right: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
    z-index: 30;
    max-height: calc(100dvh - 6.5rem);
    overflow-y: auto;
  }
}

.summary-sidebar__card {
  border: 1px solid var(--paper-border);
  border-radius: 12px;
  background: var(--paper);
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(22, 35, 63, 0.08);
}

.summary-sidebar__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.45rem;
}

.summary-sidebar__card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.summary-sidebar__price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.summary-sidebar__price span {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.summary-sidebar__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  font-size: 0.86rem;
}

.summary-sidebar__checks li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.summary-sidebar__checks .mark {
  color: var(--success);
  font-weight: 700;
}

.summary-sidebar .btn + .btn {
  margin-top: 0.55rem;
}

/* Payment */

.pay-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.order-summary {
  border: 1px solid var(--paper-rule);
  background: var(--paper-soft);
  padding: 1.5rem;
}

.order-summary h2 {
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--paper-rule);
}

.order-line--total {
  border-bottom: none;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.addon-check {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--paper-rule);
  margin-bottom: 0.75rem;
  cursor: pointer;
  background: var(--paper);
}

.addon-check.is-on {
  border-color: var(--navy);
  background: #f7f9fc;
}

.addon-check input {
  margin-top: 0.2rem;
}

.addon-check strong {
  display: block;
  color: var(--navy);
}

.addon-check small {
  display: block;
  color: var(--ink-muted);
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.pay-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}

/* Thank you */

.thanks {
  text-align: center;
  padding: 3rem 0;
}

.thanks__icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.thanks h1 {
  margin-bottom: 0.75rem;
}

.thanks-lead {
  color: var(--ink-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.next-steps {
  text-align: left;
  border: 1px solid var(--paper-rule);
  padding: 1.75rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.next-steps h2 {
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.next-steps ol {
  padding-left: 1.25rem;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

/* ── Workspace redesign ── */

.site-header--cream {
  background: var(--paper);
}

.brand--stacked {
  align-items: center;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 0.02em;
}

.brand--footer .brand__text {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.hero--workspace {
  padding: 4rem 0 4.75rem;
  min-height: calc(100dvh - 4.25rem);
  display: flex;
  align-items: center;
}

.hero--workspace .wrap {
  width: 100%;
}

.hero--workspace::before {
  display: none;
}

.hero__grid--workspace {
  grid-template-columns: minmax(0, 480px) 460px;
  gap: clamp(2rem, 4vw, 3.5rem);
  justify-content: center;
  align-items: start;
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 0;
}

.hero--workspace h1 {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 2.625rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.hero--workspace .hero__sub {
  max-width: 34rem;
  font-size: 1.03rem;
  margin-bottom: 1.65rem;
}

.hero__copy {
  padding-top: 0.75rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0 0 0.85rem;
  font-weight: 400;
}

.hero__perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.75rem;
  max-width: 30rem;
  margin: 0 0 1.75rem;
}

.hero__perks li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  font-size: 0.9rem;
  color: #e6e8ee;
}

.btn--hero {
  border-radius: 6px;
  padding: 0.9rem 1.65rem;
  font-size: 0.97rem;
}

.btn--paper {
  background: var(--paper);
  color: var(--navy);
  border-radius: 6px;
}

.btn--paper:hover {
  background: #fff;
  color: var(--navy);
}

.hero-intake__card {
  background: var(--paper);
  border-radius: 14px;
  padding: 1.75rem 1.85rem 1.65rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-intake__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hero-intake__label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 700;
}

.hero-intake__step {
  font-size: 0.78rem;
  color: var(--ink-faint);
  white-space: nowrap;
}

.hero-intake__segments {
  display: flex;
  gap: 5px;
  margin-bottom: 1.25rem;
}

.hero-intake__segments span {
  height: 5px;
  flex: 1;
  border-radius: 3px;
  background: var(--paper-rule);
}

.hero-intake__segments .is-on {
  background: var(--navy);
}

.hero-intake__question {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.1rem;
}

.hero-intake__options {
  display: flex;
  flex-direction: column;
}

.hero-intake__option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--paper-rule);
  cursor: default;
}

.hero-intake__option:last-of-type {
  border-bottom: none;
}

.hero-intake__option input {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}

.hero-intake__option strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-intake__option small {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

.hero-intake__note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--ink-faint);
  text-align: center;
}

.hero-intake__body {
  padding: 0 0.15rem;
}

.hero-intake #hero-apply-root {
  padding: 0;
  min-height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-intake__lead {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 0.85rem;
}

.hero-intake .choice-group--compact {
  gap: 0;
}

.hero-intake .choice--compact {
  border: none;
  border-bottom: 1px solid var(--paper-rule);
  border-radius: 0;
  padding: 0.75rem 0;
  background: transparent;
}

.hero-intake .choice--compact:last-child {
  border-bottom: none;
}

.hero-intake .choice--compact:hover {
  background: transparent;
}

.hero-intake .choice--compact.is-selected {
  background: transparent;
  border-color: var(--paper-rule);
}

.hero-intake .choice--compact .choice__radio {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
}

.hero-intake .choice--compact strong {
  font-size: 0.97rem;
}

.hero-intake .choice--compact small {
  font-size: 0.84rem;
}

.hero-intake .field {
  margin-bottom: 0.85rem;
}

.hero-intake .field label {
  font-size: 0.84rem;
}

.hero-intake .field input,
.hero-intake .field select {
  font-size: 0.92rem;
  padding: 0.55rem 0.65rem;
}

.hero-intake .funnel-error {
  font-size: 0.8rem;
  color: var(--danger);
  margin: 0 0 0.5rem;
  min-height: 1.1rem;
}

.hero-intake .funnel-actions--compact {
  margin-top: 0.35rem;
  padding-top: 0;
  border-top: none;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-intake .funnel-actions--compact .btn--outline {
  width: 100%;
}

.hero-intake .reassure--compact {
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

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

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

.section--timeline {
  padding-bottom: 4.5rem;
}

.section-lead--left {
  margin-inline: 0;
}

.section-lead--light {
  color: #cfd3de;
}

.section-note {
  font-size: 0.95rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
}

.eyebrow--gold {
  color: var(--gold-text);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.reason-card {
  display: flex;
  gap: 1.1rem;
  background: #f8f5ee;
  border-radius: 12px;
  padding: 1.65rem 1.5rem;
}

.reason-card h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.reason-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5c5847;
}

.reason-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
}

.reason-card__icon--money {
  background: var(--gold-soft);
  color: var(--gold-text);
}

.reason-card__icon--time {
  background: #e8ecf3;
  position: relative;
}

.reason-card__icon--time::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 2px solid var(--navy);
  position: absolute;
}

.reason-card__icon--time::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 7px;
  background: var(--navy);
  transform: translateY(-3px);
}

.reason-card__icon--check {
  background: #e9f1ea;
  color: var(--success);
}

.reason-card__icon--star {
  background: #f7e7dc;
  color: #b3612f;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.progress-card {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: 14px;
  padding: 1.65rem;
  box-shadow: 0 12px 30px rgba(22, 35, 63, 0.1);
}

.progress-card__label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 700;
}

.progress-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.progress-card__top strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--navy);
}

.progress-card__top span {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.progress-card__bar {
  height: 8px;
  background: var(--paper-rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.progress-card__bar span {
  display: block;
  height: 100%;
  background: var(--navy);
  border-radius: 4px;
}

.progress-card__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.progress-card__steps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

.progress-card__steps li span {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1.5px solid var(--paper-border);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.progress-card__steps .is-done {
  color: var(--ink);
  font-weight: 600;
}

.progress-card__steps .is-done span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.progress-card__alert {
  background: #faf5e9;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.progress-card__alert strong {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.progress-card__alert span {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.toolkit-card {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  position: relative;
}

.toolkit-card--featured {
  border-color: var(--gold);
  background: #faf5e9;
}

.toolkit-card__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-text);
  background: var(--gold-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.toolkit-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.toolkit-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.toolkit-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.section--timeline .timeline::before {
  background: rgba(255, 255, 255, 0.15);
}

.section--timeline .timeline__num {
  background: var(--gold);
  color: var(--navy);
}

.section--timeline .timeline li strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.section--timeline .timeline li em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.compare-board {
  border: 1px solid var(--paper-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}

.compare-board__head,
.compare-board__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-board__head span {
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--paper-soft);
  color: var(--ink-muted);
}

.compare-board__head span:last-child {
  background: #faf5e9;
  color: var(--gold-text);
}

.compare-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.25rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--paper-rule);
}

.compare-mark {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.compare-mark--no {
  background: #f8efed;
  color: #9a5a52;
  border: 1px solid #ead8d4;
}

.compare-mark--yes {
  background: #e9f1ea;
  color: var(--success);
  border: 1px solid #d4e5d7;
}

.compare-cell--no {
  color: var(--ink-muted);
  background: var(--paper);
}

.compare-cell--yes {
  color: var(--ink);
  font-weight: 600;
  background: #faf5e9;
}

.audience-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

.audience-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.audience-row .mark {
  color: var(--success);
  font-weight: 700;
}

.trust-quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.trust-quad h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.trust-quad p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.section--guarantee-warm {
  background: #f8f5ee;
}

.guarantee--inline {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 52rem;
  margin: 0 auto;
}

.guarantee__badge {
  flex: none;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-text);
}

.guarantee__lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.guarantee--inline p:last-child {
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.final-cta__repeat {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #cfd3de;
  margin-bottom: 1rem;
}

.final-cta__reassure {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #9aabc2;
}

.site-footer--dark {
  background: var(--navy-footer);
}

.site-footer--dark .brand__mark {
  border-color: var(--gold);
  color: var(--gold);
}

.site-footer--dark .brand__name {
  color: #fff;
}

/* Mobile */

@media (max-width: 900px) {
  .hero__grid,
  .hero__grid--workspace,
  .compare,
  .pricing,
  .pay-layout,
  .include-grid,
  .reviews,
  .stats,
  .trust-grid,
  .trust-badges,
  .why-grid,
  .trust-pillars__grid,
  .audience-grid,
  .mexico-grid,
  .parity,
  .exist-grid,
  .get-list,
  .site-footer__grid,
  .guarantee {
    grid-template-columns: 1fr;
  }

  .include-grid,
  .why-grid,
  .trust-badges,
  .trust-pillars__grid,
  .mexico-grid,
  .audience-grid,
  .get-list,
  .pillars {
    grid-template-columns: 1fr 1fr;
  }

  .parity__col + .parity__col,
  .exist-col + .exist-col {
    border-left: none;
    border-top: 1px solid var(--paper-rule);
  }

  .compare__col + .compare__col {
    border-left: none;
    border-top: 1px solid var(--paper-rule);
  }

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

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

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

  .hero__grid--workspace {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-intake {
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-form {
    max-width: none;
    margin-left: 0;
    margin-top: 1.75rem;
  }

  #hero-apply-root {
    min-height: 0;
    padding: 0.85rem;
  }

  .hero-form__frame {
    padding: 0.35rem;
  }

  .hero-form__body {
    padding: 0.85rem;
  }

  .hero__checks {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-desk {
    max-width: 420px;
    margin-inline: auto;
  }

  .desk-surface {
    max-width: none;
  }

  .hero__checks {
    max-width: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    display: none;
  }

  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--paper-rule);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
    margin-left: 0;
  }

  .site-header.is-open .nav a:not(.btn) {
    padding: 0.55rem 0;
    white-space: normal;
  }

  .site-header.is-open .nav > a:not(.btn):nth-last-child(2) {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 0.75rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--paper-rule);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }

  .site-header.is-open .nav .btn--navy {
    width: 100%;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

  .hero--workspace {
    min-height: 0;
    padding: 2rem 0 2.5rem;
    align-items: flex-start;
  }

  .hero--workspace h1 {
    font-size: clamp(1.65rem, 5vw, 2.25rem);
  }

  .hero__copy .btn--hero {
    width: 100%;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

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

  .guarantee--inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .summary-layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .summary-sidebar {
    order: 1;
  }

  .summary-column {
    order: 2;
  }

  .summary-sidebar__card {
    position: static;
    width: auto;
    max-height: none;
    overflow: visible;
  }

  .summary-proof__stats {
    grid-template-columns: 1fr;
  }

  .summary-reviews {
    grid-template-columns: 1fr;
  }

  .summary-benefits__grid {
    grid-template-columns: 1fr;
  }

  .pay-layout {
    grid-template-columns: 1fr;
  }

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

  .funnel-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .funnel-main {
    min-height: 0;
    padding: 2rem 0 3rem;
  }

  .funnel-progress__label {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .compare-board__head,
  .compare-board__row {
    grid-template-columns: 1fr;
  }

  .compare-board__head span:last-child {
    border-top: 1px solid var(--paper-rule);
  }
}

@media (max-width: 640px) {
  .wrap,
  .wrap-narrow {
    width: min(100% - 1.5rem, var(--max));
  }

  body {
    font-size: 16px;
  }

  .site-header__inner {
    height: 3.75rem;
    gap: 1rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__tag {
    font-size: 0.62rem;
  }

  .nav-toggle {
    min-height: 2.5rem;
    min-width: 2.75rem;
  }

  .btn {
    min-height: 2.85rem;
    padding: 0.9rem 1.25rem;
  }

  .include-grid,
  .reviews,
  .stats,
  .why-grid,
  .trust-badges,
  .trust-pillars__grid,
  .audience-grid,
  .get-list,
  .pillars,
  .mexico-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero--workspace {
    padding: 1.5rem 0 2rem;
  }

  .hero-intake__card {
    padding: 1.25rem 1.15rem 1.1rem;
  }

  .hero-intake__question {
    font-size: 1.05rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
  }

  .summary-page {
    padding: 1.75rem 0 3rem;
  }

  .summary-intro {
    margin-bottom: 1.5rem;
  }

  .summary-intro h1 {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
  }

  .summary-stat {
    font-size: 0.95rem;
  }

  .summary-offer {
    padding: 1.35rem;
  }

  .summary-offer__price .price-card__amount {
    font-size: 2.35rem;
  }

  .answers li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .answers .v {
    text-align: left;
    word-break: break-word;
  }

  .compare-cell {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .compare-mark {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.65rem;
  }

  .thanks {
    padding: 2rem 0 3rem;
  }

  .thanks h1 {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
  }

  .next-steps {
    padding: 1.35rem;
  }

  .order-summary {
    margin-top: 1.5rem;
  }

  .funnel-header__inner {
    height: 3.5rem;
  }

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

  .trust-bar__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .price-card__amount,
  .price-card--hero .price-card__amount {
    font-size: 2.6rem;
  }

  .guarantee--hero {
    padding: 2rem 1.35rem;
  }

  .desk-surface {
    grid-template-columns: 1fr;
  }

  .desk-card {
    min-height: 0;
    transform: none;
  }
}
