:root {
  --blue: #082744;
  --blue-2: #123a60;
  --orange: #e87500;
  --orange-2: #c76000;
  --cream: #f7f1e8;
  --cream-2: #fbf8f2;
  --paper: #ffffff;
  --ink: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --green: #557c65;
  --sky: #4b7fa8;
  --shadow: 0 18px 44px rgba(8, 39, 68, 0.11);
  --soft-shadow: 0 10px 28px rgba(8, 39, 68, 0.07);
  --radius: 8px;
  --header-height: 78px;
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

p {
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

ul,
ol {
  padding-left: 1.18rem;
}

li + li {
  margin-top: 8px;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  min-width: 232px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  color: var(--blue);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.22;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 7px;
  color: var(--blue);
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(232, 117, 0, 0.13);
  outline: none;
}

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

.phone-link {
  color: var(--blue);
  font-weight: 850;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-left: auto;
  padding: 9px 12px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(8, 39, 68, 0.24);
  border-radius: 5px;
  font-weight: 850;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--blue);
  content: "";
}

.menu-button i {
  position: relative;
}

.menu-button i::before {
  position: absolute;
  top: -6px;
}

.menu-button i::after {
  position: absolute;
  top: 6px;
}

.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--line);
}

.mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding: 12px 0 18px;
}

.mobile-menu a {
  padding: 13px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-weight: 780;
  text-decoration: none;
}

.button {
  min-height: 50px;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 5px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-2);
  border-color: var(--blue-2);
  outline: 3px solid rgba(232, 117, 0, 0.22);
  outline-offset: 2px;
}

