:root {
  --blue: #082744;
  --blue-2: #12385a;
  --orange: #e87500;
  --orange-2: #c76500;
  --cream: #f7f1e8;
  --cream-2: #fbf8f2;
  --white: #ffffff;
  --ink: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --green: #557c65;
  --green-soft: #edf3ef;
  --shadow: 0 18px 42px rgba(8, 39, 68, 0.11);
  --small-shadow: 0 10px 26px rgba(8, 39, 68, 0.07);
  --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.62;
  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;
  overflow-wrap: anywhere;
}

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

h2 {
  margin-bottom: 14px;
  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: 120;
  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);
}

.site-header .container {
  width: min(1540px, calc(100% - 40px));
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--blue);
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: 44px;
  padding: 2px 4px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

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

.brand strong {
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

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

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--blue);
}

.menu-button i::before {
  transform: translateY(-7px);
}

.menu-button i::after {
  transform: translateY(5px);
}

.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);
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  overflow-wrap: anywhere;
}

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

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

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

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

.button-muted:hover,
.button-muted:focus-visible {
  background: var(--cream);
}

.button-small {
  flex: 0 0 auto;
  min-width: 112px;
  min-height: 42px;
  padding: 9px 12px;
  font-size: 13px;
}

.hero {
  padding: 58px 0 42px;
  background: var(--cream);
}

.sub-hero {
  padding: 52px 0;
}

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

.hero-copy {
  max-width: 780px;
}

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

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

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

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

.trust-note {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

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

.hero-media img,
.image-panel img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.sub-hero .hero-media img {
  height: 360px;
}

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

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

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

.media-note strong,
.media-note span {
  display: block;
}

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

.media-note span {
  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,
.trust-grid article {
  min-height: 70px;
  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-cream {
  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,
.section-blue li {
  color: rgba(255, 255, 255, 0.88);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

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

.section-heading.narrow {
  max-width: 680px;
}

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

.two-grid,
.three-grid,
.four-grid,
.choice-grid,
.mini-path,
.process-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));
}

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

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

.card,
.entry-card,
.choice-card,
.step-card,
.contact-card,
.summary-panel,
.legal-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--small-shadow);
}

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

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

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

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

.marker,
.step-number {
  width: 38px;
  height: 38px;
  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-card {
  min-height: 160px;
  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,
.mini-path a:hover,
.mini-path a: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 {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.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);
}

.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,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.tag-list li,
.pill-list li {
  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;
}

.section-blue .tag-list li,
.section-blue .pill-list li {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

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

.mini-path {
  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: var(--small-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.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);
}

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

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

.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: 22px;
  line-height: 1.12;
}

.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;
}

.fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.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: 132px;
  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,
.privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

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

.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;
  margin: 0;
  color: #9a2f16;
  font-size: 15px;
  font-weight: 900;
}

.form-success {
  display: none;
  margin: 0;
  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-card {
  display: grid;
  gap: 8px;
}

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

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

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

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

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

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.faq-list details p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
}

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

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

.pill-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1fr;
  gap: 28px;
}

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

.site-footer .brand img {
  background: var(--white);
}

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

.footer-links,
.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a,
.footer-col 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-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 140;
  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-sticky 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-align: center;
  text-decoration: none;
}

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

@media (max-width: 1600px) {
  .header-actions .phone-link {
    display: none;
  }
}

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

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

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

  .menu-button {
    display: block;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-media img {
    height: 360px;
  }

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

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

@media (max-width: 760px) {
  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;
  }

  .brand img {
    width: 66px;
    height: 38px;
  }

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

  .brand small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

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

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

  .section {
    padding: 52px 0;
  }

  .hero,
  .sub-hero {
    padding: 28px 0 32px;
  }

  .lead,
  .hero-lead {
    font-size: 19px;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-media img,
  .sub-hero .hero-media img,
  .image-panel img,
  .image-panel.small img {
    height: 260px;
  }

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

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

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

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

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

  .mobile-sticky {
    display: grid;
  }
}

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

  .brand strong {
    font-size: 15px;
  }

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