:root {
  --ink: #0b1628;
  --ink-2: #14243a;
  --cobalt: #2f5bff;
  --cobalt-dark: #1d43d8;
  --cyan: #00b8d9;
  --coral: #d93355;
  --coral-dark: #b32345;
  --mint: #12b886;
  --mint-soft: #eafaf6;
  --yellow: #f4b942;
  --paper: #ffffff;
  --surface: #f5f8fb;
  --surface-2: #edf2f7;
  --line: #d7e0e9;
  --text: #25364d;
  --muted: #5f6f82;
  --shadow: 0 20px 50px rgba(11, 22, 40, 0.12);
  --shadow-soft: 0 12px 30px rgba(11, 22, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1.2em;
}

h1,
h2,
h3 {
  margin: 0 0 0.45em;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 66px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 27px;
}

section[id] {
  scroll-margin-top: 92px;
}

.wrap {
  width: min(calc(100% - 48px), 1220px);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid rgba(47, 91, 255, 0.35);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #75ecdc;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.button.primary {
  background: var(--cobalt);
  color: var(--paper);
}

.button.primary:hover {
  background: var(--coral);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(11, 22, 40, 0.25);
  color: var(--paper);
}

.button.ghost:hover {
  border-color: var(--paper);
  background: rgba(11, 22, 40, 0.55);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.dark:hover {
  background: var(--coral-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt-dark);
  font-weight: 800;
}

.text-link span,
.service-panel a span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.service-panel a:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(11, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(11, 22, 40, 0.05);
}

.nav-row {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 180px;
  height: auto;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #223249;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--coral);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.sales-phone {
  display: grid;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.sales-phone span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(650px, calc(100svh - 112px));
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background: rgba(5, 14, 28, 0.3);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(650px, calc(100svh - 112px));
  align-items: center;
  padding: 58px 0 68px;
}

.hero-copy {
  width: min(690px, 58%);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(5, 14, 28, 0.35);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #edf6ff;
  font-size: 21px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(5, 14, 28, 0.45);
}

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

.hero-assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #edf6ff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding: 0 18px 0 16px;
}

.hero-assurances li:first-child {
  padding-left: 16px;
}

.hero-assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75ecdc;
}

.service-rail {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-rail a {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 2px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--cobalt);
  transition: background-color 160ms ease;
}

.service-rail a:first-child {
  border-left: 1px solid var(--line);
}

.service-rail a:nth-child(2) {
  box-shadow: inset 0 4px 0 var(--cyan);
}

.service-rail a:nth-child(3) {
  box-shadow: inset 0 4px 0 var(--coral);
}

.service-rail a:nth-child(4) {
  box-shadow: inset 0 4px 0 var(--mint);
}

.service-rail a:hover {
  background: var(--surface);
}

.service-rail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.service-rail strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.service-rail small {
  color: var(--muted);
  font-size: 14px;
}

.statement-section {
  background: var(--surface);
}

.statement-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: start;
}

.statement-grid .eyebrow {
  margin-top: 10px;
}

.statement-grid h2,
.statement-copy {
  margin-bottom: 0;
}

.statement-copy {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 44px;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: 54px;
  align-items: end;
}

.heading-split > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
}

.featured-service {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.featured-service-media {
  min-height: 520px;
}

.featured-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-service-copy {
  display: grid;
  align-content: center;
  padding: 54px;
}

.featured-service-copy h3 {
  color: var(--paper);
  font-size: 38px;
}

.featured-service-copy p {
  color: #d9e6f2;
  font-size: 18px;
}

.service-index {
  display: block;
  margin-bottom: 20px;
  color: #75ecdc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plain-checks {
  display: grid;
  gap: 9px;
  margin: 8px 0 28px;
  padding: 0;
  color: #eef5fb;
  font-size: 15px;
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding-left: 22px;
}

.plain-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--coral);
}

.featured-service .text-link {
  color: #75ecdc;
}

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

.service-panel {
  display: grid;
  min-height: 320px;
  align-content: start;
  padding: 34px;
  border-radius: 8px;
}

.service-panel h3 {
  font-size: 30px;
}

.service-panel p {
  margin-bottom: 28px;
  font-size: 16px;
}

.service-panel a {
  display: inline-flex;
  align-self: end;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 850;
}

.service-panel-blue {
  background: var(--cobalt);
  color: var(--paper);
}

