:root {
  --brand-blue: #0062fe;
  --brand-blue-700: #0048c5;
  --brand-blue-900: #002a73;
  --brand-orange: #f06230;
  --brand-orange-700: #d94a1b;
  --navy: #071a3d;
  --navy-800: #0b2557;
  --ink: #111827;
  --muted: #5c697b;
  --line: #dce5f2;
  --soft: #f4f7ff;
  --soft-blue: #eaf1ff;
  --white: #ffffff;
  --success: #15803d;
  --danger: #b42318;
  --warning: #9a6700;
  --shadow-sm: 0 8px 24px rgba(7, 26, 61, 0.08);
  --shadow-md: 0 18px 44px rgba(7, 26, 61, 0.13);
  --shadow-lg: 0 28px 70px rgba(7, 26, 61, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1380px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  color: var(--muted);
}

::selection {
  color: var(--white);
  background: var(--brand-blue);
}

:focus-visible {
  outline: 3px solid rgba(0, 98, 254, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, 100%);
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.eyebrow--light {
  color: #dce8ff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

/* Header (legacy aviation chrome — superseded by assets-bu/css/site-chrome.css).
   Height intentionally left unset so the shared BESONG Group header can render
   its full utility bar + nav + service ribbon stack. */
.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: min(215px, 52vw);
  height: auto;
}

.brand__division {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 12px 13px;
  color: #334155;
  border-radius: 9px;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-blue);
  background: var(--soft-blue);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--brand-orange);
  box-shadow: 0 10px 24px rgba(240, 98, 48, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--brand-orange-700);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn--primary {
  color: var(--white);
  background: var(--brand-orange);
  box-shadow: 0 15px 34px rgba(240, 98, 48, 0.26);
}

.btn--primary:hover {
  background: var(--brand-orange-700);
}

.btn--blue {
  color: var(--white);
  background: var(--brand-blue);
  box-shadow: 0 15px 34px rgba(0, 98, 254, 0.23);
}

.btn--blue:hover {
  background: var(--brand-blue-700);
}

.btn--outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.btn--outline:hover {
  color: var(--brand-blue);
  border-color: rgba(0, 98, 254, 0.4);
  background: var(--soft-blue);
}

.btn--light-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn--light-outline:hover {
  background: rgba(255, 255, 255, 0.13);
}

.btn[disabled],
.btn.is-loading {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn__spinner {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Home hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 13%, rgba(0, 98, 254, 0.62), transparent 31%),
    radial-gradient(circle at 3% 95%, rgba(240, 98, 48, 0.23), transparent 30%),
    linear-gradient(135deg, #06142f 0%, var(--navy) 52%, #0a2e6d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(68vw, 760px);
  aspect-ratio: 1;
  top: -38%;
  right: -11%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.027),
    0 0 0 145px rgba(255, 255, 255, 0.018);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  padding: clamp(68px, 9vw, 112px) 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: #dfeaff;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.057em;
}

.hero h1 span {
  color: #76a9ff;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #d5deed;
  font-size: clamp(1.02rem, 1.8vw, 1.21rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  color: #dbe5f5;
  font-size: 0.91rem;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__proof svg {
  width: 17px;
  height: 17px;
  color: #86b2ff;
}

.hero-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 26px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -88px;
  right: -62px;
  background: rgba(0, 98, 254, 0.08);
  border-radius: 50%;
}

.hero-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-panel__label {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #166534;
  background: #ecfdf3;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.13);
}

.route-visual {
  position: relative;
  min-height: 214px;
  margin-bottom: 22px;
  padding: 25px 18px 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 98, 254, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 98, 254, 0.055) 1px, transparent 1px),
    var(--soft);
  background-size: 30px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.route-visual svg {
  width: 100%;
  height: 170px;
}

.route-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

.route-meta div {
  padding: 12px;
  background: var(--soft);
  border-radius: 12px;
}

.route-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-meta dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel .btn {
  width: 100%;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.trust-strip__intro,
.trust-strip__item {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}

.trust-strip__intro {
  color: var(--white);
  background: var(--brand-blue);
}

.trust-strip__intro strong {
  font-size: 1.05rem;
}

.trust-strip__intro span {
  color: #dce9ff;
  font-size: 0.84rem;
}

.trust-strip__item {
  border-left: 1px solid var(--line);
}

.trust-strip__item strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.trust-strip__item span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 98, 254, 0.26);
  box-shadow: var(--shadow-md);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -62px;
  right: -45px;
  background: rgba(0, 98, 254, 0.055);
  border-radius: 50%;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  color: var(--brand-blue);
  background: var(--soft-blue);
  border-radius: 15px;
}

