:root {
  --ink: #17212b;
  --muted: #4d6071;
  --blue: #005eb8;
  --blue-2: #0072ce;
  --navy: #003087;
  --green: #007f3b;
  --red: #c8221a;
  --pale: #f3f6f8;
  --line: #d8dde3;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(0, 48, 135, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--navy);
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 94, 184, 0.97);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand-line {
  max-width: 290px;
  color: #dcecf8;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 104px;
  height: 54px;
  border: 3px solid var(--white);
  background: var(--blue);
  color: var(--white);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  transform: skewX(-7deg);
}

.brand-mark.small {
  width: 86px;
  height: 44px;
  font-size: 1.24rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:last-child {
  padding: 10px 16px;
  background: var(--white);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--white);
  background: transparent;
  place-items: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue) 48%, var(--navy) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -120px;
  width: 48vw;
  height: 360px;
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.split .eyebrow {
  color: #dcecf8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.5vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #edf7ff;
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 0 #005a2a;
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
}

.hero-card {
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.card-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--pale);
  font-weight: 800;
}

.hero-card li span {
  color: var(--blue);
  font-weight: 900;
}

.hero-card-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-card-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.intro-band {
  background: var(--pale);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px 0;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--pale);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head.compact {
  max-width: 520px;
  margin-bottom: 0;
}

.section-head p:not(.eyebrow),
.split-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article,
.coverage-grid article,
.steps article,
.training-list,
.contact-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 245px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-grid span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #e3f1fb;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.coverage-grid p,
.steps p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.coverage-layout,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: 44px;
  align-items: start;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coverage-grid article {
  padding: 22px;
}

.coverage-grid h3,
.steps h3 {
  margin-bottom: 10px;
}

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

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 52px;
  align-items: start;
}

.split-grid p {
  color: #dcecf8;
}

.training-list {
  padding: 28px;
  color: var(--ink);
}

.training-list p {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.training-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  padding: 24px;
}

.steps h3 {
  margin-top: 18px;
}

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

.brb-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  padding: 38px 0;
}

.brb-lockup,
.brb-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: "Nasalization", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: lowercase;
}

.brb-lockup {
  font-size: 3.2rem;
}

.brb-wordmark {
  font-size: 1.24rem;
}

.brb-lockup .r,
.brb-wordmark .r {
  color: var(--red);
}

.brb-grid p {
  margin: 0;
  max-width: 780px;
  color: #d7dee5;
  font-size: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 20px;
}

.cta-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--white), var(--pale));
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form label:nth-last-of-type(2),
.contact-form label:last-of-type,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 12px;
  border: 2px solid #9fb2bf;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.menu-toggle:focus,
.button:focus,
.nav-links a:focus {
  outline: 3px solid #7ab8f5;
  outline-offset: 3px;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
}

.footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.powered {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.form-response {
  width: min(760px, calc(100% - 32px));
  margin: 80px auto;
  padding: 32px;
  background: var(--white);
  border-top: 6px solid var(--blue);
  box-shadow: var(--shadow);
}

.form-response h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .brand-line {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 16px 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .nav-links a:last-child {
    padding: 14px 4px;
    background: transparent;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .coverage-layout,
  .split-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    min-height: 70px;
  }

  .brand-mark {
    width: 90px;
    height: 48px;
    font-size: 1.32rem;
  }

  .hero {
    padding: 58px 0 50px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .footer-inner,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .service-grid,
  .coverage-grid,
  .steps,
  .brb-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section {
    padding: 62px 0;
  }

  .hero-card,
  .contact-form {
    padding: 20px;
  }
}
