:root {
  --blue: #082744;
  --blue-soft: #123958;
  --orange: #e87500;
  --orange-dark: #c76500;
  --cream: #f7f1e8;
  --cream-2: #fbf7f0;
  --white: #ffffff;
  --ink: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --green: #557c65;
  --green-soft: #edf3ef;
  --shadow: 0 18px 44px rgba(8, 39, 68, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

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

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

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 54px;
}

h2 {
  margin-bottom: 16px;
  font-size: 38px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  padding-left: 22px;
}

li {
  margin-bottom: 7px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  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;
  top: 14px;
  left: 14px;
  z-index: 400;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(232, 117, 0, 0.42);
  outline-offset: 3px;
}

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

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(8, 39, 68, 0.1);
}

.header-inner {
  width: min(1420px, calc(100% - 40px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 78px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 7px;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.12;
}

.brand-text strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

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

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 9px;
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  background: var(--cream);
  outline: none;
}

.primary-nav .nav-action {
  margin-left: 5px;
  padding-inline: 12px;
  background: var(--orange);
  color: var(--white);
}

.primary-nav .nav-action.alt {
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

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

.hero {
  background: var(--cream);
  padding: 56px 0 38px;
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 720px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-soft);
}

.button-muted {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

.button-link {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
}

.hero-media {
  position: relative;
}

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

.image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 54px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(229, 220, 207, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(8, 39, 68, 0.14);
}

.hero-note strong {
  display: block;
  color: var(--blue);
  line-height: 1.2;
}

.hero-note span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.trust-strip {
  background: var(--blue);
  color: var(--white);
}

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

.trust-grid span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 76px 0;
  background: var(--cream-2);
}

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

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

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

.section-blue h2,
.section-blue h3,
.section-blue .section-kicker {
  color: var(--white);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.88);
}

.section-head {
  max-width: 830px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.two-grid,
.three-grid,
.four-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.entry-card,
.choice-card,
.step-card,
.form-panel,
.contact-box,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 39, 68, 0.07);
}

.card,
.entry-card,
.choice-card,
.step-card,
.contact-box,
.legal-box {
  padding: 24px;
}

.card p,
.entry-card p,
.choice-card p,
.step-card p {
  color: var(--muted);
}

.entry-card {
  min-height: 100%;
}

.entry-card.highlight {
  border-color: rgba(232, 117, 0, 0.55);
  background: #fffdf9;
}

.marker,
.step-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

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

.choice-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover,
.choice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 117, 0, 0.65);
  box-shadow: var(--shadow);
}

.choice-card strong {
  color: var(--blue);
  line-height: 1.2;
}

.choice-card span {
  color: var(--muted);
  font-size: 14px;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 38px;
}

.image-split.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

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

.image-panel img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.image-panel.small img {
  height: 310px;
}

.image-panel figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.tag-list li,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

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

.step-card {
  position: relative;
  min-height: 220px;
}

.step-card h3 {
  font-size: 20px;
}

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

.mini-path a {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(8, 39, 68, 0.06);
}

.mini-path span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.band {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.band.green {
  background: var(--green-soft);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.fact {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fact strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: 28px;
}

.form-panel {
  padding: 28px;
}

.awz-form {
  display: grid;
  gap: 18px;
}

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

.field,
.fieldset {
  display: grid;
  gap: 7px;
}

.field.full,
.fieldset.full,
.form-details {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cfc7bb;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b63f1b;
  box-shadow: 0 0 0 3px rgba(182, 63, 27, 0.12);
}

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

.option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.option input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.privacy input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.form-note {
  margin: 0;
  padding: 14px;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.form-error {
  min-height: 22px;
  color: #9a2f16;
  font-size: 15px;
  font-weight: 900;
}

.form-success {
  display: none;
  padding: 14px;
  border: 1px solid rgba(85, 124, 101, 0.45);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: #294c38;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

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

.form-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.form-details summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--blue);
  font-weight: 900;
}

.form-details .details-inner {
  padding: 0 16px 16px;
}

.contact-box {
  display: grid;
  gap: 8px;
  align-self: stretch;
}

.contact-box strong {
  color: var(--blue);
  font-size: 24px;
}

.contact-box a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.contact-box small {
  color: var(--muted);
  font-weight: 700;
}

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

.section-blue .contact-box strong,
.section-blue .contact-box a {
  color: var(--white);
}

.section-blue .contact-box small {
  color: rgba(255, 255, 255, 0.82);
}

.legal-box {
  background: #fffdf9;
}

.legal-box h3 {
  font-size: 20px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange-dark);
  font-size: 20px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.site-footer {
  padding: 54px 0 92px;
  background: var(--blue);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 28px;
}

.site-footer h3 {
  font-size: 18px;
}

.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

.mobile-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 -10px 28px rgba(8, 39, 68, 0.16);
}

.mobile-fixed a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-fixed a + a {
  background: var(--blue);
}

@media (max-width: 1380px) {
  .primary-nav {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    justify-content: center;
    min-height: 48px;
    font-size: 15px;
  }

  .primary-nav .nav-action {
    margin-left: 0;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-grid,
  .image-split,
  .image-split.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-media {
    order: -1;
  }

  .image-card img {
    height: 360px;
  }

  .trust-grid,
  .four-grid,
  .quick-facts,
  .mini-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-layout {
    gap: 22px;
  }
}

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

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

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 66px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .primary-nav {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .primary-nav.open,
  .two-grid,
  .three-grid,
  .four-grid,
  .process,
  .choice-grid,
  .mini-path,
  .quick-facts,
  .form-grid,
  .option-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 26px 0 30px;
  }

  .hero-intro {
    font-size: 19px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .image-card img,
  .image-panel img,
  .image-panel.small img {
    height: 260px;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: 12px;
  }

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

  .trust-grid span {
    min-height: 50px;
    justify-content: flex-start;
    text-align: left;
  }

  .card,
  .entry-card,
  .choice-card,
  .step-card,
  .form-panel,
  .contact-box,
  .legal-box,
  .band {
    padding: 20px;
  }

  .choice-card {
    min-height: 118px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-fixed {
    display: grid;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 30px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-mark {
    width: 56px;
    height: 32px;
  }

  .button,
  .mobile-fixed a {
    font-size: 14px;
  }
}
