/* ==========================================================================
   Celeris Global — site stylesheet
   Brand navy #16214C sampled from the logo.
   ========================================================================== */

:root {
  --navy:        #16214C;
  --navy-deep:   #0D1533;
  --navy-mid:    #1E2C63;
  --azure:       #2E7DD1;   /* accents, borders, icons */
  --azure-dark:  #1E62AB;   /* link + button text: 6.2:1 on white */
  --azure-deep:  #17518F;   /* accent button hover */
  --sky:         #E9F1FB;
  --ink:         #131A2E;
  --slate:       #5B6580;
  --slate-light: #69728C;   /* 4.8:1 on white — safe for hint text */
  --line:        #E1E6F0;
  --bg:          #FFFFFF;
  --bg-alt:      #F6F8FC;
  --white:       #FFFFFF;
  --success:     #1C8A5B;
  --danger:      #C0392B;

  --wrap: 1180px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(19, 26, 46, .06), 0 2px 8px rgba(19, 26, 46, .05);
  --shadow-md: 0 4px 10px rgba(19, 26, 46, .07), 0 14px 34px rgba(19, 26, 46, .09);
  --shadow-lg: 0 10px 20px rgba(19, 26, 46, .09), 0 30px 60px rgba(19, 26, 46, .13);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 106px;   /* the stacked lockup needs more height than a wordmark */
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--azure-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); font-weight: 750; }
h4 { font-size: 1.02rem; font-weight: 750; }

p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--navy); color: #fff; }

:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------- eyebrow -- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azure-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--azure);
  border-radius: 2px;
}
.eyebrow--light { color: #9FC4EC; }
.eyebrow--light::before { background: #9FC4EC; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  font-size: 1.08rem;
  color: var(--slate);
}

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  color: var(--slate);
  line-height: 1.62;
}

/* -------------------------------------------------------------- buttons -- */

.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font: inherit;
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), color .18s var(--ease);
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }

/* White-on-azure is only 4.2:1, so the accent button uses the darker tone to
   clear 4.5:1 for its bold-but-not-large label. */
.btn--accent { --btn-bg: var(--azure-dark); --btn-bd: var(--azure-dark); }
.btn--accent:hover { --btn-bg: var(--azure-deep); --btn-bd: var(--azure-deep); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: #C6CEDE; }
.btn--ghost:hover { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .45);
}
.btn--outline-light:hover { --btn-bg: rgba(255, 255, 255, .12); --btn-bd: #fff; }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--azure-dark);
}
.arrow-link svg { transition: transform .2s var(--ease); }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(19, 26, 46, .09); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img { height: 76px; width: auto; }

/* --header-h also positions the mobile nav panel, so it tracks the logo size. */
@media (max-width: 980px) {
  :root { --header-h: 92px; }
  .brand img { height: 62px; }
}
@media (max-width: 420px) {
  :root { --header-h: 80px; }
  .brand img { height: 52px; }
}

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

.nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: .95rem;
  font-weight: 650;
  color: var(--navy);
  white-space: nowrap;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.nav a:hover { background: var(--sky); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--azure-dark); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--azure);
}

/* `.nav a` would otherwise beat `.btn` on specificity and repaint the CTA
   label navy-on-blue, so the button colours are restated here. */
.nav a.btn { color: var(--btn-fg); }
.nav a.btn:hover { background: var(--btn-bg); }

.nav .nav-cta { margin-left: 8px; }
.nav a.nav-cta:hover { --btn-bg: var(--azure-deep); --btn-bd: var(--azure-deep); }

.nav-track { display: inline-flex; align-items: center; gap: 7px; }
.nav-track svg { flex-shrink: 0; opacity: .65; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 24px 26px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav a { padding: 14px 12px; font-size: 1.05rem; border-radius: 8px; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--sky); }
  .nav .nav-cta { margin: 10px 0 0; justify-content: center; }
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1200px 620px at 78% -12%, #29407F 0%, rgba(41, 64, 127, 0) 62%),
    linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M0 .5H72M.5 0V72' stroke='%23ffffff' stroke-opacity='.055'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-routes {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(760px, 62%);
  opacity: .3;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: clamp(72px, 11vw, 132px) 0 clamp(66px, 9vw, 112px);
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: #8FB9E8;
}
.hero p {
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: #C4CDE2;
  max-width: 560px;
}

