:root {
  --ink: #07131f;
  --ink-soft: #0d2231;
  --slate: #17384d;
  --blue: #155d7a;
  --cyan: #39c6e7;
  --cyan-soft: #dff6fb;
  --ice: #edf7f9;
  --paper: #f7fafb;
  --white: #ffffff;
  --muted: #5d6f79;
  --line: #cbdbe1;
  --line-dark: rgba(255, 255, 255, 0.16);
  --warm: #e6b65f;
  --shadow: 0 24px 70px rgba(5, 24, 36, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 78, 103, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 78, 103, 0.032) 1px, transparent 1px);
  background-size: 38px 38px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.8vw, 4.3rem);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  line-height: 1.16;
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

section[id],
.contact-card[id] {
  scroll-margin-top: 96px;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-band-white {
  background: var(--white);
}

.section-band-ice {
  background: var(--ice);
}

.section-band-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-band-dark::after {
  content: "";
  position: absolute;
  right: -16rem;
  bottom: -16rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(57, 198, 231, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(57, 198, 231, 0.025), 0 0 0 12rem rgba(57, 198, 231, 0.02);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-band-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--cyan);
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.section-band-dark .lede,
.page-hero .lede {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 3rem;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-size: 0.93rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  touch-action: manipulation;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cyan);
  color: var(--ink);
}

.button-primary:hover {
  background: #74def3;
}

.button-call {
  box-shadow: 0 10px 30px rgba(57, 198, 231, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.button-small {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue);
  font-weight: 850;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 19, 31, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
  height: 64px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 760;
}

.site-nav > a:not(.button):hover {
  color: var(--white);
}

.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.site-nav .nav-request {
  color: var(--cyan) !important;
}

.nav-call-button {
  min-width: 174px;
  box-shadow: 0 8px 24px rgba(57, 198, 231, 0.16);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 28, 0.99) 0%, rgba(5, 17, 28, 0.94) 36%, rgba(5, 17, 28, 0.34) 67%, rgba(5, 17, 28, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 17, 28, 0.6), transparent 35%),
    url("/img/ateam-hero.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 5.5rem 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 6vw, 6.15rem);
}

.hero .lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-call-note {
  max-width: 660px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.4rem;
}

.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  background: rgba(7, 19, 31, 0.35);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.79rem;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.trust-rail {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  min-height: 112px;
  padding: 1.45rem;
  border-left: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-grid strong {
  font-size: 1rem;
  line-height: 1.25;
}

.lead-strip {
  border-bottom: 1px solid rgba(57, 198, 231, 0.28);
  background: var(--ink-soft);
  color: var(--white);
}

.lead-strip-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.lead-strip-inner > div {
  display: grid;
  gap: 0.2rem;
}

.lead-strip-inner span {
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead-strip-inner strong {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
}

.service-grid,
.card-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.location-band + .service-grid,
.service-grid + .value-grid {
  margin-top: 1rem;
}

.service-card,
.info-card,
.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: attr(data-number);
  display: grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 4.2rem;
  border-radius: 10px;
  background: var(--cyan-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(21, 93, 122, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(57, 198, 231, 0.03);
}

.service-card p,
.info-card p,
.value-card p {
  color: var(--muted);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.split-grid-reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
}

.signal-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(57, 198, 231, 0.16), transparent 34%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #0b2030;
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.signal-panel::before,
.signal-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(57, 198, 231, 0.28);
  border-radius: 50%;
}

.signal-panel::after {
  width: 12rem;
  height: 12rem;
}

.signal-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11rem;
  height: 2px;
  transform-origin: left center;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.signal-content {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  z-index: 2;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 1.15rem;
  background: rgba(7, 19, 31, 0.88);
  backdrop-filter: blur(14px);
}

.signal-content span {
  display: block;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-content strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--white);
  font-size: 1.25rem;
}

.request-checklist {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0b2030;
  background-size: 42px 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.request-checklist ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-checklist li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line-dark);
}

.request-checklist li > span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.request-checklist strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.request-checklist li p {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.check-list,
.detail-list,
.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.detail-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}

.check-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(57, 198, 231, 0.14);
}

.section-band-dark .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  counter-increment: process;
  border-top: 2px solid var(--line);
  padding: 1.3rem 0.8rem 0 0;
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 2.6rem;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step p {
  color: var(--muted);
}

.location-band {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--ink-soft);
  color: var(--white);
}

