:root {
  --awz-blue: #082f57;
  --awz-blue-2: #0d446f;
  --awz-orange: #d97924;
  --ink: #172433;
  --muted: #667387;
  --line: #dce3ea;
  --soft: #f3f6f8;
  --paper: #ffffff;
  --sage: #dfe8e0;
  --steel: #e8eef4;
  --shadow: 0 18px 46px rgba(8, 47, 87, 0.11);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--awz-blue);
  color: #fff;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--awz-blue);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--awz-blue);
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  color: var(--awz-blue);
  font-size: 1.35rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: #243548;
  font-weight: 700;
}

.main-nav a[aria-current="page"] {
  color: var(--awz-orange);
}

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

.btn-primary {
  background: var(--awz-orange);
  color: #fff;
}

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

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

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

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: 3rem;
  padding: 5rem 0 3.2rem;
}

.hero-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dfe7ed;
}

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--awz-orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

h1 {
  font-size: clamp(2.25rem, 5vw, 4.85rem);
  max-width: 10.5ch;
}

.subpage h1 {
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  margin: 1.25rem 0 0;
  color: #33465d;
  font-size: 1.18rem;
  max-width: 58ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-row div {
  background: #fff;
  padding: 1.1rem;
}

.trust-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d9e5ee;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #33465d;
  font-weight: 700;
}

.proof-row strong {
  display: block;
  color: var(--awz-blue);
}

.proof-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 4.5rem 0;
}

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

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

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

.section.blue .eyebrow {
  color: #f3b16c;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section.blue .section-head p:not(.eyebrow),
.section.blue p {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.question,
.feature,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(8, 47, 87, 0.05);
}

.section.blue .card,
.section.blue .feature {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.card p,
.question p,
.feature p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.section.blue .card p,
.section.blue .feature p {
  color: rgba(255, 255, 255, 0.78);
}

.marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #f7e6d3;
  color: #8b4814;
  font-weight: 900;
  font-size: 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.quote-panel {
  border-left: 4px solid var(--awz-orange);
  padding: 1rem 0 1rem 1.35rem;
  color: #33465d;
  font-size: 1.2rem;
  font-weight: 700;
}

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

.process article {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.process span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--awz-orange);
  font-weight: 900;
}

.cta-band {
  background: var(--awz-blue);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.cta-band p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

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

summary {
  cursor: pointer;
  color: var(--awz-blue);
  font-weight: 800;
}

details p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--awz-blue);
  color: #fff;
  border-color: var(--awz-blue);
}

.contact-card h1,
.contact-card h2,
.contact-card h3 {
  color: #fff;
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.contact-list a {
  text-decoration: none;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--awz-blue);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.8rem;
  border: 1px solid #cdd7e0;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
}

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

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

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #33465d;
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
}

.privacy-check a {
  color: var(--awz-blue);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success {
  color: #226238;
  font-weight: 800;
}

.error {
  color: #9a2b20;
  font-weight: 800;
}

.site-footer {
  background: #061f38;
  color: #dbe7f0;
  padding: 2.5rem 0;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #dbe7f0;
  text-decoration: none;
}

.mini-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.mini-nav a {
  padding: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--awz-blue);
  font-weight: 800;
}

.notice {
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff8ed;
  border: 1px solid #f1d4ad;
  color: #6d431d;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

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

  .cards,
  .cards.two,
  .cards.four,
  .process,
  .mini-nav,
  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .hero-grid,
  .section {
    padding: 2.8rem 0;
  }

  .cards,
  .cards.two,
  .cards.four,
  .process,
  .mini-nav,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