.hero-stats-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding-block: 26px;
}
.hero-stats > div { padding-inline: 28px; }
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div + div { border-left: 1px solid rgba(255, 255, 255, .14); }
.hero-stats dt {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.hero-stats dd {
  margin: 6px 0 0;
  font-size: .84rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #9FADCB;
  font-weight: 650;
}

@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-stats > div:nth-child(odd) { padding-left: 0; }
  .hero-stats > div:nth-child(odd) { border-left: 0; }
  .hero-routes { opacity: .16; width: 90%; right: -22%; }
}
@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div { padding-inline: 0; border-left: 0 !important; }
}

/* ----------------------------------------------------------- page hero -- */

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 460px at 84% -30%, #2A4183 0%, rgba(42, 65, 131, 0) 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(52px, 7vw, 84px) 0 clamp(56px, 7vw, 88px);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M0 .5H72M.5 0V72' stroke='%23ffffff' stroke-opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p {
  color: #C4CDE2;
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  max-width: 640px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .84rem;
  color: #93A1C0;
}
.crumbs a { color: #C7D4EA; }
.crumbs span[aria-hidden] { opacity: .5; }

/* ---------------------------------------------------------------- cards -- */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 940px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .99rem; }

.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD8EC;
}
.card .arrow-link { margin-top: auto; padding-top: 18px; }

.tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  vertical-align: 2px;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--azure-dark);
  background: var(--sky);
  border-radius: 20px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--navy);
  flex-shrink: 0;
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--navy { background: var(--navy); color: #fff; }

.feature { display: flex; gap: 16px; }
.feature .icon-badge { width: 44px; height: 44px; margin-bottom: 0; border-radius: 10px; }
.feature .icon-badge svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: 5px; }
.feature p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ------------------------------------------------------------ split row -- */

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.split--reverse .split-media { order: -1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}

