:root {
  color-scheme: only light;
  --ink: #1b4f72;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --seal: #1e874b;
  --accent: #27ae60;
  --slate: #5c6d78;
  --slate-on-paper: #465e6c;
  --danger: #b42318;
  --white: #ffffff;
  --border: rgba(27, 79, 114, 0.18);
  --border-on-dark: rgba(255, 255, 255, 0.28);
  --container: 1200px;
  --reading: 720px;
  --header-height: 76px;
  --section-space: 112px;
  --display: "IBM Plex Sans", Arial, sans-serif;
  --sans: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: #ffffff;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#app,
main {
  background: #ffffff;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font-size: 18px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 770px;
  margin-bottom: 30px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.18;
}

h4 {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  scroll-margin-top: calc(var(--header-height) + 16px);
  background: #ffffff;
}

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

.section-grid > .section-heading {
  grid-column: 1 / span 5;
}

.section-grid > :last-child {
  grid-column: 6 / -1;
}

.section-heading {
  align-self: start;
}

.section-heading::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 32px;
  background: currentColor;
  content: "";
  opacity: 0.32;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease-out;
}

.section-heading.is-visible::after {
  transform: scaleX(1);
}

.section-heading h2:last-child {
  margin-bottom: 0;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--slate-on-paper);
}

.kicker,
.eyebrow,
.result-label,
.footer-label {
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mono {
  font-family: var(--mono);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid var(--seal);
  border-radius: 2px;
  background: var(--seal);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  filter: brightness(0.88);
}

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

.button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.45);
  opacity: 0.58;
}

.button-small {
  min-height: 46px;
  padding: 10px 17px;
}

.button svg,
.text-link svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-ink {
  border-color: var(--ink);
  background: var(--ink);
}

.button-paper {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-button {
  min-height: 44px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: 520px;
  padding: 20px;
  border: 2px solid var(--danger);
  background: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 48px), 1400px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.wordmark-logo {
  display: block;
  width: 222px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 28px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--seal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: 56px clamp(36px, 5vw, 80px) 56px max(32px, calc((100vw - var(--container)) / 2));
}

.hero-copy-inner {
  width: 100%;
  max-width: 790px;
}

.hero .eyebrow {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--seal);
}

.hero-support {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.55;
}

.hero-scope-note {
  max-width: 680px;
  margin-bottom: 28px;
  padding: 10px 0 10px 15px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 28px;
}

.hero-microcopy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--slate-on-paper);
  font-size: 16px;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  object-fit: cover;
  object-position: 66% center;
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-credit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
}

.hero-enter {
  animation: hero-in 220ms ease-out both;
}

.hero-enter-2 {
  animation-delay: 35ms;
}

.hero-enter-3 {
  animation-delay: 70ms;
}

.hero-enter-4 {
  animation-delay: 105ms;
}

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

/* Differentiators */
.differentiators {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.differentiators-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.differentiators p {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
  padding: 20px 30px;
  border-right: 1px solid var(--border);
  font-weight: 600;
}

.differentiators p:first-child {
  padding-left: 0;
}

.differentiators p:last-child {
  padding-right: 0;
  border-right: 0;
}

.differentiators .mono {
  color: var(--seal);
  font-size: 13px;
}

/* Forms and diagnostic */
.diagnostic-section {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.diagnostic-section .section-intro {
  color: var(--slate);
}

.diagnostic-workspace {
  border-top: 1px solid var(--ink);
}

.diagnostic-field {
  min-width: 0;
  margin: 0;
  padding: 31px 0 34px;
  border: 0;
  border-bottom: 1px solid var(--border);
}

.diagnostic-field legend,
.diagnostic-field > label:first-child,
.calculator-workspace form > label,
.form-field > label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  cursor: pointer;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid rgba(16, 42, 67, 0.42);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.choice:hover span {
  border-color: var(--seal);
}

.choice input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.choice input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.choice input[aria-invalid="true"] + span {
  border-color: var(--danger);
}

.date-question input[type="month"],
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 42, 67, 0.48);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

.date-question input[type="month"] {
  max-width: 320px;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--ink);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
  border-width: 2px;
}

