:root {
  --ink: #020617;
  --slate: #0f172a;
  --slate-soft: #334155;
  --muted: #475569;
  --line: #dbe3ec;
  --bg: #f8fafc;
  --surface: #ffffff;
  --blue: #0369a1;
  --blue-dark: #075985;
  --blue-soft: #e0f2fe;
  --green: #166534;
  --green-soft: #dcfce7;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue-dark);
}

a,
button,
summary,
.service-card,
.region-card {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid rgba(3, 105, 161, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--slate);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid rgba(219, 227, 236, 0.95);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo-frame {
  width: 122px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0.18rem 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 236, 0.95);
  border-radius: var(--radius);
  background: #fff;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name {
  display: block;
}

.brand small {
  display: block;
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a,
.nav-dropdown-toggle {
  color: var(--slate-soft);
  padding: 0.6rem 0.74rem;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-current,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--slate);
  background: #eef6fb;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  z-index: 60;
  display: grid;
  min-width: 224px;
  gap: 0.2rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.7rem;
  height: 0.7rem;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  white-space: normal;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 0.25rem;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.nav-links .nav-action {
  background: var(--blue);
  color: #fff !important;
}

.nav-links .nav-action[aria-current] {
  background: var(--blue);
  color: #fff !important;
}

.nav-action:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 26px rgba(3, 105, 161, 0.22);
}

.nav-links .nav-action:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--slate);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

main {
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.92) 42%, rgba(248, 250, 252, 0.1) 100%),
    #e9f2f8;
}

.hero-grid {
  width: 100%;
  margin: 0;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(520px, 1fr);
  align-items: center;
  gap: 2rem;
  padding-left: max(1.25rem, calc((100vw - var(--max)) / 2));
}

.hero-copy {
  padding: 5.5rem 0 4.5rem;
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  position: relative;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.06) 32%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--slate);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 6vw, 4.95rem);
}

.legal-page .page-hero h1 {
  max-width: 100%;
  font-size: 4.45rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.lead {
  max-width: 720px;
  margin-top: 1.2rem;
  color: var(--slate-soft);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.copy {
  max-width: 760px;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.76rem 1.08rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--blue);
  color: #fff;
}

.button-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(3, 105, 161, 0.24);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--slate);
}

.button-secondary:hover {
  border-color: #a9c4d7;
  background: #f6fbff;
  color: var(--slate);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 780px;
}

.trust-item,
.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
}

.trust-item strong,
.mini-card strong {
  display: block;
  color: var(--slate);
  font-size: 1.15rem;
  line-height: 1.2;
}

.trust-item span,
.mini-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: 5.25rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-alt {
  background: #eef5f8;
}

.section-dark {
  background: var(--slate);
  color: #e2e8f0;
}

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

.section-dark .copy,
.section-dark p {
  color: #cbd5e1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.section-head .copy {
  margin-top: 0.75rem;
}

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

.service-card,
.info-card,
.region-card,
.faq-card,
.target-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.35rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.service-card {
  display: flex;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.service-card:hover {
  border-color: #9bc2d8;
  background: #fbfdff;
  color: inherit;
  box-shadow: var(--shadow);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.service-card p,
.info-card p,
.target-card p,
.region-card p {
  color: var(--muted);
}

.target-card {
  display: grid;
  gap: 0.85rem;
}

.target-card .card-kicker {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--slate-soft);
  padding: 0.28rem 0.58rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.anchor-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--slate);
  padding: 0.48rem 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.anchor-strip a:hover {
  border-color: #9bc2d8;
  background: #f6fbff;
  color: var(--blue-dark);
}

.proof-note {
  border: 1px solid #bae6fd;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--slate-soft);
  padding: 1rem;
}

.proof-note strong {
  display: block;
  color: var(--slate);
  margin-bottom: 0.25rem;
}

.link-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 2rem;
  align-items: start;
}

.stack {
  display: grid;
  gap: 1rem;
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #fff;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.65rem;
  height: 2px;
  background: var(--blue);
}

.process {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.process li {
  counter-increment: step;
  position: relative;
  list-style: none;
  border-left: 3px solid var(--blue);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.2rem 1.1rem 3.9rem;
}

.process li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--slate);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #244057;
  border-radius: var(--radius);
  background: #244057;
}

