:root {
  --ink: #171a1f;
  --muted-ink: #565d66;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --line: #cfd5db;
  --line-strong: #929ba5;
  --accent: #173f73;
  --accent-dark: #0e2c52;
  --accent-light: #e8eef6;
  --warm: #a85c00;
  --max-width: 1180px;
  --header-height: 5.25rem;
  --shadow: 0 10px 30px rgb(19 34 50 / 8%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d78318;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 6vw, 5.3rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-200%);
}

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

.utility-bar {
  color: #fff;
  background: var(--accent-dark);
  font-size: 0.88rem;
}

.utility-bar__inner {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  margin-bottom: 0;
}

.utility-bar a {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.primary-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-toggle {
  display: none;
  min-width: 3.25rem;
  min-height: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.25rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  content: "";
}

.nav-toggle__icon::before {
  transform: translateY(-0.4rem);
}

.nav-toggle__icon::after {
  transform: translateY(0.4rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: rotate(-45deg);
}

.hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(232 238 246 / 70%) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgb(232 238 246 / 70%) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--paper);
}

.hero__layout {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero__summary,
.lead {
  max-width: 62ch;
  color: var(--muted-ink);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero__summary {
  margin-bottom: 1.75rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1.15rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 0.2rem;
  font-weight: 750;
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--accent);
}

.button--primary:hover {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button--secondary {
  color: var(--accent);
  background: var(--paper);
}

.button--secondary:hover {
  background: var(--accent-light);
}

.hero__availability {
  margin: 1rem 0 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.hero__visual {
  min-height: 26rem;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  border: 1px dashed var(--line-strong);
  background: rgb(255 255 255 / 86%);
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: min(100%, 30rem);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.trust-strip ul {
  display: grid;
  margin: 0;
  padding: 1rem 0;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.trust-strip li {
  min-height: 3.5rem;
  display: flex;
  padding: 0.55rem 1.25rem;
  align-items: center;
  border-left: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.trust-strip li:first-child {
  padding-left: 0;
  border-left: 0;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: var(--header-height);
}

.section--muted {
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.section-heading > p:last-child {
  color: var(--muted-ink);
  font-size: 1.08rem;
}

.section-heading--compact {
  max-width: 40rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  min-height: 18rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.card__number {
  margin-bottom: 3rem;
  color: var(--line-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.notice {
  display: grid;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--line-strong);
  background: var(--soft);
  gap: 0.35rem 1.5rem;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
}

.notice h3,
.notice p {
  margin-bottom: 0;
}

.notice h3 {
  color: var(--muted-ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.notice p {
  color: var(--muted-ink);
  font-size: 0.92rem;
}

.split-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.benefit-list {
  border-top: 1px solid var(--line-strong);
}

.benefit-list article {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 12rem;
  padding: 1.5rem;
  border-top: 3px solid var(--accent);
  background: var(--soft);
  gap: 1.25rem;
  grid-template-columns: auto 1fr;
}

.process-list li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 800;
}

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

.about-layout {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
}

.about-layout__visual {
  position: relative;
  min-height: 25rem;
  display: grid;
  padding: 2rem;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about-layout__visual::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border: 2rem solid var(--accent-light);
  border-radius: 50%;
  content: "";
}

.about-layout__visual img {
  width: min(85%, 19rem);
  margin: auto;
}

.about-layout__visual p {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.35;
}

.about-layout__visual span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-area-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
}

.service-area-layout > div > p:last-child {
  max-width: 62ch;
  color: var(--muted-ink);
  font-size: 1.08rem;
}

.quick-facts {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.quick-facts div {
  display: grid;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
  grid-template-columns: minmax(7rem, 0.65fr) minmax(0, 1fr);
}

.quick-facts dt {
  color: var(--muted-ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quick-facts dd {
  margin: 0;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  background: transparent;
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease;
}

.faq-list details[open] {
  background: var(--paper);
}

.faq-list summary {
  min-height: 4.2rem;
  display: flex;
  padding: 1rem 2rem 1rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary:hover {
  color: var(--accent);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  min-width: 2rem;
  min-height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  content: "+";
}

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

.faq-list details p {
  max-width: 60ch;
  padding: 0 2rem 1.25rem 0;
  color: var(--muted-ink);
}

.contact-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: var(--header-height);
  color: #fff;
  background: var(--accent-dark);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
}

.contact-layout > div:first-child > p:last-child {
  max-width: 55ch;
  color: #dbe6f2;
}

.contact-section .eyebrow {
  color: #f5b75d;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
}

.contact-card > a,
.contact-card > div {
  display: flex;
  min-height: 3.6rem;
  padding: 0.75rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
  text-align: right;
  text-decoration: none;
}

.contact-card > a:hover {
  color: var(--accent);
}

.contact-card span {
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card p {
  margin: 1rem 0 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #2a4d75;
  color: #dbe6f2;
  background: #081b31;
  font-size: 0.86rem;
}

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

.site-footer p {
  margin-bottom: 0;
}

.site-footer strong {
  color: #fff;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
}

.site-footer a {
  min-height: 2rem;
  color: #fff;
}

@media (max-width: 980px) {
  .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-strip li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

  .site-footer__inner > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.6rem;
  }

  body.nav-open::after {
    position: fixed;
    z-index: 90;
    inset: 0;
    background: rgb(8 27 49 / 42%);
    content: "";
  }

  .utility-bar__inner {
    padding: 0.45rem 0;
  }

  .utility-bar p {
    display: none;
  }

  .utility-bar a {
    margin-left: auto;
  }

  .brand img {
    width: 3.35rem;
    height: 3.35rem;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 0.65rem;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }

  .nav-toggle__label {
    font-size: 0.84rem;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-bottom: 1px solid var(--line-strong);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    width: min(calc(100% - 2rem), var(--max-width));
    margin-inline: auto;
    padding: 0.75rem 0 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav a {
    min-height: 3.25rem;
    padding-inline: 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .hero__layout,
  .split-layout,
  .about-layout,
  .service-area-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__visual img {
    width: min(100%, 24rem);
  }

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

  .process-list li {
    min-height: auto;
  }

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

  .about-layout__visual {
    min-height: 18rem;
  }

  .contact-layout {
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .brand span {
    max-width: 9rem;
    line-height: 1.1;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .button-group,
  .button {
    width: 100%;
  }

  .trust-strip ul,
  .card-grid--four {
    grid-template-columns: 1fr;
  }

  .trust-strip li,
  .trust-strip li:first-child,
  .trust-strip li:nth-child(odd) {
    min-height: 3rem;
    padding: 0.65rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-strip li:first-child {
    border-top: 0;
  }

  .card {
    min-height: auto;
  }

  .card__number {
    margin-bottom: 1.5rem;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .contact-card > a,
  .contact-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__inner > p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
