:root {
  --navy: #102A43;
  --blue: #3563FF;
  --lime: #C7F34A;
  --blue-soft: #8FA9FF;
  --paper: #FBFCFE;
  --mist: #F1F5FA;
  --white: #fff;
  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --font: "M PLUS 1p", sans-serif;
  --font-en: "DM Sans", sans-serif;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header { transition: none; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); }
a:hover { color: var(--navy); }
input, select, textarea, button { font-family: inherit; }
p { margin: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 72px);
  position: relative;
}

.grid-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px 64px;
  align-items: end;
}

.stack { display: flex; flex-direction: column; }
.stack--16 { gap: 16px; }
.stack--18 { gap: 18px; }
.stack--20 { gap: 20px; }
.stack--24 { gap: 24px; }
.stack--28 { gap: 28px; }

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

.eyebrow {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.eyebrow--lime { color: var(--lime); }
.eyebrow--blue { color: var(--blue); }

.section-title {
  margin: 16px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.lede {
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.body-text { font-size: 16px; line-height: 1.9; }
.body-text--muted { color: rgba(16, 42, 67, 0.7); font-size: 14px; line-height: 1.8; }
.body-text--on-dark { font-size: 16px; line-height: 2; color: rgba(255, 255, 255, 0.88); }

.title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 3px solid var(--lime);
}

.focus-blue:focus { outline: 3px solid var(--blue); outline-offset: 4px; border-radius: 2px; }
.focus-blue-tight:focus { outline: 3px solid var(--blue); outline-offset: 3px; }
.focus-blue-input:focus { outline: 3px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.focus-lime:focus { outline: 3px solid var(--lime); outline-offset: 3px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 254, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(16, 42, 67, 0.12);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.logo-img--dark { display: none; }

.site-header.is-scrolled .logo-img--white { display: none; }
.site-header.is-scrolled .logo-img--dark { display: block; }

.bl-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--white);
  border-bottom-color: var(--lime);
}

.site-header.is-scrolled .nav-link { color: var(--navy); }
.site-header.is-scrolled .nav-link:hover {
  color: var(--navy);
  border-bottom-color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--lime); color: var(--navy); }

.site-header.is-scrolled .nav-cta {
  background: var(--navy);
  color: var(--white);
}

.site-header.is-scrolled .nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}

.bl-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.site-header.is-scrolled .bl-menu-btn {
  border-color: var(--navy);
  color: var(--navy);
}

.site-header:not(.is-scrolled) .focus-blue:focus,
.site-header:not(.is-scrolled) .focus-blue-tight:focus {
  outline-color: var(--lime);
}

.bl-mobile-nav {
  border-top: 1px solid rgba(16, 42, 67, 0.12);
  background: var(--paper);
  padding: 16px var(--gutter) 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bl-mobile-nav[hidden] { display: none !important; }

.mobile-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
}

.mobile-link:focus { outline: 3px solid var(--blue); outline-offset: 2px; }
.mobile-link--last { border-bottom: 0; }

.mobile-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  margin-top: 12px;
}

.site-header:not(.is-scrolled) .bl-mobile-nav {
  background: rgba(16, 42, 67, 0.94);
  border-top-color: rgba(255, 255, 255, 0.18);
}

.site-header:not(.is-scrolled) .mobile-link {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.site-header:not(.is-scrolled) .mobile-link:focus {
  outline-color: var(--lime);
}

.site-header:not(.is-scrolled) .mobile-cta {
  background: var(--white);
  color: var(--navy);
}

.site-header:not(.is-scrolled) .mobile-cta:hover { color: var(--navy); }

@media (min-width: 901px) {
  .bl-menu-btn { display: none; }
}

@media (max-width: 900px) {
  .bl-nav { display: none; }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(72px + clamp(32px, 6vw, 56px)) 0 clamp(64px, 8vw, 104px);
  color: var(--white);
  box-sizing: border-box;
}

@media (min-width: 901px) {
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0;
  }
}

.bl-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(16, 42, 67, 0.78) 0%, rgba(16, 42, 67, 0.42) 48%, rgba(16, 42, 67, 0.22) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__head {
  min-width: 0;
}

