:root {
  --navy-950: #061824;
  --navy-900: #0a2232;
  --navy-800: #12384e;
  --charcoal-900: #17232c;
  --charcoal-700: #3c4b56;
  --charcoal-600: #53616b;
  --orange-600: #b84a04;
  --orange-500: #f27822;
  --orange-100: #fff0e5;
  --paper: #ffffff;
  --mist: #f3f6f7;
  --line: #d9e1e5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #245f49;
  --shadow-sm: 0 10px 30px rgba(6, 24, 36, 0.08);
  --shadow-lg: 0 26px 70px rgba(6, 24, 36, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --content: 1180px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: var(--charcoal-900);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--orange-600);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
  font-size: 0.875rem;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-meta,
.utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange-500);
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  color: var(--paper);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(6, 24, 36, 0.1);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(6, 24, 36, 0.16);
}

.brand-copy {
  display: grid;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--charcoal-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav > a,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--charcoal-700);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown.current > summary {
  color: var(--navy-950);
  background: var(--mist);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] > summary::after {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 340px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--charcoal-700);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--navy-950);
  background: var(--mist);
}

.nav-cta {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--navy-950);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 19px;
  color: var(--paper);
  background: var(--orange-600);
  border: 1px solid var(--orange-600);
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  content: "→";
  font-size: 1.1em;
}

.button:hover {
  background: #963a02;
  border-color: #963a02;
  box-shadow: 0 9px 20px rgba(216, 95, 12, 0.24);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy-950);
  background: transparent;
  border-color: rgba(6, 24, 36, 0.28);
}

.button-secondary:hover {
  color: var(--paper);
  background: var(--navy-950);
  border-color: var(--navy-950);
  box-shadow: none;
}

.button-light {
  color: var(--navy-950);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.button-ghost-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--paper);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.87rem;
}

.button-small::after {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #ff9b54;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 46px 46px;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: 35%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(242, 120, 34, 0.17), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 56px;
  padding-block: 76px;
}

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

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.25rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero .lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.07rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

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

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-reassurance li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-reassurance li::before {
  width: 6px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 2px;
  content: "";
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 24, 36, 0.82));
  content: "";
}

.hero-photo-frame img {
  width: 100%;
  min-height: 510px;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: 61% center;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1.45;
}

.caption-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--paper);
  background: var(--orange-600);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 900;
}

.photo-caption strong {
  display: block;
  color: var(--paper);
  font-size: 1rem;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: var(--paper);
  background: var(--navy-800);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-index {
  color: #ff9b54;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.trust-item span:last-child {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
  line-height: 1.45;
}

.section {
  padding-block: 104px;
}

.section-sm {
  padding-block: 76px;
}

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

.section-dark {
  color: var(--paper);
  background: var(--navy-950);
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-head-row .section-head {
  margin-bottom: 0;
}

.section h2,
.section-sm h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4.1vw, 3.55rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-dark h2,
.section-dark h3 {
  color: var(--paper);
}

.section-head p,
.section-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--charcoal-600);
  font-size: 1.08rem;
}

.section-dark .section-head p,
.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.68);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 rgba(6, 24, 36, 0);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(216, 95, 12, 0.42);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.card-code {
  margin-bottom: 34px;
  color: var(--orange-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3,
.detail-card h3,
.value-card h3,
.process-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.28rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.service-card p,
.detail-card p,
.value-card p,
.process-card p {
  margin: 13px 0 0;
  color: var(--charcoal-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 850;
}

.card-link span:last-child {
  color: var(--orange-600);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.service-card:hover .card-link span:last-child {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.split-copy > p {
  color: var(--charcoal-600);
  font-size: 1.05rem;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-media::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 58%;
  height: 45%;
  background: var(--orange-100);
  border-radius: var(--radius-lg);
  content: "";
}

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

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--charcoal-700);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--orange-100);
  border: 1px solid rgba(216, 95, 12, 0.32);
  border-radius: 4px;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.64em;
  left: 5px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--orange-600);
  border-left: 2px solid var(--orange-600);
  content: "";
  transform: rotate(-45deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-card {
  min-height: 260px;
  padding: 30px;
  background: var(--paper);
}

.process-card .number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: 9px;
  font-size: 0.83rem;
  font-weight: 900;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 42px 42px;
  border-radius: var(--radius-lg);
}

.dark-panel::after {
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(242, 120, 34, 0.19), transparent 68%);
  border-radius: 50%;
  content: "";
}

.panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}

.dark-panel h2 {
  color: var(--paper);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.document-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.document-list a,
.document-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 15px 18px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 750;
  text-decoration: none;
}

.document-list a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.document-list span:last-child {
  color: #ff9b54;
}

.audience-band {
  color: var(--paper);
  background: var(--navy-800);
}

.audience-inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 70px;
}

