/* =========================================================
   PrimumMD â€” Ship v1.0
   Navy #001F3F Â· Teal #00B2A9
   Primum non nocere
   ========================================================= */

:root {
  --navy: #001f3f;
  --navy-deep: #00152b;
  --navy-soft: #0a2f52;
  --teal: #00b2a9;
  --teal-hover: #0f766e;
  --teal-soft: rgba(0, 178, 169, 0.12);
  --teal-mid: rgba(0, 178, 169, 0.2);
  --white: #ffffff;
  --off-white: #f7f9fb;
  --mist: #eef2f6;
  --text: #1a2b3c;
  --text-muted: #5a6b7c;
  --border: rgba(0, 31, 63, 0.08);
  --border-strong: rgba(0, 31, 63, 0.14);
  --shadow-sm: 0 1px 2px rgba(0, 31, 63, 0.04), 0 4px 12px rgba(0, 31, 63, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 31, 63, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --header-h: 76px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --success: #0f766e;
  --error: #b42318;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--teal);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--mist {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--deep {
  background: var(--navy-deep);
  color: var(--white);
}

.section__header {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section--navy .section__eyebrow,
.section--deep .section__eyebrow {
  color: #5eead4;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section--navy .section__title,
.section--deep .section__title {
  color: var(--white);
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 36rem;
}

.section--navy .section__lead,
.section--deep .section__lead {
  color: rgba(255, 255, 255, 0.72);
}

.section__header--center .section__lead {
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Wordmark only — no separate lettermark tile */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.logo:hover {
  opacity: 0.88;
}

.logo img,
.logo__img {
  display: block;
  height: 28px;
  width: auto;
}

/* Footer / dark: reverse wordmark */
.logo--on-dark img,
.logo--on-dark .logo__img {
  height: 26px;
}

@media (min-width: 960px) {
  .logo img,
  .logo__img {
    height: 30px;
  }
  .logo--on-dark img,
  .logo--on-dark .logo__img {
    height: 28px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--teal);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 31, 63, 0.08);
}

.btn--primary:hover {
  background: var(--teal-hover);
  color: var(--white);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--navy-soft);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--off-white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--lg {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 1.5rem;
}

.hero__watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__watermark span {
  position: absolute;
  top: 14%;
  right: -2%;
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(0, 31, 63, 0.028);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.motto-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 1.15rem;
}

.motto-line__latin {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--teal);
}

.motto-line__sep {
  width: 1px;
  height: 14px;
  background: var(--border-strong);
}

.motto-line__en {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.hero__title--wide {
  max-width: 22ch;
}

.hero__copy {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero__trust-item strong {
  color: var(--text);
  font-weight: 600;
}

.hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.hero__panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.hero__panel-motto {
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.hero__panel-motto-en {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.hero__panel-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__check {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.hero__check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3.25rem, 6vw, 5rem) 0 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  max-width: 42rem;
}

.page-hero .hero__title {
  max-width: none;
}

.page-hero .hero__copy {
  max-width: 48ch;
  margin-bottom: 0;
}

/* ---------- Cards & grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.card--soft {
  background: var(--off-white);
  box-shadow: none;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-strip__item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
}

.trust-strip__item:last-child {
  border-right: 0;
}

.trust-strip__item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.trust-strip__item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 178, 169, 0.18);
}

/* Feature band */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.band--reverse {
  direction: rtl;
}
.band--reverse > * {
  direction: ltr;
}

.band__panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.band__panel--navy {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.band__panel--navy p {
  color: rgba(255, 255, 255, 0.75);
}

.band__panel h3,
.band__panel h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.band__panel--navy h3,
.band__panel--navy h2 {
  color: var(--white);
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.list-check li {
  display: flex;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.list-check li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Callout */
.callout {
  border-left: 3px solid var(--teal);
  background: var(--teal-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  color: var(--text);
  font-size: 1rem;
}

.callout strong {
  color: var(--navy);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 44rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.faq__q::after {
  content: "+";
  font-weight: 500;
  color: var(--teal);
  font-size: 1.25rem;
  line-height: 1;
}

.faq__item.is-open .faq__q::after {
  content: "\2212";
}

.faq__a {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.faq__item.is-open .faq__a {
  display: block;
}

/* Principles */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.principle {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.principle__num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.principle h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.principle p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Stage honesty */
.honesty {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.honesty h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.honesty p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 48ch;
}

/* Carrier feature */
.carrier-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.carrier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.carrier-feature h3,
.carrier-feature h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.carrier-feature p {
  color: var(--text-muted);
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin-top: 1.5rem;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-row .req {
  color: var(--teal);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row--check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.form-row--check input {
  width: auto;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.form-row--check label {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.form-error {
  color: var(--error);
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  display: none;
}

.form-row.is-invalid .form-error {
  display: block;
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: var(--error);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  text-align: center;
}

.contact-aside h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.contact-aside p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-meta a {
  font-weight: 500;
}

/* CTA band */
.cta-band {
  text-align: center;
}

.cta-band .section__title {
  max-width: 22ch;
  margin-inline: auto;
}

.cta-band .section__lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Prose (legal / simple) */
.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: clamp(5rem, 12vw, 8rem) 0;
  max-width: 32rem;
  margin-inline: auto;
}

.thank-you h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 1.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  max-width: 28ch;
  margin-bottom: 1rem;
}

.footer__motto {
  font-size: 0.875rem;
  font-style: italic;
  color: #5eead4;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col a {
  font-size: 0.9375rem;
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  max-width: 48rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid,
  .band,
  .band--reverse,
  .contact-grid,
  .carrier-feature,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .band--reverse {
    direction: ltr;
  }

  .grid-3,
  .trust-strip,
  .principles {
    grid-template-columns: 1fr;
  }

  .trust-strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip__item:last-child {
    border-bottom: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav__cta {
    margin: 1rem 0 0;
    width: 100%;
  }

  .hero__title {
    max-width: none;
  }

  .footer__top {
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .logo img,
  .logo__img {
    height: 26px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Honeypot — hide from humans, bots may fill */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