.service-card:nth-child(2n) .service-card__icon {
  color: var(--brand-orange);
  background: #fff1ec;
}

.service-card__icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-blue);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

/* Split feature */
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.operations-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 98, 254, 0.5), transparent 30%),
    linear-gradient(145deg, var(--navy) 0%, #0a2d68 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.operations-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.operations-visual__plane {
  position: absolute;
  width: 60%;
  top: 54px;
  right: -4%;
  color: var(--white);
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.18));
  transform: rotate(-8deg);
}

.operations-visual__card {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 25px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.operations-visual__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.operations-visual__card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

.feature-list__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  background: var(--soft-blue);
  border-radius: 12px;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.feature-list p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 27px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
}

.process-card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 44px;
  color: #82b0ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 3px;
  top: 57px;
  left: 27px;
  background: var(--brand-orange);
  border-radius: 999px;
}

.process-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.process-card p {
  margin-bottom: 0;
  color: #cdd9eb;
  font-size: 0.92rem;
}

/* Industries */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-list li {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(7, 26, 61, 0.05);
}

.industry-list svg {
  width: 17px;
  height: 17px;
  color: var(--brand-blue);
}

/* CTA */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(38px, 6vw, 64px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 98, 254, 0.75), transparent 28%),
    linear-gradient(130deg, var(--navy), #0a2d68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -150px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.035);
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 13px;
  color: var(--white);
}

.cta-panel p {
  max-width: 690px;
  margin-bottom: 0;
  color: #d4dfef;
}

.cta-panel__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* Interior page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 98, 254, 0.6), transparent 30%),
    linear-gradient(135deg, #06142f, var(--navy) 62%, #0b2e6d);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 50px;
  align-items: end;
  padding: clamp(64px, 9vw, 104px) 0;
}

.page-hero h1 {
  max-width: 830px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d5deed;
  font-size: 1.08rem;
}

.page-hero__note {
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.page-hero__note strong {
  display: block;
  margin-bottom: 7px;
}

.page-hero__note span {
  color: #cfdaec;
  font-size: 0.89rem;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.form-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-card {
  padding: clamp(24px, 4vw, 42px);
}

.form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.form-card__intro {
  margin-bottom: 30px;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}

.form-progress__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 11px 12px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-progress__item span {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.72rem;
}

.form-progress__item.is-current {
  color: var(--brand-blue);
  background: var(--soft-blue);
  border-color: rgba(0, 98, 254, 0.16);
}

.form-progress__item.is-current span,
.form-progress__item.is-complete span {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.form-progress__item.is-complete {
  color: var(--navy);
}

.form-step[hidden] {
  display: none !important;
}

.form-step__heading {
  margin-bottom: 22px;
}

.form-step__heading h3 {
  margin-bottom: 7px;
}

.form-step__heading p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.field label .optional {
  color: var(--muted);
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cad5e5;
  border-radius: 10px;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #9fb1c9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 98, 254, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff7f6;
}

.field__hint {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.77rem;
}

.field__error {
  display: none;
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 750;
}

.field [aria-invalid="true"] ~ .field__error {
  display: block;
}

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.choice-card {
  position: relative;
  display: block;
  min-height: 130px;
  padding: 18px 17px 16px 49px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 98, 254, 0.35);
  box-shadow: var(--shadow-sm);
}

.choice-card input {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 18px;
  left: 17px;
  accent-color: var(--brand-blue);
}

.choice-card:has(input:checked) {
  background: var(--soft-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 254, 0.08);
}

.choice-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.choice-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-option {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}

.inline-option:has(input:checked) {
  color: var(--brand-blue);
  background: var(--soft-blue);
  border-color: var(--brand-blue);
}

.inline-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--brand-blue);
}

.conditional-block {
  margin-top: 25px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.conditional-block[hidden] {
  display: none !important;
}

.conditional-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 850;
}

.conditional-block__title svg {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-actions__right {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-blue);
}

.checkbox-row label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.checkbox-row a {
  color: var(--brand-blue);
  font-weight: 750;
}