.audience-inner h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 700;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 20px 56px 20px 0;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--orange-600);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 58px 26px 0;
  color: var(--charcoal-600);
}

.faq-answer p:first-child {
  margin-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  color: var(--paper);
  background: var(--orange-600);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 62%, rgba(6, 24, 36, 0.14) 62%),
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  content: "";
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 60px;
}

.cta-inner h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.cta-inner p {
  max-width: 680px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 80px 88px;
  color: var(--paper);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--navy-950);
  background-size: 46px 46px;
}

.page-hero::after {
  position: absolute;
  top: -140px;
  right: 5%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(242, 120, 34, 0.2), transparent 67%);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--paper);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.65rem, 6vw, 4.85rem);
}

.page-hero .lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.intro-label {
  color: var(--orange-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-copy h2 {
  margin-bottom: 24px;
}

.intro-copy > p:first-of-type {
  margin-top: 0;
  color: var(--charcoal-700);
  font-size: 1.14rem;
}

.intro-copy p {
  color: var(--charcoal-600);
}

.value-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.detail-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.value-card {
  min-height: 238px;
}

.value-number,
.detail-kicker {
  display: block;
  margin-bottom: 32px;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.detail-card {
  min-height: 290px;
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--charcoal-600);
}

.detail-card li + li {
  margin-top: 8px;
}

.detail-card a,
.split-copy a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration-color: rgba(184, 74, 4, 0.55);
  text-underline-offset: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 72px;
}

.prose h2 {
  margin: 0 0 22px;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.prose h3 {
  margin: 42px 0 14px;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.25;
}

.prose p,
.prose li {
  color: var(--charcoal-600);
}

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

.prose li + li {
  margin-top: 9px;
}

.prose a:not(.button) {
  color: var(--navy-800);
  font-weight: 750;
  text-decoration-color: rgba(216, 95, 12, 0.55);
  text-underline-offset: 3px;
}

.sidebar-card {
  position: sticky;
  top: 140px;
  padding: 28px;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: var(--radius-md);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.45rem;
  line-height: 1.25;
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.sidebar-card .button {
  width: 100%;
  margin-top: 12px;
}

.sidebar-card .plain-link {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 750;
  text-align: center;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 18px 20px;
  color: var(--navy-950);
  background: var(--paper);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.service-index a:hover {
  background: var(--orange-100);
}

.service-index a span:last-child {
  color: var(--orange-600);
}

.note-panel {
  padding: 22px 24px;
  color: var(--charcoal-700);
  background: var(--orange-100);
  border-left: 4px solid var(--orange-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.note-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
}

.review-note {
  padding: 22px 24px;
  color: #5c3b24;
  background: #fff8e8;
  border: 1px solid #e8c986;
  border-radius: var(--radius-sm);
}

.review-note strong {
  display: block;
  margin-bottom: 7px;
  color: #4c301d;
}

.training-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
}

.training-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.training-feature-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 70px);
  color: var(--paper);
}

.training-feature-copy h2 {
  color: var(--paper);
}

.training-feature-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.training-feature-copy .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.training-feature-copy .check-list li::before {
  background: rgba(242, 120, 34, 0.16);
  border-color: rgba(242, 120, 34, 0.55);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 40px;
}

.timeline::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--paper);
  background: var(--orange-600);
  border: 5px solid var(--paper);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.timeline-copy h3 {
  margin: 6px 0 7px;
  color: var(--navy-950);
  font-size: 1.22rem;
}

.timeline-copy p {
  margin: 0;
  color: var(--charcoal-600);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 70px;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-copy > p {
  color: var(--charcoal-600);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 15px;
  padding: 17px;
  color: var(--navy-950);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
}

.contact-method:hover {
  border-color: rgba(216, 95, 12, 0.5);
}

.contact-method-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--charcoal-600);
  font-size: 0.88rem;
  word-break: break-word;
}

.form-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.form-card > p {
  margin-top: 0;
  color: var(--charcoal-600);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

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

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

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

.field label,
.field legend {
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--charcoal-900);
  background: var(--paper);
  border: 1px solid #b9c5cb;
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 3px rgba(242, 120, 34, 0.16);
}

.field small {
  color: var(--charcoal-600);
  font-size: 0.78rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--charcoal-600);
  font-size: 0.84rem;
  line-height: 1.5;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange-600);
}

.checkbox-field a {
  color: var(--navy-800);
  font-weight: 700;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
}

.form-footer small {
  max-width: 360px;
  color: var(--charcoal-600);
  font-size: 0.76rem;
}

.form-status {
  margin: 20px 0 0;
  padding: 14px 16px;
  color: #163f31;
  background: #eaf6f1;
  border: 1px solid #a9d5c4;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

[hidden] {
  display: none !important;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: 140px;
  display: grid;
  gap: 3px;
}

.legal-nav a {
  padding: 9px 11px;
  color: var(--charcoal-600);
  border-left: 2px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--navy-950);
  border-color: var(--orange-600);
}