.location-band::before {
  content: "SLC";
  position: absolute;
  right: -0.03em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(10rem, 27vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.location-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.location-content p {
  color: rgba(255, 255, 255, 0.72);
}

.airport-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.airport-link-card {
  position: relative;
  min-height: 146px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.airport-link-card::after {
  content: "→";
  position: absolute;
  right: 1.25rem;
  top: 1.15rem;
  color: var(--blue);
  font-weight: 900;
  transition: transform 160ms ease;
}

.airport-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 93, 122, 0.42);
  box-shadow: 0 16px 38px rgba(5, 24, 36, 0.09);
}

.airport-link-card:hover::after {
  transform: translateX(3px);
}

.airport-link-card > span {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.airport-link-card > strong {
  padding-right: 1.8rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.airport-link-card > small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.airport-link-card-primary {
  border-color: rgba(57, 198, 231, 0.5);
  background: linear-gradient(145deg, var(--white), var(--cyan-soft));
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(2.2rem, 6vw, 5rem);
  background: linear-gradient(120deg, var(--blue), var(--ink-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: -8rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255,255,255,.025), 0 0 0 8rem rgba(255,255,255,.018);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    linear-gradient(115deg, rgba(7, 19, 31, 0.98), rgba(13, 34, 49, 0.88)),
    url("/img/ateam-hero.jpg") center 42% / cover no-repeat;
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.65);
  font-size: 0.82rem;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.breadcrumb span + span::before,
.breadcrumb a + span::before {
  content: "/";
  margin-right: 0.5rem;
}

.content-prose {
  max-width: 760px;
}

.content-prose p,
.content-prose li {
  color: var(--muted);
  font-size: 1.04rem;
}

.content-prose h2 {
  margin-top: 3.2rem;
}

.content-prose h3 {
  margin-top: 2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}

.detail-card p {
  color: var(--muted);
}

.boundary-note {
  margin-top: 1.4rem;
  border-left: 4px solid var(--cyan);
  border-radius: 0 14px 14px 0;
  padding: 1.15rem 1.2rem;
  background: var(--cyan-soft);
  color: var(--slate);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.direct-call-card {
  display: grid;
  gap: 0.18rem;
  margin-top: 2rem;
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(125deg, var(--blue), var(--ink-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.direct-call-card span,
.direct-call-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 760;
}

.direct-call-card strong {
  color: var(--cyan);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  letter-spacing: -0.035em;
}

.form-heading {
  margin-bottom: 1.5rem;
}

.form-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.form-heading p:last-child {
  color: var(--muted);
}

.contact-list a,
.contact-list span {
  display: block;
}

.contact-list strong {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  font-size: 1.1rem;
  font-weight: 800;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 850;
}

.form-field label span {
  color: var(--muted);
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  background: var(--paper);
  color: var(--ink);
}

.form-field input,
.form-field select {
  min-height: 50px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(57, 198, 231, 0.2);
  border-color: var(--blue);
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-status {
  min-height: 1.3rem;
  color: var(--blue);
  font-weight: 760;
}

.site-footer {
  padding: 4.5rem 0 1.5rem;
  background: #05101a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 3rem;
}

.footer-grid > div,
.footer-grid > address {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-grid > address {
  font-style: normal;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: rgba(255,255,255,.62);
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-label {
  margin: 0 0 0.3rem;
  color: var(--white) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(7, 19, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .button {
    width: 100%;
  }

  .site-nav .nav-request {
    padding: 0.4rem 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-grid div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .service-grid,
  .card-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card::before {
    margin-bottom: 2.2rem;
  }

  .split-grid,
  .split-grid-reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-grid-reverse > *:first-child {
    order: 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .airport-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 651px) and (max-width: 980px) {
  body {
    padding-bottom: 72px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.55rem max(1rem, calc((100vw - 720px) / 2));
    background: rgba(7, 19, 31, 0.97);
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0.55rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 850;
    text-align: center;
  }

  .mobile-action-call {
    gap: 0.4rem;
    background: var(--cyan);
    color: var(--ink);
  }

  .mobile-action-call span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-action-request {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
  }
}

@media (max-width: 650px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 142px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(5, 17, 28, 1) 0%, rgba(5, 17, 28, 0.92) 55%, rgba(5, 17, 28, 0.35) 100%),
      url("/img/ateam-hero.jpg") 63% center / cover no-repeat;
  }

  .hero-content {
    padding: 4.25rem 0 3.25rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .hero-call-note {
    font-size: 0.8rem;
  }

  .hero-meta {
    margin-top: 1.65rem;
  }

  .lead-strip-inner {
    align-items: stretch;
    flex-direction: column;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .lead-strip-inner .button {
    width: 100%;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .trust-grid,
  .process-grid,
  .detail-grid,
  .request-form,
  .footer-grid,
  .airport-link-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:last-child,
  .trust-grid div:nth-child(3),
  .trust-grid div:nth-child(4) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-top: 0;
  }

  .signal-panel {
    min-height: 420px;
  }

  .request-checklist {
    padding: 1.3rem;
  }

  .page-hero {
    padding: 4.5rem 0 5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-note,
  .form-status {
    grid-column: auto;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(7, 19, 31, 0.97);
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 850;
    text-align: center;
  }

  .mobile-action-call {
    flex-direction: column;
    background: var(--cyan);
    color: var(--ink);
    line-height: 1.08;
  }

  .mobile-action-call span {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-action-call strong {
    margin-top: 0.18rem;
    font-size: 0.88rem;
  }

  .mobile-action-request {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