.service-panel-blue h3,
.service-panel-blue .service-index,
.service-panel-blue a {
  color: var(--paper);
}

.service-panel-light {
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-panel-light .service-index,
.service-panel-light a {
  color: var(--cobalt-dark);
}

.service-panel-coral {
  background: var(--coral);
  color: var(--paper);
}

.service-panel-coral h3,
.service-panel-coral .service-index,
.service-panel-coral a {
  color: var(--paper);
}

.operations-section {
  background: var(--surface);
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.operations-media {
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.operations-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.operations-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.operations-list {
  margin-top: 34px;
  border-top: 1px solid #cbd5df;
}

.operations-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #cbd5df;
}

.operations-list span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.operations-list div:nth-child(2) span {
  color: var(--cobalt-dark);
}

.operations-list div:nth-child(3) span {
  color: #007f97;
}

.operations-list div:nth-child(4) span {
  color: #087a5d;
}

.operations-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.compliance-section {
  border-top: 1px solid #c9eee4;
  border-bottom: 1px solid #c9eee4;
  background: var(--mint-soft);
}

.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.compliance-copy {
  padding-right: 20px;
}

.compliance-copy > p:not(.eyebrow) {
  color: #405d58;
  font-size: 18px;
}

.compliance-copy .button {
  margin-top: 10px;
}

.compliance-measures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #a8dcd0;
  border-left: 1px solid #a8dcd0;
}

.compliance-measures article {
  min-height: 228px;
  padding: 28px;
  border-right: 1px solid #a8dcd0;
  border-bottom: 1px solid #a8dcd0;
}

.compliance-measures span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.compliance-measures article:nth-child(2) span {
  color: var(--cobalt-dark);
}

.compliance-measures article:nth-child(3) span {
  color: #007f97;
}

.compliance-measures article:nth-child(4) span {
  color: #087a5d;
}

.compliance-measures h3 {
  margin-top: 18px;
  font-size: 22px;
}

.compliance-measures p {
  margin-bottom: 0;
  color: #46645e;
  font-size: 15px;
}

.process-section {
  background: var(--ink);
  color: var(--paper);
}

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

.process-section .heading-split > p {
  color: #c8d7e5;
}

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

.process-track li {
  position: relative;
  min-height: 230px;
  padding: 32px 30px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.28);
}

.process-track li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.process-track li:nth-child(2)::before {
  background: var(--cyan);
}

.process-track li:nth-child(3)::before {
  background: var(--yellow);
}

.process-track li:nth-child(4)::before {
  background: var(--mint);
}

.process-track span {
  color: #75ecdc;
  font-size: 13px;
  font-weight: 900;
}

.process-track h3 {
  margin-top: 16px;
  font-size: 27px;
}

.process-track p {
  max-width: 245px;
  color: #c8d7e5;
  font-size: 15px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  width: 30px;
  height: 30px;
  color: var(--cobalt);
  font-size: 26px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -3px 50px 24px 0;
  color: var(--muted);
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 72px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  margin-top: 36px;
  border-top: 1px solid #cbd5df;
}

.contact-details p {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #cbd5df;
}

.contact-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--cobalt-dark);
  font-weight: 800;
}

.contact-details strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #bfcbd7;
  border-radius: 4px;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cobalt);
  outline: 3px solid rgba(47, 91, 255, 0.18);
}

.contact-form .button {
  width: fit-content;
  min-width: 170px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 66px 0 28px;
  border-top: 5px solid var(--coral);
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--paper);
  font-size: 14px;
}

.footer-grid a,
.footer-grid p {
  color: #c8d7e5;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #75ecdc;
}

.footer-brand img {
  width: 170px;
}

.footer-brand p {
  max-width: 330px;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9fb0c2;
  font-size: 13px;
}

.legal-page {
  min-height: 70vh;
  padding: 86px 0 100px;
  background: var(--surface);
}

.legal-page .wrap {
  max-width: 940px;
}

.legal-page h1 {
  font-size: 54px;
}

.legal-card {
  margin-top: 32px;
  padding: 40px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--cobalt);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.legal-card a {
  color: var(--cobalt-dark);
  font-weight: 800;
}

.compliance-page .legal-card {
  border-top-color: var(--mint);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-grid article {
  padding: 26px;
  background: var(--paper);
}

.policy-grid h2 {
  font-size: 22px;
}

.policy-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.notice-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--surface);
}