.hero__head h1 {
  margin: 16px 0 0;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: pretty;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 901px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--navy);
  padding: 15px 28px;
}

.btn-hero-primary:hover { background: var(--lime); color: var(--navy); }

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 14px 28px;
}

.btn-hero-secondary:hover { border-color: var(--lime); color: var(--lime); }

.hero-video-btn {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 4vw, 40px);
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.45);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-video-btn:hover { border-color: var(--lime); color: var(--lime); }

.eq {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
}

.eq--hero { margin-top: 0; }

.eq span {
  display: block;
  width: 4px;
  border-radius: 2px;
}

.eq span:nth-child(1) { height: 8px; }
.eq span:nth-child(2) { height: 14px; }
.eq span:nth-child(3) { height: 22px; }
.eq span:nth-child(4) { height: 32px; }
.eq span:nth-child(5) { height: 40px; }
.eq span:nth-child(6) { height: 32px; }
.eq span:nth-child(7) { height: 22px; }
.eq span:nth-child(8) { height: 14px; }
.eq span:nth-child(9) { height: 8px; }
.eq span:nth-child(10) { height: 12px; }
.eq span:nth-child(11) { height: 26px; }
.eq span:nth-child(12) { height: 38px; }
.eq span:nth-child(13) { height: 26px; }
.eq span:nth-child(14) { height: 12px; }
.eq span:nth-child(15) { height: 8px; }
.eq span:nth-child(16) { height: 18px; }
.eq span:nth-child(17) { height: 30px; }
.eq span:nth-child(18) { height: 40px; }
.eq span:nth-child(19) { height: 30px; }
.eq span:nth-child(20) { height: 18px; }
.eq span:nth-child(21) { height: 8px; }
.eq span:nth-child(22) { height: 14px; }
.eq span:nth-child(23) { height: 22px; }
.eq span:nth-child(24) { height: 10px; }

.eq--hero span:nth-child(odd) { background: var(--white); }
.eq--hero span:nth-child(even) { background: var(--blue-soft); }
.eq--hero span:nth-child(5),
.eq--hero span:nth-child(11),
.eq--hero span:nth-child(17),
.eq--hero span:nth-child(23) { background: var(--lime); }

.eq--contact span:nth-child(odd) { background: var(--navy); }
.eq--contact span:nth-child(even) { background: var(--blue); }
.eq--contact span:nth-child(5),
.eq--contact span:nth-child(11),
.eq--contact span:nth-child(17),
.eq--contact span:nth-child(23) { background: var(--lime); }

.deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco--about-lg {
  right: -160px;
  top: -160px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.deco--about-sm {
  right: -40px;
  top: -40px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(53, 99, 255, 0.35);
}

.deco--area {
  left: -120px;
  bottom: -200px;
  width: 440px;
  height: 440px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.about-lines {
  margin-top: 32px;
  gap: 6px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.about-copy {
  justify-content: end;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.badge__dot--lime { background: var(--lime); }
.badge__dot--blue { background: var(--blue); }
.badge__dot--white { background: var(--white); }

.services-head { margin-bottom: clamp(40px, 5vw, 64px); }

.service-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--navy);
}

.service {
  display: grid;
  grid-template-columns: minmax(56px, 88px) minmax(0, 1fr);
  gap: 16px clamp(16px, 3vw, 40px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.18);
}

.service__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--blue);
  line-height: 1;
  padding-top: 6px;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px 48px;
}

.service__kicker {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--blue);
}

.tag-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(16, 42, 67, 0.6);
}

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

.tag-list li {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border: 1.5px solid rgba(16, 42, 67, 0.25);
  border-radius: 999px;
}

.strength-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 56px);
}

@media (min-width: 901px) {
  .strength-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.strength {
  border-top: 2px solid var(--navy);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strength h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--navy);
  position: relative;
  display: block;
}

.mark--blue { border-color: var(--blue); }

.mark::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: var(--lime);
}

.steps {
  list-style: none;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 32px 20px;
}

