﻿:root {
  --navy: #07111f;
  --navy-2: #0e2238;
  --charcoal: #111827;
  --steel: #5c6b7b;
  --muted: #6f7c88;
  --blue-muted: #3d6f96;
  --line: #d9e0e8;
  --paper: #f5f7fa;
  --white: #ffffff;
  --orange: #f36b21;
  --orange-dark: #b94b10;
  --max: 1160px;
  --shadow: 0 22px 54px rgba(7, 17, 31, 0.14);
  --font-wordmark: "Teko", "Barlow Condensed", "Rajdhani", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 9999;
  background: var(--orange);
  color: var(--navy);
  padding: .65rem .85rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: .35rem;
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.skip-link:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

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

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}

.brand.wordmark {
  gap: 0;
}

.brand strong,
.brand > span:not(.brand-mark) {
  display: block;
}

.brand strong {
  font-family: var(--font-wordmark);
  font-size: 1.36rem;
  letter-spacing: .035em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand > span:not(.brand-mark) > span {
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  min-height: 42px;
  padding: .62rem .74rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: .45rem;
  border: 1px solid rgba(243, 107, 33, .42);
  background: transparent;
  color: #ffc29c;
  min-height: 40px;
  padding-inline: .84rem;
  clip-path: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: rgba(243, 107, 33, .1);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.page-hero {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  filter: saturate(.92) contrast(1.04) brightness(.92);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 45%, rgba(7, 17, 31, 0) 0, rgba(7, 17, 31, .16) 36%, rgba(7, 17, 31, .6) 78%),
    linear-gradient(90deg, rgba(7, 17, 31, .98), rgba(7, 17, 31, .9) 42%, rgba(7, 17, 31, .34) 72%, rgba(7, 17, 31, .42));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

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

.page-hero {
  padding: 3.25rem 0;
}

.page-hero .container,
.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--blue-muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.navy .eyebrow,
.photo-band .eyebrow {
  color: #9fc3df;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.06;
  max-width: 24ch;
}

h2 {
  margin-bottom: .8rem;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.12;
  max-width: 30ch;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.1rem;
}

.lead {
  max-width: 68ch;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}

.support-line {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 720;
}

.section {
  padding: clamp(2.8rem, 5vw, 4.8rem) 0;
}

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

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

.section-heading {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.section-heading.center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.muted,
.section-heading p,
.card p,
.service-card p,
.meta-list span,
.footer p {
  color: var(--steel);
}

.section.navy .muted,
.section.navy .section-heading p,
.section.navy .card p,
.section.navy .meta-list span {
  color: rgba(255, 255, 255, .72);
}

.section.navy .notice,
.section.navy .image-card {
  color: var(--navy);
}

.section.navy .notice .muted,
.section.navy .image-card .muted {
  color: var(--steel);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1rem;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.button.primary {
  background: var(--orange);
  color: #111;
}

.section .button.primary:not([type="submit"]) {
  border-color: rgba(7, 17, 31, .2);
  background: rgba(7, 17, 31, .03);
  color: var(--navy);
}

.section.navy .button.primary:not([type="submit"]) {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.white .button.secondary,
.paper .button.secondary,
.button.secondary.light {
  color: var(--navy);
  border-color: rgba(7, 17, 31, .2);
  background: rgba(7, 17, 31, .03);
}

.text-link-row a,
.proof-inline a,
.notice a,
.section-heading a {
  color: var(--navy-2);
  font-weight: 850;
  text-underline-offset: .2em;
}

.section.navy .text-link-row a,
.section.navy .proof-inline a,
.page-hero .text-link-row a {
  color: var(--white);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid span {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: .8rem;
  background: var(--paper);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 850;
  text-align: center;
}

.hero-panel,
.card,
.service-card,
.notice,
.form-card,
.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.hero-panel {
  padding: 1rem;
  color: var(--navy);
}

.hero-panel h2 {
  max-width: none;
  font-size: 1.1rem;
}

.pathway-grid,
.card-grid,
.service-grid,
.three-grid,
.two-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.service-card,
.notice,
.form-card,
.proof-card {
  padding: 1rem;
}

.lead-proof-section {
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.lead-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 1rem;
  align-items: start;
}

.lead-focus {
  display: grid;
  gap: .8rem;
  max-width: 940px;
}

.lead-form-card,
.proof-card {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.lead-form-card h2,
.proof-card h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

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

.quick-form-grid .wide {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 1rem;
}

.form-note,
.proof-note {
  margin: .8rem 0 0;
  color: var(--steel);
  font-size: .86rem;
  line-height: 1.45;
}

.contact-ladder {
  display: grid;
  gap: .28rem;
  margin-top: .95rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: .92rem;
  line-height: 1.45;
}

.contact-ladder p {
  margin: 0;
}

.contact-ladder a {
  color: var(--navy);
  font-weight: 800;
}

.proof-card {
  border-top: 5px solid var(--blue-muted);
}

.proof-list {
  display: grid;
  gap: .42rem;
  margin: .95rem 0 1rem;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: .48rem .6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 780;
}

.proof-inline {
  margin: 0;
  padding: .9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--steel);
  font-size: .95rem;
}

.proof-inline strong {
  color: var(--navy);
}

.concern-section {
  align-items: start;
}

.concern-list {
  display: grid;
  gap: .65rem;
}

.concern-list article {
  padding: .8rem 0 .8rem 1rem;
  border-left: 4px solid var(--blue-muted);
  border-bottom: 1px solid var(--line);
}

.concern-list.compact article {
  padding-block: .65rem;
}

.concern-list h3 {
  margin-bottom: .25rem;
}

.concern-list p {
  margin: 0;
  color: var(--steel);
}

.card .index,
.service-card .index {
  display: inline-block;
  margin-bottom: .75rem;
  color: var(--blue-muted);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.simple-path-list,
.issue-list {
  display: grid;
  gap: .7rem;
}

.simple-path-list a,
.issue-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, .42fr) minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
  padding: .95rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.issue-list a {
  grid-template-columns: minmax(0, .36fr) minmax(0, 1fr);
}

.simple-path-list span {
  color: var(--blue-muted);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.simple-path-list strong,
.issue-list strong {
  font-size: 1rem;
}

.simple-path-list em,
.issue-list span {
  color: var(--steel);
  font-style: normal;
}

.compact-links a {
  grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
}

.bullet-list {
  display: grid;
  gap: .55rem;
  margin: .8rem 0 0;
  padding-left: 1.1rem;
  color: var(--steel);
}

.bullet-list li::marker {
  color: var(--blue-muted);
}

.service-card {
  box-shadow: none;
}

.service-card h2 {
  font-size: 1.18rem;
  max-width: none;
}

.service-card dl {
  margin: .85rem 0 0;
}

.service-card dt {
  margin-top: .7rem;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.service-card dd {
  margin: .2rem 0 0;
  color: var(--steel);
}

.service-family-stack {
  display: grid;
  gap: 2.4rem;
}

.service-family {
  display: grid;
  gap: 1rem;
}

.service-family .section-heading {
  margin-bottom: .4rem;
}

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

.service-card .text-link-row {
  margin-bottom: 0;
}

.image-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.image-card div {
  padding: 1rem;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: stretch;
}

.image-strip figure {
  margin: 0;
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--navy);
}

.image-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.image-strip figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .7rem .8rem;
  background: rgba(7, 17, 31, .82);
  color: var(--white);
  font-size: .82rem;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.airbox-feature {
  align-items: stretch;
}

.airbox-feature .feature-media img {
  height: 100%;
  min-height: 280px;
  object-position: 58% 50%;
}

.check-grid,
.pill-grid,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.check-grid span,
.pill-grid span,
.meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .42rem .62rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: .86rem;
  font-weight: 750;
}

.section.navy .check-grid span,
.section.navy .pill-grid span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  color: var(--white);
}

.process-list {
  display: grid;
  gap: .75rem;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: .85rem;
  padding: .9rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
}

.process-list span {
  color: var(--blue-muted);
  font-weight: 950;
}

.compact-process {
  align-content: start;
}

.section.navy .process-list .muted {
  color: var(--steel);
}

.photo-band {
  min-height: 330px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
}

.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, .94), rgba(7, 17, 31, .36));
}

.photo-band .container {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

th,
td {
  padding: .9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 34%;
  background: #eef2f6;
  color: #263647;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

td {
  color: var(--navy);
}

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

.field,
fieldset {
  display: grid;
  gap: .38rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.field.wide,
fieldset.wide {
  grid-column: 1 / -1;
}

label,
legend {
  color: #2d3a49;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 45px;
  padding: .72rem .76rem;
  border: 1px solid #cbd3dd;
  border-radius: 0;
  background: #fbfcfe;
  color: var(--navy);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 107, 33, .17);
  outline: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--orange-dark);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 650;
}

.checkbox-row input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: .15rem;
}

.hidden {
  display: none !important;
}

.form-message,
.form-status {
  margin-top: 1rem;
  padding: .9rem;
  border-left: 4px solid var(--orange);
  background: #fff7f0;
  color: var(--navy);
}

.form-status.is-success {
  border-left-color: #198754;
  background: #f0faf4;
}

.form-status.is-error {
  border-left-color: #842029;
  background: #fff4f4;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: .85rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: .7rem 0 0;
  color: var(--steel);
}

.footer {
  background: #050b14;
  color: rgba(255, 255, 255, .76);
  padding: 2.75rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
}

.footer a {
  color: var(--white);
}

.footer h2 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 1060px) {
  .hero-grid,
  .two-grid,
  .lead-proof-grid,
  .feature-band,
  .image-strip {
    grid-template-columns: 1fr;
  }

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

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

  .hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 1120px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 78px;
    display: grid;
    padding: .6rem;
    background: rgba(7, 17, 31, .98);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 3rem 0;
  }

  .hero-panel {
    display: none;
  }

  .pathway-grid,
  .three-grid,
  .quick-form-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .simple-path-list a,
  .issue-list a,
  .compact-links a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, var(--max));
  }

  .brand > span:not(.brand-mark) {
    display: block;
    min-width: 0;
  }

  .brand strong {
    font-size: .98rem;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .brand > span:not(.brand-mark) > span {
    display: none;
  }

  h1 {
    font-size: clamp(1.48rem, 6.2vw, 1.72rem);
    max-width: 21ch;
  }

  h2 {
    font-size: clamp(1.32rem, 6.5vw, 1.72rem);
    max-width: 100%;
  }

  .lead-form-card h2,
  .proof-card h2 {
    font-size: clamp(1.18rem, 5.3vw, 1.42rem);
    max-width: 24ch;
  }

  .lead {
    font-size: .97rem;
    line-height: 1.52;
  }

  .hero {
    min-height: 0;
  }

  .hero-media img {
    object-position: 66% 50%;
    filter: saturate(.9) contrast(1.02) brightness(.82);
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero-grid {
    padding: 2.25rem 0;
  }

  .lead-proof-section {
    padding: 1.25rem 0 1rem;
  }

  .support-line {
    max-width: 31ch;
    margin-top: .95rem;
    font-size: .94rem;
    line-height: 1.48;
  }

  .button {
    min-height: 43px;
    padding: .68rem .86rem;
  }

  main p a:not(.button),
  main li a:not(.button),
  .notice a:not(.button),
  .text-link-row a,
  .proof-inline a,
  .footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .faq-list summary {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .trust-grid,
  .card-grid,
  .service-grid,
  .service-family .service-grid {
    grid-template-columns: 1fr;
  }

  th,
  td {
    display: block;
    width: 100%;
  }
}

.button-row,
.form-actions,
.form-row.actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .85rem;
}

.button-row .button,
.form-actions .button,
button[type="submit"] {
  width: auto;
  max-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .button-row,
  .form-actions,
  .form-row.actions {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .button-row .button,
  .form-actions .button,
  button[type="submit"] {
    width: auto;
    max-width: max-content;
    min-width: 0;
    min-height: 44px;
    padding-inline: 1rem;
    white-space: nowrap;
  }
}

@media (max-width: 359px) {
  .hero .button.primary {
    font-size: .82rem;
    padding-inline: .78rem;
  }
}

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