.legal-copy h2 {
  margin: 54px 0 18px;
  color: var(--navy-950);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  color: var(--navy-950);
  font-size: 1.15rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--charcoal-600);
}

.legal-copy ul {
  padding-left: 22px;
}

.legal-copy li + li {
  margin-top: 8px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.85fr 1fr;
  gap: 56px;
  padding-block: 72px;
}

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

.footer-brand .brand {
  color: var(--paper);
}

.footer-brand .brand img {
  width: 62px;
  height: 62px;
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  margin: 23px 0 0;
  font-size: 0.9rem;
}

.footer-column h2,
.footer-column h3 {
  margin: 5px 0 20px;
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.footer-list a {
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--paper);
}

.footer-contact a {
  word-break: break-word;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .utility-meta span:last-child,
  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 38px;
  }

  .card-grid,
  .value-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 110;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 22px 20px 44px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

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

  .site-nav > a,
  .nav-dropdown > summary {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.05rem;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    padding: 7px 0 10px 14px;
    background: var(--mist);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 68px;
  }

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

  .hero-photo-frame img {
    min-height: 420px;
    aspect-ratio: 16 / 9;
  }

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

  .trust-item {
    min-height: 90px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split,
  .panel-grid,
  .intro-grid,
  .content-grid,
  .training-feature,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .split-media {
    order: -1;
  }

  .sidebar-card,
  .legal-nav {
    position: static;
  }

  .legal-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .training-feature img {
    min-height: 390px;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 32px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--content));
  }

  .nav-shell {
    min-height: 70px;
    gap: 12px;
  }

  .site-nav {
    top: 70px;
    padding: 14px 12px 32px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-copy {
    min-width: 0;
  }

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

  .brand-copy span {
    margin-top: 4px;
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .menu-toggle {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .hero-grid {
    gap: 34px;
    padding-block: 44px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.25rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: pretty;
  }

  .hero .lead,
  .page-hero .lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-reassurance {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions,
  .section-actions,
  .page-hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .section-actions .button,
  .page-hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-photo-frame img {
    min-height: 285px;
    aspect-ratio: 16 / 10;
    object-position: 61% center;
  }

  .photo-caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    font-size: 0.78rem;
  }

  .caption-number {
    width: 42px;
    height: 42px;
  }

  .photo-caption strong {
    font-size: 0.9rem;
  }

  .section {
    padding-block: 60px;
  }

  .section-sm {
    padding-block: 48px;
  }

  .section h2,
  .section-sm h2,
  .cta-inner h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.08;
    text-wrap: pretty;
  }

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

  .section-head-row {
    margin-bottom: 32px;
  }

  .section-head-row {
    display: block;
  }

  .section-head-row > .button {
    width: 100%;
    margin-top: 25px;
  }

  .card-grid,
  .value-grid,
  .detail-grid,
  .process-grid,
  .service-index,
  .form-grid,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 23px;
  }

  .process-card {
    min-height: 0;
    padding: 24px;
  }

  .process-card .number {
    margin-bottom: 26px;
  }

  .value-card,
  .detail-card {
    min-height: 0;
    padding: 23px;
  }

  .value-number,
  .detail-kicker {
    margin-bottom: 22px;
  }

  .split-media img {
    min-height: 280px;
  }

  .training-feature img {
    min-height: 270px;
  }

  .page-hero {
    padding-block: 45px 52px;
  }

  .breadcrumbs {
    margin-bottom: 20px;
  }

  .dark-panel,
  .training-feature-copy,
  .form-card,
  .sidebar-card {
    padding: 24px;
  }

  .document-list a,
  .document-list div,
  .service-index a {
    align-items: flex-start;
    min-width: 0;
    padding: 15px;
  }

  .document-list a > :first-child,
  .document-list div > :first-child,
  .service-index a > :first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-method {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .contact-method-mark {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }

  .field,
  .field input,
  .field select,
  .field textarea {
    min-width: 0;
  }

  .field select {
    max-width: 100%;
  }

  .checkbox-field {
    grid-template-columns: 22px minmax(0, 1fr);
    font-size: 0.88rem;
  }

  .form-footer {
    display: grid;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 56px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding-block: 20px;
  }

  .footer-list a,
  .footer-contact {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 370px) {
  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy span {
    font-size: 0.58rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.08rem;
  }

  .button {
    padding-inline: 14px;
  }
}

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

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

@media print {
  .utility-bar,
  .site-header,
  .cta-band,
  .site-footer,
  .review-note,
  .sidebar-card {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .section-sm,
  .page-hero {
    padding-block: 28px;
  }

  .page-hero {
    color: #000;
    background: #fff;
    border-bottom: 1px solid #bbb;
  }

  .page-hero h1,
  .page-hero .lead,
  .breadcrumbs {
    color: #000;
  }
}