.metric {
  padding: 1.3rem;
  background: #12243a;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: #cbd5e1;
}

.page-hero {
  background: #eef5f8;
  border-bottom: 1px solid var(--line);
  padding: 3.2rem 0 3.7rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  gap: 2rem;
  align-items: end;
}

.page-hero-grid > *,
.section-head > *,
.split > *,
.contact-grid > *,
.card-grid > *,
.trust-row > *,
.metric-band > * {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--blue-dark);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 0.35rem;
  color: #94a3b8;
}

.hero-note {
  border-left: 4px solid var(--blue);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem;
  color: var(--muted);
}

.utility-hero {
  background:
    linear-gradient(135deg, rgba(224, 242, 254, 0.86), rgba(248, 250, 252, 0.94) 48%, rgba(220, 252, 231, 0.42)),
    #eef5f8;
}

.utility-panel {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.status-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.status-label {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  color: var(--muted);
}

.status-list strong {
  display: block;
  color: var(--slate);
  line-height: 1.3;
}

.status-marker {
  width: 12px;
  height: 12px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--blue-soft);
}

.quick-links {
  display: grid;
  gap: 0.45rem;
}

.quick-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  color: var(--slate);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.quick-links a:hover {
  border-color: #9bc2d8;
  background: #f6fbff;
  color: var(--blue-dark);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #e2e8f0;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.badge-blue {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: #bae6fd;
}

.badge-green {
  color: var(--green);
  background: var(--green-soft);
  border-color: #bbf7d0;
}

.badge-amber {
  color: var(--amber);
  background: var(--amber-soft);
  border-color: #fde68a;
}

.credentials-section .section-head {
  align-items: start;
}

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

.credential-card {
  display: grid;
  gap: 0.75rem;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.25rem;
}

.credential-card .icon {
  color: var(--blue-dark);
}

.credential-card p {
  color: var(--muted);
}

.deliverable-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--muted);
}

.deliverable-list strong {
  color: var(--slate);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem 1.1rem;
}

summary {
  color: var(--slate);
  font-weight: 800;
}

details p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.cta-band {
  border-radius: var(--radius);
  background: var(--slate);
  color: #e2e8f0;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  color: #cbd5e1;
  margin-top: 0.55rem;
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: var(--slate);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--slate);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.22rem;
  accent-color: var(--blue);
}

.form-message {
  display: none;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--amber-soft);
  color: #7c2d12;
  border: 1px solid #fcd34d;
}

.form-message.is-visible {
  display: block;
}

.site-footer {
  background: #07111f;
  color: #cbd5e1;
  padding: 3.5rem 0 2rem;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-logo-frame {
  border-color: rgba(226, 232, 240, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) repeat(3, minmax(160px, 0.5fr));
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-grid a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.14);
  margin-top: 2rem;
  padding-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.92rem;
}

.legal-page .copy p + p,
.legal-page .copy ul + p,
.legal-page .copy p + h2 {
  margin-top: 1.1rem;
}

.legal-page ul {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .legal-page .page-hero h1 {
    font-size: 3.35rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-height) - 0.2rem);
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.1rem 0 0.35rem 0.75rem;
    padding: 0.25rem 0 0.25rem 0.65rem;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: #f8fafc;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    white-space: normal;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-action {
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }

  .hero-copy {
    padding: 4rem 0 0;
  }

  .hero-media {
    min-height: 360px;
    margin: 0 -1.25rem;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.04) 45%);
  }

  .page-hero-grid,
  .section-head,
  .split,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  .nav-wrap {
    padding: 0 1rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo-frame {
    width: 106px;
    height: 40px;
    padding: 0.16rem 0.42rem;
  }

  .brand small {
    display: none;
  }

  .hero-copy {
    padding-top: 3rem;
  }

  .trust-row,
  .credential-grid,
  .card-grid,
  .metric-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }

  .page-hero {
    padding: 2.3rem 0 3rem;
  }

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

  .cta-band {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .actions,
  .cta-band .actions {
    width: 100%;
  }

  .button,
  .nav-action {
    width: 100%;
  }

  .process li {
    padding-left: 3.3rem;
  }
}

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