.notice-card {
  width: min(620px, 100%);
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.notice-card h1 {
  font-size: 44px;
}

@media (max-width: 1180px) {
  .nav-row {
    gap: 18px;
  }

  .main-nav {
    gap: 17px;
    font-size: 13px;
  }

  .sales-phone {
    display: none;
  }

  .hero-copy {
    width: min(670px, 62%);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 41px;
  }

  .home-header .nav-row {
    min-height: 74px;
  }

  .home-header .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(11, 22, 40, 0.12);
  }

  .home-header .main-nav.is-open {
    display: flex;
  }

  .home-header .main-nav a {
    padding: 11px 0;
    border-bottom: 1px solid #edf1f5;
  }

  .home-header .main-nav a::after {
    display: none;
  }

  .home-header .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-copy {
    width: min(640px, 70%);
  }

  .statement-grid {
    grid-template-columns: 1fr 2fr;
    gap: 24px 40px;
  }

  .statement-copy {
    grid-column: 2;
  }

  .featured-service {
    grid-template-columns: 1fr;
  }

  .featured-service-media {
    min-height: auto;
    aspect-ratio: 2 / 1;
  }

  .featured-service-copy {
    padding: 44px;
  }

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

  .service-panel:last-child {
    grid-column: 1 / -1;
  }

  .operations-layout,
  .compliance-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .operations-media {
    aspect-ratio: 16 / 9;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .contact-grid {
    gap: 48px;
  }

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

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 82px;
  }

  .wrap {
    width: min(calc(100% - 32px), 1220px);
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 37px;
  }

  .hero,
  .hero-inner {
    min-height: min(640px, calc(100svh - 80px));
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    background: rgba(5, 14, 28, 0.58);
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .hero h1 {
    max-width: 600px;
  }

  .hero-lede {
    max-width: 570px;
    font-size: 19px;
  }

  .hero-assurances {
    grid-template-columns: 1fr;
    gap: 9px;
  }

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

  .service-rail a:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .service-rail a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .heading-split,
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .statement-copy {
    grid-column: auto;
  }

  .heading-split > p {
    margin-bottom: 0;
  }

  .service-grid,
  .compliance-measures,
  .process-track,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .service-panel:last-child {
    grid-column: auto;
  }

  .service-panel {
    min-height: 280px;
  }

  .operations-media {
    aspect-ratio: 16 / 10;
  }

  .compliance-measures {
    border-left: 0;
  }

  .compliance-measures article {
    min-height: auto;
    border-left: 1px solid #a8dcd0;
  }

  .process-track {
    gap: 32px;
  }

  .process-track li {
    min-height: auto;
    padding: 28px 0 0;
  }

  .process-track p {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .legal-page h1 {
    font-size: 46px;
  }

  .site-header:not(.home-header) .nav-row {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
  }

  .site-header:not(.home-header) .main-nav {
    width: 100%;
    flex: 1 0 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}

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

  .wrap {
    width: min(calc(100% - 28px), 1220px);
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  .home-header .nav-row {
    min-height: 68px;
  }

  .brand img {
    width: 157px;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: min(610px, calc(100svh - 72px));
  }

  .hero-inner {
    align-items: flex-end;
    padding: 54px 0 46px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero-lede {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero-assurances {
    margin-top: 24px;
    padding-top: 16px;
  }

  .service-rail a {
    min-height: 114px;
    padding: 20px 16px;
  }

  .service-rail strong {
    font-size: 16px;
  }

  .service-rail small {
    font-size: 12px;
  }

  .featured-service-media {
    aspect-ratio: 4 / 3;
  }

  .featured-service-copy {
    padding: 30px 24px 34px;
  }

  .featured-service-copy h3 {
    font-size: 31px;
  }

  .featured-service-copy p {
    font-size: 16px;
  }

  .service-panel {
    min-height: auto;
    padding: 28px 24px;
  }

  .operations-layout,
  .compliance-layout,
  .faq-layout,
  .contact-grid {
    gap: 38px;
  }

  .operations-list div {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .compliance-measures article {
    padding: 24px;
  }

  .contact-details p {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .contact-form,
  .legal-card,
  .notice-card {
    padding: 26px 22px;
  }

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

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

  .legal-page {
    padding: 64px 0 76px;
  }

  .legal-page h1,
  .notice-card h1 {
    font-size: 38px;
  }
}

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

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