input:disabled {
  cursor: not-allowed;
  background: var(--surface);
  opacity: 0.68;
}

.field-hint,
.privacy-note,
.process-note,
.section-disclaimer,
.legal-disclaimer,
.calculator-disclaimer {
  font-size: 16px;
  line-height: 1.55;
}

.field-hint {
  margin: -5px 0 15px;
  color: var(--slate);
}

.field-error {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.field-error::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--danger);
  content: "";
}

.inline-check,
.consent-check {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 11px;
  margin-top: 16px;
  cursor: pointer;
}

.inline-check input,
.consent-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--seal);
}

.inline-check span,
.consent-check span {
  font-size: 16px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
}

.diagnostic-result {
  margin-top: 38px;
  padding: 30px 32px;
  border-left: 4px solid var(--ink);
  background: var(--surface);
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

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

.diagnostic-result h3 {
  max-width: 640px;
}

.diagnostic-result > p:not(.kicker) {
  max-width: 660px;
  margin-bottom: 22px;
}

.diagnostic-workspace > .privacy-note {
  margin: 26px 0 0;
  color: var(--slate);
}

/* Calculator */
.calculator-section {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.calculator-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.calculator-layout > .section-heading {
  grid-column: 1 / span 5;
}

.calculator-workspace {
  grid-column: 6 / -1;
  padding: clamp(30px, 4.5vw, 58px);
  border: 1px solid var(--border);
  background: var(--white);
}

.currency-field {
  position: relative;
  margin-bottom: 2px;
}

.currency-field input {
  width: 100%;
  min-height: 68px;
  padding: 13px 84px 13px 16px;
  border: 1px solid rgba(16, 42, 67, 0.52);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}

.currency-field > span {
  position: absolute;
  top: 50%;
  right: 16px;
  font-family: var(--mono);
  font-size: 14px;
  transform: translateY(-50%);
}

.calculator-workspace form .button {
  margin-top: 25px;
}

.calculator-result {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--ink);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.calculator-result.is-updated {
  animation: result-update 250ms ease-out;
}

@keyframes result-update {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator-result dl {
  margin-bottom: 28px;
}

.calculator-result dl > div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.calculator-result dt {
  align-self: center;
  font-size: 16px;
}

.calculator-result dd {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}

.calculator-result .vat-result {
  margin-top: 10px;
  padding: 22px 0;
  border-top: 2px solid var(--seal);
  border-bottom: 2px solid var(--seal);
}

.calculator-result .vat-result dd {
  color: var(--seal);
  font-size: clamp(22px, 3vw, 30px);
}

.calculator-disclaimer {
  margin: 30px 0 0;
  color: var(--slate);
}

/* Pricing */
.pricing-section {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.pricing-layout > .section-heading {
  grid-column: 1 / span 5;
}

.pricing-content {
  grid-column: 6 / -1;
}

.pricing-summary {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-summary > div {
  padding: 28px 30px 30px 0;
}

.pricing-summary > div + div {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--border);
}

.pricing-summary dt,
.pricing-official-label {
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-summary dd {
  margin: 0;
}

.pricing-summary strong,
.pricing-summary span {
  display: block;
}

.pricing-summary strong {
  font-family: var(--display);
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-summary span {
  margin-top: 14px;
  color: var(--slate-on-paper);
  font-size: 16px;
}

.pricing-payments {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.pricing-payments li {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.6fr);
  gap: 34px;
}

.pricing-payments h3 {
  margin: 0;
  color: var(--seal);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.025em;
}

.pricing-payments p {
  margin: 0;
  color: var(--slate-on-paper);
}

.pricing-promise {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pricing-official {
  display: grid;
  margin-top: 48px;
  padding: 28px 0 0;
  border-top: 4px solid var(--accent);
  grid-template-columns: minmax(130px, 0.65fr) minmax(0, 2fr);
  gap: 34px;
}

.pricing-official-label {
  margin: 5px 0 0;
}

.pricing-official strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.pricing-official > div > p {
  max-width: 610px;
  margin: 0;
  color: var(--slate-on-paper);
}

.pricing-source {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.pricing-source svg {
  transition: transform 160ms ease;
}

.pricing-source:hover svg {
  transform: translateX(3px);
}

.pricing-official small {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: 14px;
}

/* Process */
.process-section {
  border-bottom: 1px solid var(--border);
}

.process-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.process-heading-wrap {
  grid-column: 1 / span 5;
}

.process-heading-wrap .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.process-track {
  --process-progress: 0%;
  position: relative;
  grid-column: 6 / -1;
}

.process-track::before,
.process-track::after {
  position: absolute;
  top: 11px;
  bottom: 100px;
  left: 32px;
  width: 1px;
  content: "";
}

.process-track::before {
  background: var(--border);
}

.process-track::after {
  bottom: auto;
  height: var(--process-progress);
  max-height: calc(100% - 111px);
  background: var(--seal);
  transition: height 320ms ease;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 210px;
  padding-bottom: 60px;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 26px;
}

.process-number {
  position: relative;
  width: 66px;
  margin-bottom: 0;
  padding-top: 3px;
  background: var(--paper);
  color: var(--seal);
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.process-step > div > p {
  max-width: 650px;
}

.process-promise {
  margin-top: 25px;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  font-weight: 600;
}

.process-note {
  color: var(--slate-on-paper);
}

.section-disclaimer {
  margin: 4px 0 0 92px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--slate-on-paper);
}

/* Services */
.services-section {
  background: var(--ink);
  color: var(--white);
}

.services-section .section-heading h2,
.services-section .section-heading .section-intro {
  color: var(--white);
}

.services-section .section-intro {
  opacity: 0.82;
}

.services-section .kicker {
  color: var(--white);
  opacity: 0.72;
}

.services-lead {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.services-lead .section-heading {
  grid-column: 1 / span 8;
}

.services-list {
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--border-on-dark);
  list-style: none;
  counter-reset: service;
}

.services-list li {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 17px 0;
  grid-template-columns: 82px minmax(0, 1fr);
  border-bottom: 1px solid var(--border-on-dark);
  font-size: 20px;
}

.service-number {
  font-family: var(--mono);
  font-size: 13px;
  opacity: 0.7;
}

/* Trust */
.trust-section {
  border-bottom: 1px solid var(--border);
}

.trust-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.trust-layout .section-heading {
  grid-column: 1 / span 5;
}

.review-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-column: 6 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  list-style: none;
}

.review-list li {
  min-height: 130px;
  padding: 25px 24px 25px 0;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 500;
}

.review-list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.review-list li:nth-child(even) {
  padding-left: 24px;
}

.review-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--seal);
  font-family: var(--mono);
  font-size: 13px;
}

.stats-list {
  display: grid;
  margin: 54px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--border);
}

.stats-list > div {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--border);
}

.stats-list > div:first-child {
  padding-left: 0;
}

.stats-list > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.stats-list dt {
  order: 2;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.45;
}

.stats-list dd {
  order: 1;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats-list p {
  order: 3;
  margin: 16px 0 0;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 12px;
}

/* Vehicles */
.vehicles-section {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.vehicles-section .section-intro {
  color: var(--slate);
}

.vehicles-lead {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.vehicles-lead .section-heading {
  grid-column: 1 / span 8;
}

.vehicle-types {
  margin: 58px 0 36px;
  border-top: 1px solid var(--ink);
}

.vehicle-type {
  display: grid;
  min-height: 116px;
  align-items: center;
  padding: 20px 0;
  grid-template-columns: 2fr 4fr 6fr;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.vehicle-code {
  margin-bottom: 0;
  color: var(--seal);
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
}

.vehicle-type h3,
.vehicle-type > p:last-child {
  margin-bottom: 0;
}

.vehicle-type > p:last-child {
  color: var(--slate);
}

.vehicle-type.is-caution {
  border-bottom-color: var(--danger);
}

.vehicle-type.is-caution .vehicle-code::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  background: var(--danger);
  content: "";
}

.brand-reference {
  margin-bottom: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-reference-title {
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  list-style: none;
}

.brand-grid li {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.brand-disclaimer {
  max-width: 850px;
  margin: 22px 0 0;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 16px;
}

/* Benefits */
.benefits-section {
  background: var(--seal);
  color: var(--white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.benefits-layout > .kicker {
  grid-column: 1 / span 4;
}

.benefits-layout > div {
  grid-column: 5 / -1;
}

.benefits-layout h2 {
  color: var(--white);
}

.benefits-layout > div > p {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--white);
}

/* FAQ */
.faq-section {
  border-bottom: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.faq-lead {
  grid-column: 1 / span 5;
}

.faq-lead .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-groups {
  grid-column: 6 / -1;
}

.faq-group {
  margin-bottom: 60px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group > h3 {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h4 {
  font-family: var(--sans);
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 72px;
  align-items: center;
  padding: 17px 0;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover > span:first-child {
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-plus {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 200ms ease,
    opacity 180ms ease;
}

.faq-panel.is-open {
  max-height: 1200px;
  opacity: 1;
}

.faq-panel > div {
  padding: 0 48px 24px 0;
}

.faq-panel p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--slate-on-paper);
}

/* Legal */
.legal-section {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.legal-section .section-intro {
  color: var(--slate);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.legal-layout > .section-heading {
  grid-column: 1 / span 5;
}

.legal-content {
  grid-column: 6 / -1;
}

.legal-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.legal-list li {
  border-bottom: 1px solid var(--border);
}

.legal-list a,
.legal-reference-static {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 15px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  text-decoration: none;
}

.legal-list a:hover strong {
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-list strong,
.legal-list small {
  display: block;
}

.legal-list strong {
  font-size: 18px;
}

.legal-list small {
  margin-top: 4px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.45;
}

.legal-review-date {
  margin: 24px 0 8px;
  font-family: var(--mono);
  font-size: 14px;
}

.legal-disclaimer {
  margin: 26px 0 0;
  color: var(--slate);
}

/* Contact */
.contact-section {
  background: var(--seal);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.contact-lead {
  grid-column: 1 / span 5;
  align-self: start;
}

.contact-lead .section-heading h2,
.contact-lead .section-heading .section-intro {
  color: var(--white);
}

.contact-lead .section-heading .section-intro {
  opacity: 0.9;
}

.contact-channels {
  margin-top: 42px;
}

.contact-channels-label {
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.contact-channels ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-on-dark);
  list-style: none;
}

.contact-channels li {
  border-bottom: 1px solid var(--border-on-dark);
}

.contact-channels a {
  display: grid;
  min-height: 72px;
  align-items: center;
  padding: 12px 0;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  text-decoration: none;
}

.contact-channels a > span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.76;
}

.contact-channels strong {
  overflow-wrap: anywhere;
  font-size: 16px;
}

.contact-channels a:hover strong {
  text-decoration-line: underline;
  text-decoration-color: #79d29e;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-channels svg {
  transition: transform 160ms ease;
}

.contact-channels a:hover svg {
  transform: translateX(3px);
}

.contact-direct,
.contact-form {
  grid-column: 6 / -1;
}

.contact-direct {
  padding: 38px 0;
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}

.contact-direct > p:first-child {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 20px;
}

.contact-direct .privacy-note {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--white);
  opacity: 0.9;
}

.contact-direct .handoff-note {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: 16px;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label span {
  color: var(--slate);
  font-size: 16px;
  font-weight: 400;
}

.form-field textarea {
  resize: vertical;
}

.consent-check {
  margin: 5px 0 0;
}

.contact-form > .privacy-note {
  margin: 22px 0;
  color: var(--slate);
}

/* Footer */
.site-footer {
  padding: 70px 0 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-grid > div:first-child p {
  max-width: 520px;
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--white);
}

.footer-brand {
  text-decoration: none;
}

.footer-brand img {
  width: 222px;
  height: auto;
}

.footer-label {
  margin-bottom: 18px;
  opacity: 0.7;
}

.footer-grid a,
.footer-grid nav a,
.footer-grid > div:nth-child(2) p {
  display: block;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.footer-grid a {
  min-height: 44px;
}

.footer-grid .footer-brand {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--white);
  font-size: 16px;
}

.footer-bottom p:first-child {
  max-width: 680px;
}

.footer-bottom p:last-child {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--seal);
  color: var(--white);
  text-decoration: none;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.floating-whatsapp:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
}

.floating-whatsapp.is-hidden,
.menu-open .floating-whatsapp {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
}

/* Viewport reveals and editorial rules */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

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

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 3fr) minmax(350px, 2fr);
  }

  .hero-copy {
    padding-right: 40px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.8vw, 68px);
  }

  .image-credit {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 80px;
  }

  .section-grid,
  .calculator-layout,
  .pricing-layout,
  .process-layout,
  .trust-layout,
  .benefits-layout,
  .faq-layout,
  .legal-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-grid > .section-heading,
  .section-grid > :last-child,
  .calculator-layout > .section-heading,
  .calculator-workspace,
  .pricing-layout > .section-heading,
  .pricing-content,
  .process-heading-wrap,
  .process-track,
  .trust-layout .section-heading,
  .review-list,
  .benefits-layout > .kicker,
  .benefits-layout > div,
  .faq-lead,
  .faq-groups,
  .legal-layout > .section-heading,
  .legal-content,
  .contact-lead,
  .contact-direct,
  .contact-form {
    grid-column: 1;
  }

  .process-heading-wrap .section-heading,
  .faq-lead .section-heading {
    position: static;
  }

  .services-lead .section-heading,
  .vehicles-lead .section-heading {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --section-space: 64px;
  }

  body {
    font-size: 18px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .wordmark-logo {
    width: 190px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-copy {
    min-height: auto;
    padding: 52px 20px 48px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero .eyebrow {
    margin-bottom: 23px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 11vw, 52px);
  }

  .hero-support {
    font-size: 18px;
  }

  .hero-scope-note {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 260px;
    max-height: 320px;
  }

  .hero-media figcaption {
    font-size: 10px;
  }

  .differentiators-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .differentiators p,
  .differentiators p:first-child,
  .differentiators p:last-child {
    min-height: 62px;
    padding: 12px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .differentiators p:last-child {
    border-bottom: 0;
  }

  .section-grid,
  .calculator-layout,
  .pricing-layout,
  .process-layout,
  .trust-layout,
  .benefits-layout,
  .faq-layout,
  .legal-layout,
  .contact-layout {
    gap: 36px;
  }

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

  .choice,
  .choice span {
    width: 100%;
  }

  .calculator-workspace {
    padding: 24px 20px;
  }

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

  .pricing-summary > div,
  .pricing-summary > div + div {
    padding: 24px 0;
    border-left: 0;
  }

  .pricing-summary > div + div {
    border-top: 1px solid var(--border);
  }

  .pricing-payments li,
  .pricing-official {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calculator-result dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .calculator-result dd {
    text-align: left;
  }

  .calculator-result .button {
    width: 100%;
  }

  .process-track::before,
  .process-track::after {
    left: 24px;
  }

  .process-step {
    min-height: 0;
    padding-bottom: 50px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 17px;
  }

  .process-number {
    width: 50px;
    font-size: 22px;
  }

  .process-promise {
    padding: 17px;
  }

  .section-disclaimer {
    margin-left: 67px;
  }

  .services-list {
    margin-top: 38px;
  }

  .services-list li {
    min-height: 76px;
    grid-template-columns: 45px minmax(0, 1fr);
    font-size: 18px;
  }

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

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

  .stats-list > div,
  .stats-list > div:first-child,
  .stats-list > div:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-list > div:last-child {
    border-bottom: 0;
  }

  .stats-list dd {
    margin-bottom: 14px;
  }

  .review-list li,
  .review-list li:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .vehicle-types {
    margin-top: 40px;
  }

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

  .vehicle-type {
    padding: 24px 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .vehicle-type > p:last-child {
    grid-column: 1 / -1;
  }

  .benefits-layout > .kicker {
    margin-bottom: -10px;
  }

  .faq-group {
    margin-bottom: 48px;
  }

  .faq-panel > div {
    padding-right: 0;
  }

  .legal-list a {
    min-height: 92px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-channels a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2px 14px;
  }

  .contact-channels a > span,
  .contact-channels strong {
    grid-column: 1;
  }

  .contact-channels svg {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 8px));
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .currency-field input {
    padding-right: 60px;
    font-size: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .section-heading::after {
    transform: scaleX(1);
  }
}
