:root {
  --blue: #082744;
  --blue-soft: #123957;
  --ink: #10233d;
  --muted: #5d6877;
  --orange: #e87500;
  --orange-dark: #c76200;
  --cream: #f7f1e8;
  --cream-2: #fbf7f0;
  --white: #ffffff;
  --line: #e5dccf;
  --green: #557c65;
  --sky: #4b7fa8;
  --shadow: 0 18px 45px 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;
}

body.nav-open {
  overflow: hidden;
}

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.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 50px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.8vw, 44px);
}

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

p {
  margin-bottom: 16px;
}

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

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

.container {
  width: min(var(--container), 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;
  top: 14px;
  left: 14px;
  z-index: 300;
  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(8, 39, 68, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

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

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

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

.brand-mark {
  width: 66px;
  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-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 7px;
}

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

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

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

.primary-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.primary-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  background: var(--cream);
  border-color: rgba(8, 39, 68, 0.08);
  outline: none;
}

.primary-nav .nav-action {
  margin-left: 4px;
  background: var(--orange);
  color: var(--white);
}

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

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

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: currentColor;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--orange-dark);
  box-shadow: 0 12px 28px rgba(232, 117, 0, 0.22);
}

.button-secondary {
  border-color: rgba(8, 39, 68, 0.2);
  background: var(--white);
  color: var(--blue);
}

.button-secondary:hover {
  background: var(--cream);
  color: var(--blue);
  box-shadow: none;
}

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

.button-blue:hover {
  background: var(--blue-soft);
  box-shadow: 0 12px 28px rgba(8, 39, 68, 0.2);
}

.button-small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 42px 0 44px;
  background:
    linear-gradient(140deg, rgba(247, 241, 232, 0.92), rgba(255, 255, 255, 0.94)),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: center;
}

.hero-lead {
  max-width: 760px;
  color: var(--blue-soft);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.35;
}

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

.hero-copy p:not(.eyebrow):not(.hero-lead) {
  max-width: 730px;
  color: var(--ink);
}

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

.hero-visual {
  position: relative;
}

.hero-visual img,
.image-panel img,
.page-visual img {
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual img {
  aspect-ratio: 4 / 3;
  height: clamp(300px, 31vw, 430px);
  object-position: 46% 50%;
}

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

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

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
}

.trust-grid span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(8, 39, 68, 0.1);
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

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

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

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

.section-blue {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
}

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

.section-blue .section-kicker {
  color: #f2c18e;
}

.section-head {
  max-width: 840px;
  margin-bottom: 32px;
}

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

.section-lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

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

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

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

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

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

.compact-split {
  gap: 34px;
}

.compact-split .image-panel {
  width: min(100%, 440px);
}

.compact-split.reverse .image-panel {
  justify-self: end;
}

.compact-split .image-panel img {
  min-height: 0;
  height: clamp(240px, 27vw, 330px);
  aspect-ratio: 4 / 3;
}

.compact-split.reverse .image-panel img {
  object-position: 68% 50%;
}

.section-title-compact {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 36px);
}

.image-panel {
  margin: 0;
}

.image-panel figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.card,
.entry-card,
.path-card,
.faq-card {
  padding: 24px;
}

.entry-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.entry-card .button {
  margin-top: auto;
}

.marker,
.step-number,
.card-tag {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(75, 127, 168, 0.12);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.marker.orange {
  background: rgba(232, 117, 0, 0.14);
  color: var(--orange-dark);
}

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

.check-list li,
.plain-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 29px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--white);
}

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

.band {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

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

.band p {
  max-width: 860px;
}

.band .section-kicker {
  color: #f2c18e;
}

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

.mini-path a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

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

.mini-path a:hover {
  border-color: rgba(232, 117, 0, 0.45);
  box-shadow: 0 12px 28px rgba(8, 39, 68, 0.08);
}

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

.process-item {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-item::before {
  content: counter(steps, decimal-leading-zero);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(75, 127, 168, 0.12);
  color: var(--blue);
  font-weight: 900;
}

.process-item h3 {
  font-size: 20px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-box {
  padding: 28px;
}

.contact-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 22px;
}

.contact-box span,
.contact-box a {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  text-decoration: none;
}

.contact-box a {
  font-weight: 900;
}

.final-section {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.final-cta h2,
.final-cta .section-kicker {
  color: var(--white);
}

.final-cta .section-kicker {
  color: #f2c18e;
}

.final-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
}

.final-contact {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-style: normal;
}

.final-contact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 22px;
}

.final-contact span,
.final-contact a {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.final-contact a {
  font-weight: 900;
}

.notice {
  padding: 20px;
  color: var(--ink);
  background: #fff7ea;
}

.notice strong {
  color: var(--blue);
}

.form-panel {
  padding: clamp(22px, 4vw, 34px);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

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

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

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(75, 127, 168, 0.72);
  outline: none;
  box-shadow: 0 0 0 4px rgba(75, 127, 168, 0.13);
}

.choice-group {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.choice input {
  margin-top: 2px;
  accent-color: var(--orange);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.consent input {
  margin-top: 4px;
  accent-color: var(--orange);
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

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

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 39, 68, 0.05);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cream);
  color: var(--blue);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details > div {
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 86px;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

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

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

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

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

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

.mobile-fixed {
  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(8, 39, 68, 0.12);
  background: var(--white);
  box-shadow: 0 -10px 28px rgba(8, 39, 68, 0.12);
}

.mobile-fixed a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.mobile-fixed a:first-child {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 1280px) {
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 12px;
  }

  .brand-text {
    display: grid;
  }

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

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    justify-content: center;
    min-height: 46px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .button-small,
  .phone-link {
    display: none;
  }
}

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

  .hero {
    padding: 46px 0 40px;
  }

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

  .compact-split .image-panel,
  .compact-split.reverse .image-panel {
    width: min(100%, 520px);
    justify-self: start;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 0;
  }

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

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

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

  .primary-nav {
    top: 68px;
  }

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

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

  .brand-text small {
    max-width: 200px;
    white-space: normal;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual img {
    min-height: 0;
    height: 260px;
  }

  .compact-split .image-panel img {
    height: 220px;
  }

  .trust-grid,
  .three-grid,
  .four-grid,
  .mini-path,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 20px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-fixed {
    display: grid;
  }
}