.step {
  border-top: 2px solid var(--navy);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.step--last { border-top-color: var(--blue); }

.step__dot {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
}

.step--last .step__dot {
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--blue);
}

.step__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.step__name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.area-lead {
  margin: 24px 0 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.7;
}

.area-copy { justify-content: end; }

.chip {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.chip--accent {
  border-color: var(--lime);
  color: var(--lime);
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.faq-list {
  grid-column: span 2;
  min-width: 0;
  border-top: 2px solid var(--navy);
}

.faq-item { border-bottom: 1px solid rgba(16, 42, 67, 0.18); }

.faq-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { content: ""; }
.faq-summary:hover { color: var(--blue); }
.faq-summary:focus { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 18px;
  line-height: 1;
}

.faq-answer {
  margin: 0;
  padding: 0 44px 24px 0;
  font-size: 16px;
  line-height: 1.9;
}

.faq-answer--stack {
  padding: 0 44px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 1.9;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 72px);
}

.contact-title {
  margin: 16px 0 0;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-lead {
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
  max-width: 440px;
}

.form {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fax-line {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label { font-size: 15px; font-weight: 700; }

.req,
.opt {
  font-size: 12px;
  margin-left: 4px;
}

.req { color: var(--blue); font-weight: 700; }
.opt { color: rgba(16, 42, 67, 0.6); font-weight: 500; }

.field {
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid rgba(16, 42, 67, 0.35);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

textarea.field {
  line-height: 1.7;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--blue);
  flex: none;
}

.consent a { color: var(--blue); font-weight: 700; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 4px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border: 0;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 999px;
  cursor: pointer;
}

.btn-submit:hover { background: var(--blue); }

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-submit:disabled:hover { background: var(--navy); }

.form-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 700;
}

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

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 32px;
  align-items: start;
}

.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
  align-self: flex-start;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: flex-start;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.footer-link:hover { color: var(--lime); }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.privacy-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-link:hover { color: var(--lime); }

.copyright {
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.site-header--solid {
  background: rgba(251, 252, 254, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(16, 42, 67, 0.12);
}

.site-header--solid .logo-img--white { display: none; }
.site-header--solid .logo-img--dark { display: block; }
.site-header--solid .nav-link { color: var(--navy); }
.site-header--solid .nav-link:hover {
  color: var(--navy);
  border-bottom-color: var(--blue);
}
.site-header--solid .nav-cta {
  background: var(--navy);
  color: var(--white);
}
.site-header--solid .nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}
.site-header--solid .bl-menu-btn {
  border-color: var(--navy);
  color: var(--navy);
}
.site-header--solid:not(.is-scrolled) .focus-blue:focus,
.site-header--solid:not(.is-scrolled) .focus-blue-tight:focus {
  outline-color: var(--blue);
}
.site-header--solid .bl-mobile-nav {
  background: var(--paper);
  border-top-color: rgba(16, 42, 67, 0.12);
}
.site-header--solid .mobile-link {
  color: var(--navy);
  border-bottom-color: rgba(16, 42, 67, 0.1);
}
.site-header--solid .mobile-link:focus { outline-color: var(--blue); }
.site-header--solid .mobile-cta {
  background: var(--navy);
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: calc(72px + clamp(40px, 6vw, 72px)) 0 clamp(48px, 6vw, 80px);
}

.page-hero__meta {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.policy {
  max-width: 760px;
}

.policy-lead {
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.policy-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--navy);
}

.policy-item {
  display: grid;
  grid-template-columns: minmax(56px, 72px) minmax(0, 1fr);
  gap: 16px clamp(16px, 3vw, 32px);
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.18);
}

.policy-item__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--blue);
  line-height: 1.4;
  padding-top: 4px;
}

.policy-item h2 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.5;
}

.policy-item .stack { gap: 14px; }

.policy-item ul {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 1.9;
}

.policy-note {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 20px 24px;
  border: 1.5px solid rgba(16, 42, 67, 0.18);
  border-radius: 8px;
  background: var(--mist);
}

.policy-note p + p { margin-top: 12px; }