.panel {
  padding: clamp(26px, 3.4vw, 40px);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.panel--navy {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: transparent;
  color: #D3DBEC;
}
.panel--navy h2, .panel--navy h3, .panel--navy h4 { color: #fff; }

/* ------------------------------------------------------------ checklist -- */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 32px;
  color: var(--slate);
  font-size: .99rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232E7DD1' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.ticks--light li { color: #C4CDE2; }
.ticks--light li::before {
  background-color: rgba(255, 255, 255, .14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8C8EE' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.ticks--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 28px; }
@media (max-width: 620px) { .ticks--2col { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- service row -- */

.service-block {
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: 0; }

.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 .5H60M.5 0V60' stroke='%23ffffff' stroke-opacity='.06'/%3E%3C/svg%3E");
}
.service-visual svg {
  position: relative;
  z-index: 2;
  width: min(190px, 55%);
  height: auto;
  color: #7FA9DC;
}

/* Detailed line-art illustrations need more room than the small glyph icons. */
.service-visual .service-visual__art { width: min(280px, 78%); }
.service-visual .service-visual__art--wide { width: min(360px, 92%); }

/* ----------------------------------------------------------------- steps -- */

.steps { counter-reset: step; display: grid; gap: 24px; }
.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 940px) { .steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps--4 { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 22px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--azure);
  margin-bottom: 8px;
}
.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: .95rem; color: var(--slate); margin: 0; }

/* -------------------------------------------------------------- cta band -- */

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(760px 400px at 88% 120%, #2C4487 0%, rgba(44, 68, 135, 0) 60%),
    linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.cta-band .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(46px, 6vw, 72px);
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #B9C4DC; margin: 0; max-width: 520px; }
.cta-band .btn-row { margin-top: 0; }

/* ---------------------------------------------------------------- forms -- */

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 940px) { .form-layout { grid-template-columns: 1fr; } }

.form-card {
  padding: clamp(24px, 3.2vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.fieldset {
  border: 0;
  margin: 0 0 30px;
  padding: 0;
}
.fieldset:last-of-type { margin-bottom: 22px; }

.fieldset legend {
  display: block;
  width: 100%;
  padding: 0 0 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--navy);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 700px) {
  .field-grid, .field-grid--3 { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.field label .req { color: var(--danger); margin-left: 2px; }
.field .hint { font-size: .8rem; color: var(--slate-light); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #D5DCE9;
  border-radius: 8px;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }

.field select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6580' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field input:hover, .field select:hover, .field textarea:hover { border-color: #B9C4D8; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px rgba(46, 125, 209, .16);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #FEF7F6;
}

.field .error {
  font-size: .81rem;
  font-weight: 650;
  color: var(--danger);
  min-height: 0;
}

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

/* flex-basis auto (not a fixed px) sizes each chip to its own label, so the
   four options share one row instead of the longest one wrapping. They still
   grow to fill the row evenly, and wrap to two rows only on narrow screens. */
.chip {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;   /* never split "Ocean Freight" across two lines */
  background: #fff;
  border: 1.5px solid #D5DCE9;
  border-radius: 9px;
  transition: all .16s var(--ease);
}
.chip span svg { width: 17px; height: 17px; opacity: .7; flex-shrink: 0; }
.chip input:hover + span { border-color: #B9C4D8; background: #FBFCFE; }
.chip input:checked + span {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.chip input:checked + span svg { opacity: 1; }
.chip input:focus-visible + span {
  outline: 3px solid var(--azure);
  outline-offset: 2px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: var(--slate);
  cursor: pointer;
}
.check input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--azure);
  flex-shrink: 0;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.form-foot .note { font-size: .85rem; color: var(--slate-light); margin: 0; }

.form-status {
  display: none;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
  border-radius: 10px;
  font-size: .94rem;
  line-height: 1.55;
}
.form-status.is-visible { display: flex; }
.form-status svg { flex-shrink: 0; margin-top: 2px; }
.form-status strong { display: block; margin-bottom: 2px; }
.form-status--ok    { background: #EAF7F0; border: 1px solid #B6E0C9; color: #146844; }
.form-status--err   { background: #FDF0EE; border: 1px solid #F2C6BF; color: #9E2B1D; }
.form-status--info  { background: var(--sky);  border: 1px solid #C3DAF5; color: #1B4D80; }

.btn[aria-busy="true"] { opacity: .72; pointer-events: none; }

.spinner {
  width: 17px;
  height: 17px;
  border: 2.2px solid rgba(255, 255, 255, .38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- aside -- */

.aside-card {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.aside-card + .aside-card { margin-top: 20px; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.aside-card p { font-size: .94rem; color: var(--slate); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .icon-badge {
  width: 40px; height: 40px; margin: 0; border-radius: 10px;
}
.contact-list .icon-badge svg { width: 19px; height: 19px; }
.contact-list .c-label {
  display: block;
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 2px;
}
.contact-list .c-value { margin: 0; font-weight: 650; color: var(--navy); font-size: 1rem; }
.contact-list .c-value a { color: var(--navy); }
.contact-list .c-value span {
  display: block;
  font-weight: 400;
  color: var(--slate);
  font-size: .93rem;
}

/* ------------------------------------------------------------------ faq -- */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7DD1' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 4px 24px;
  margin: 0;
  color: var(--slate);
  max-width: 780px;
}

/* --------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--navy-deep);
  color: #A7B2CC;
  font-size: .95rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(48px, 6vw, 72px) 0 44px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 96px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; font-size: .94rem; }

.site-footer h4 {
  color: #fff;
  font-size: .79rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { color: #A7B2CC; }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-contact a { color: #D6DEEE; font-weight: 650; }
.footer-contact span { display: block; color: #8894B0; font-size: .88rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .86rem;
  color: #7F8BA8;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a { color: #7F8BA8; }
.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* ------------------------------------------------------------- reveal -- */

/* Scoped to html.js so that if scripting is unavailable the content simply
   shows, rather than staying invisible at opacity 0. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- misc -- */

.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

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

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { color: #000; }
}