.button-small {
  min-width: 0;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.button-accent {
  background: var(--orange);
  border-color: var(--orange);
}

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

.button-outline {
  color: var(--blue);
  background: #fff;
  border-color: rgba(8, 39, 68, 0.24);
}

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

.button-soft {
  color: var(--blue);
  background: var(--cream);
  border-color: var(--line);
}

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

.hero {
  position: relative;
  padding: clamp(46px, 7vw, 88px) 0 48px;
  background:
    radial-gradient(circle at 90% 12%, rgba(75, 127, 168, 0.15), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.page-hero {
  padding: clamp(46px, 7vw, 86px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.hero-lead,
.page-hero p,
.section-lead {
  max-width: 780px;
  color: #344056;
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.46;
}

.hero-copy p:not(.hero-lead) {
  max-width: 760px;
}

.eyebrow,
.badge {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge {
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--blue);
  background: rgba(232, 117, 0, 0.12);
  border: 1px solid rgba(232, 117, 0, 0.22);
  border-radius: 5px;
}

.trust-note {
  margin: 18px 0 0;
  color: var(--blue);
  font-weight: 760;
}

.hero-media,
.image-panel,
.media-card {
  margin: 0;
}

.hero-media {
  position: relative;
}

.hero-media img,
.image-panel img,
.media-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  width: min(350px, calc(100% - 32px));
  padding: 18px;
  color: #fff;
  background: rgba(8, 39, 68, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
}

.hero-note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

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

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

.trust-grid article {
  min-height: 84px;
  padding: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-grid strong {
  color: var(--blue);
  line-height: 1.25;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
  background: #fff;
}

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

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

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

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

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

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

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.grid,
.card-grid,
.steps,
.form-grid,
.choice-grid,
.mini-nav,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.panel,
.mini-card,
.form-card,
.notice,
.step-card,
.choice-card,
.stat-card {
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.card > :last-child,
.panel > :last-child,
.mini-card > :last-child,
.notice > :last-child,
.step-card > :last-child,
.stat-card > :last-child {
  margin-bottom: 0;
}

.entry-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.entry-card .actions {
  margin-top: auto;
  padding-top: 16px;
}

.mini-card,
.choice-card {
  box-shadow: none;
}

.choice-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: rgba(232, 117, 0, 0.55);
  outline: 3px solid rgba(232, 117, 0, 0.16);
}

.choice-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.18;
}

.choice-card span,
.card-tag,
.number,
.marker {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  margin-bottom: 16px;
  padding: 0 10px;
  color: var(--blue);
  background: rgba(232, 117, 0, 0.13);
  border-radius: 6px;
  font-weight: 900;
}

.card-tag {
  min-height: 30px;
  width: fit-content;
  font-size: 0.8rem;
}

.choice-output {
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--blue);
  background: rgba(85, 124, 101, 0.09);
  border: 1px solid rgba(85, 124, 101, 0.2);
  border-radius: var(--radius);
  font-weight: 760;
}

.step-card .number {
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: var(--orange);
}

.check-list,
.plain-list,
.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid rgba(8, 39, 68, 0.1);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 18px;
  width: 13px;
  height: 13px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.plain-list li::before {
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 2px;
  background: var(--green);
  content: "";
}

.section-blue .check-list li,
.section-green .check-list li,
.section-blue .plain-list li,
.section-green .plain-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.image-panel figcaption,
.media-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-blue .image-panel figcaption,
.section-green .image-panel figcaption {
  color: rgba(255, 255, 255, 0.76);
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.stat-card span {
  color: var(--muted);
  font-weight: 760;
}

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

.mini-nav a,
.text-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.mini-nav a {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-nav a:hover,
.mini-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
  outline-color: rgba(232, 117, 0, 0.22);
}

.form-card {
  position: relative;
}

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

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

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

.field label,
.legend-label {
  color: var(--blue);
  font-weight: 850;
}

.field small,
.form-note {
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(8, 39, 68, 0.24);
  border-radius: 5px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(232, 117, 0, 0.16);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b93b3b;
}

.checkbox-row,
.checkbox-grid label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #354156;
}

.checkbox-row input,
.checkbox-grid input {
  margin-top: 5px;
  flex: 0 0 auto;
}

.checkbox-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 16px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-more {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

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

.form-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 16px 18px;
}

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

.form-status {
  min-height: 26px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 780;
}

.form-status.is-error {
  color: #9e2f2f;
}

.legal-note {
  padding: 18px;
  color: #314056;
  background: rgba(85, 124, 101, 0.1);
  border: 1px solid rgba(85, 124, 101, 0.2);
  border-radius: var(--radius);
}

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

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

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

.faq-list summary:focus-visible {
  outline: 3px solid rgba(232, 117, 0, 0.28);
  outline-offset: 3px;
}

.faq-list details > div {
  padding: 0 22px 20px;
  color: #354156;
}

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

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

.cta-band {
  padding: clamp(30px, 5vw, 56px);
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer {
  padding: 44px 0 94px;
  color: rgba(255, 255, 255, 0.82);
  background: #071f36;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  max-width: 410px;
}

.footer-brand .brand {
  min-width: 0;
  color: #fff;
}

.footer-brand .brand-copy small,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

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

.site-footer h2 {
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.footer-nav a,
.site-footer a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.footer-nav a + a {
  margin-top: 8px;
}

.footer-legal {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

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

@media (max-width: 1280px) {
  .site-nav,
  .header-actions .button,
  .header-actions .phone-link {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }
}

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

  .container {
    width: min(100% - 30px, 1180px);
  }

  .hero-grid,
  .split-grid,
  .footer-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-media {
    order: -1;
  }

  .hero-note {
    position: static;
    width: auto;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .card-grid.three,
  .card-grid.four,
  .choice-grid,
  .stats-grid,
  .mini-nav,
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 70px;
  }

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

  .brand {
    min-width: 0;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-button span {
    display: none;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

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

  .button {
    width: 100%;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .choice-grid,
  .stats-grid,
  .mini-nav,
  .form-grid,
  .checkbox-grid,
  .form-more-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .field.full,
  .checkbox-grid,
  .form-more {
    grid-column: auto;
  }

  .trust-grid article {
    border-right: 1px solid var(--line);
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    color: #fff;
    background: var(--blue);
    border-radius: 5px;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    background: var(--orange);
  }
}