.form-alert {
  display: none;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-alert.is-visible {
  display: block;
}

.form-alert--error {
  color: #8a1c13;
  background: #fff1ef;
  border: 1px solid #ffd1cb;
}

.form-alert--success {
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
}

.form-success {
  display: none;
  padding: 32px;
  text-align: center;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 17px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--success);
  background: #dcfce7;
  border-radius: 50%;
}

.form-success__icon svg {
  width: 29px;
  height: 29px;
}

.form-success h3 {
  margin-bottom: 8px;
  color: #14532d;
}

.form-success p {
  margin-bottom: 12px;
  color: #3f5e49;
}

.form-success__reference {
  display: inline-flex;
  padding: 8px 12px;
  color: #14532d;
  background: var(--white);
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  font-weight: 800;
}

.mail-fallback {
  display: none;
  margin-top: 18px;
}

.mail-fallback.is-visible {
  display: block;
}

/* Sidebar and summary */
.sidebar-stack {
  display: grid;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin-bottom: 14px;
  font-size: 1.17rem;
}

.info-card p {
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.info-list__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  background: var(--soft-blue);
  border-radius: 10px;
}

.info-list__icon svg {
  width: 19px;
  height: 19px;
}

.info-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
}

.info-list span,
.info-list a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.info-list a:hover {
  color: var(--brand-blue);
}

.info-card--blue {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.info-card--blue h3,
.info-card--blue p {
  color: var(--white);
}

.info-card--blue p {
  opacity: 0.86;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-list dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 18px;
}

.contact-intro > p {
  font-size: 1.02rem;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 17px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 98, 254, 0.35);
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  background: var(--soft-blue);
  border-radius: 12px;
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card strong {
  display: block;
  margin-bottom: 2px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.83rem;
}

.contact-note {
  margin-top: 22px;
  padding: 18px;
  color: var(--navy);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 13px;
  font-size: 0.88rem;
}

.contact-note strong {
  color: var(--brand-orange-700);
}

/* Footer */
.site-footer {
  color: #d5deed;
  background: #04122c;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 46px;
  padding: 62px 0 48px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 0;
  color: #aebbd0;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #aebbd0;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: #8fa0bb;
  font-size: 0.78rem;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

/* Utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hidden {
  display: none !important;
}

.no-margin {
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 1050px) {
  .site-nav a:not(.nav-cta) {
    padding-inline: 10px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .trust-strip__intro {
    grid-column: 1 / -1;
    min-height: 82px;
  }

  .trust-strip__item:nth-child(5) {
    grid-column: span 2;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__top {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .brand img {
    width: min(190px, 55vw);
  }

  .brand__division {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100dvh - var(--header-height));
    display: grid;
    gap: 4px;
    padding: 18px 20px 24px;
    overflow: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    padding: 14px 15px;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero-panel {
    max-width: 650px;
  }

  .section-heading,
  .split-feature,
  .page-hero__inner,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
    align-items: start;
  }

  .split-feature {
    gap: 42px;
  }

  .operations-visual {
    min-height: 460px;
  }

  .page-hero__note {
    max-width: 520px;
  }

  .sidebar-stack {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero__inner {
    padding: 62px 0 84px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .route-meta {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__intro {
    grid-column: 1 / -1;
  }

  .trust-strip__item:nth-child(5) {
    grid-column: auto;
  }

  .trust-strip__item {
    min-height: 92px;
    padding: 17px;
  }

  .card-grid,
  .process-grid,
  .sidebar-stack,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .operations-visual {
    min-height: 420px;
  }

  .operations-visual__plane {
    width: 72%;
    top: 60px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card::before {
    margin-bottom: 34px;
  }

  .form-card {
    padding: 22px 18px;
  }

  .form-progress {
    grid-template-columns: repeat(4, minmax(42px, 1fr));
  }

  .form-progress__item {
    justify-content: center;
    padding: 9px 7px;
  }

  .form-progress__item b {
    display: none;
  }

  .form-grid,
  .form-grid--3,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .conditional-block {
    padding: 18px 14px;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions,
  .form-actions__right {
    flex-direction: column-reverse;
  }

  .form-actions .btn,
  .form-actions__right,
  .form-actions__right .btn {
    width: 100%;
  }

  .cta-panel {
    padding: 34px 22px;
    border-radius: 20px;
  }

  .cta-panel__actions .btn {
    width: 100%;
  }

  .site-footer__top {
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 171px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip__item,
  .trust-strip__item:nth-child(5) {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
