:root {
  --awz-blue: #082f57;
  --awz-blue-2: #0d426b;
  --awz-gold: #c58a2d;
  --ink: #172433;
  --muted: #657286;
  --line: #dce4ec;
  --soft: #f3f6f9;
  --paper: #ffffff;
  --mist: #e9eef3;
  --success: #2f6b58;
  --shadow: 0 20px 54px rgba(8, 47, 87, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--awz-blue);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  font-size: 4.85rem;
}

h2 {
  max-width: 15ch;
  font-size: 3.45rem;
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link,
.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:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--awz-blue);
  color: #fff;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(197, 138, 45, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 236, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(8, 47, 87, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--awz-blue);
  color: #fff;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--awz-blue);
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: #20364d;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: var(--soft);
  color: var(--awz-blue);
}

.primary-nav .nav-cta {
  margin-left: 4px;
  background: var(--awz-blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--awz-blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--awz-gold);
  color: #111c27;
}

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

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

.button-ghost {
  background: #fff;
  color: var(--awz-blue);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 24, 42, 0.91), rgba(8, 47, 87, 0.78) 45%, rgba(8, 47, 87, 0.35)),
    linear-gradient(0deg, rgba(6, 24, 42, 0.72), rgba(6, 24, 42, 0.08) 42%);
}

.hero-content {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  align-items: end;
  gap: 44px;
}

.hero h1,
.hero h2 {
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.85rem;
  color: var(--awz-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead,
.lead {
  max-width: 700px;
  color: #3e4d5d;
  font-size: 1.22rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.7rem;
}

.hero-panel,
.card,
.image-card,
.contact-card,
.result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel {
  color: var(--ink);
}

.hero-panel-inner {
  padding: 24px;
}

.hero-panel strong {
  color: var(--awz-blue);
  font-size: 1.06rem;
}

.hero-panel ul,
.check-list {
  padding-left: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.hero-panel li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 0.65rem 0;
}

.hero-panel li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08rem;
  content: "+";
  color: var(--awz-gold);
  font-weight: 900;
}

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

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

.trust-grid span {
  padding: 18px 12px;
  color: var(--awz-blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 84px 0;
}

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

.section-blue {
  background: var(--awz-blue);
  color: #fff;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 52px;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: center;
}

.image-card figcaption {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.card {
  padding: 24px;
}

.card .number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--awz-blue);
  font-weight: 900;
}

.card p:last-child {
  margin-bottom: 0;
}

.decision-board {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.choice-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.choice-list label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 700;
}

.choice-list input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--awz-blue);
}

.result-panel {
  padding: 28px;
  position: sticky;
  top: 100px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.tag-row span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--awz-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #eef3f7 0%, #fff 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 40px;
}

.page-hero h1 {
  max-width: 13ch;
}

.mini-panel {
  padding: 24px;
  border-left: 5px solid var(--awz-gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--awz-blue);
  color: #fff;
  font-weight: 900;
}

.quote-band {
  padding: 46px 0;
  background: var(--awz-blue);
  color: #fff;
}

.quote-band p {
  margin: 0;
  max-width: 920px;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.2;
  font-weight: 900;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--awz-blue);
  font-weight: 900;
}

.faq details p {
  padding: 0 20px 20px;
  margin: 0;
  color: #35475a;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 26px;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--awz-blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-grid label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.privacy {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

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

.privacy a {
  color: var(--awz-blue);
  font-weight: 900;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.76rem 0.82rem;
  color: var(--ink);
  background: #fff;
}

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

[aria-invalid="true"] {
  border-color: #b2452d;
  box-shadow: 0 0 0 3px rgba(178, 69, 45, 0.13);
}

.form-note,
.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-error {
  min-height: 1.4em;
  color: #9f2f20;
  font-weight: 800;
}

.form-success {
  min-height: 1.4em;
  color: var(--success);
  font-weight: 900;
}

.contact-facts a {
  color: var(--awz-blue);
  font-weight: 900;
}

.legal-content {
  max-width: 840px;
}

.legal-content h2 {
  max-width: 100%;
  margin-top: 2rem;
  font-size: 1.8rem;
}

.cta-band {
  background: var(--awz-blue);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 42px 0;
}

.cta-grid h2,
.cta-grid p {
  color: #fff;
}

.cta-grid h2 {
  max-width: 18ch;
  font-size: 2.55rem;
}

.site-footer {
  padding: 42px 0;
  background: #061a2f;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    max-width: 13ch;
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-lead,
  .lead {
    font-size: 1.12rem;
  }

  .quote-band p,
  .cta-grid h2 {
    font-size: 2.15rem;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: grid;
  }

  .primary-nav a {
    padding: 12px;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .decision-board,
  .contact-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 0 3rem;
  }

  .result-panel {
    position: static;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.38rem;
  }

  h2 {
    max-width: 100%;
    font-size: 2.05rem;
  }

  .hero-lead,
  .lead {
    font-size: 1.04rem;
  }

  .quote-band p,
  .cta-grid h2 {
    font-size: 1.72rem;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-text small {
    display: none;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 24, 42, 0.93), rgba(8, 47, 87, 0.72)),
      linear-gradient(0deg, rgba(6, 24, 42, 0.72), rgba(6, 24, 42, 0.1));
  }

  .section,
  .page-hero {
    padding: 56px 0;
  }

  .trust-grid,
  .cards,
  .cards.two,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .cta-grid {
    text-align: left;
  }
}
