/* ==========================================================================
   ECAM TRADE — Global Sourcing & Supply Chain
   Design system + component library
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — navy */
  --navy-950: #0a1128;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;

  /* Brand — sapphire */
  --blue-800: #1e3a8a;
  --blue-700: #1e40af;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;

  /* Brand — amber */
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;

  /* Neutrals */
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;

  /* Semantic */
  --bg: var(--white);
  --bg-muted: var(--slate-50);
  --bg-dark: var(--navy-900);
  --text: var(--navy-800);
  --text-muted: var(--slate-500);
  --border: var(--slate-200);
  --accent: var(--blue-600);
  --cta: var(--amber-500);

  /* Type */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-body);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 18px 40px rgba(37, 99, 235, 0.28);
  --shadow-amber: 0 16px 36px rgba(217, 119, 6, 0.32);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(72px, 9vw, 118px);
  --header-h: 78px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t: 0.32s;
  --t-slow: 0.6s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::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(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.65rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.0625rem; line-height: 1.35; }
/* Card and step headings sit under an h2, so they must be h3 for the document
   outline. .h-sm gives them back the smaller h4 size they are designed at. */
.h-sm { font-size: 1.0625rem; line-height: 1.35; }

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

a { color: var(--blue-600); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--blue-700); }

img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.45em; }

strong { font-weight: 700; color: var(--navy-900); }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 300;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

/* Visually hidden but still read by assistive tech. Also used for the form
   honeypot, which must be off-screen rather than display:none — some bots skip
   fields they can tell are hidden. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(52px, 6vw, 78px); }
.section--muted { background: var(--bg-muted); }

.section--dark {
  background: var(--navy-900);
  color: rgba(226, 232, 240, 0.86);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark .section-sub { color: rgba(203, 213, 225, 0.82); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber-500), var(--blue-600));
}
.section--dark .eyebrow { color: var(--amber-400); }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow {
  background: rgba(37, 99, 235, 0.08);
  padding: 7px 16px;
  border-radius: var(--r-pill);
}
.section--dark .section-head--center .eyebrow { background: rgba(245, 158, 11, 0.12); }

.section-sub {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.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)); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
/* Wider primary column (forms, long copy). Declared as a class rather than an
   inline style so the stacking media query below can still override it. */
.split--wide { grid-template-columns: 1.25fr 0.85fr; align-items: start; }

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

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-align: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              background-color var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn > svg:last-child { transition: transform var(--t) var(--ease); }
.btn:hover > svg:last-child { transform: translateX(4px); }

.btn--cta {
  --btn-bg: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  --btn-fg: #241300;
}
.btn--cta:hover { box-shadow: var(--shadow-amber); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-900);
  border-color: var(--slate-300);
  box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  --btn-fg: #fff;
  box-shadow: var(--shadow-md);
}

.btn--glass {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}
.btn--glass:hover { --btn-bg: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.5); box-shadow: none; }

.btn--sm { padding: 12px 22px; font-size: 0.875rem; }
.btn--lg { padding: 19px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--blue-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow var(--t) var(--ease), background-color var(--t) var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

/* The header carries eight links plus a CTA, so it gets a wider track than
   the body container and only collapses to the drawer once it truly runs out. */
.site-header .container { max-width: 1360px; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  min-width: 0;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand:hover { color: inherit; }
.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--navy-900), var(--blue-700) 65%, var(--blue-600));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.32);
  position: relative;
  overflow: hidden;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.55), transparent 70%);
}
.brand__mark svg { width: 24px; height: 24px; position: relative; z-index: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.05;
  display: block;
}
.brand__name em { font-style: normal; color: var(--blue-600); }
.brand__tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 3px;
}

.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li { margin: 0; }
.nav-link {
  position: relative;
  display: block;
  padding: 10px 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--amber-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover { color: var(--blue-700); background: rgba(37, 99, 235, 0.06); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
@media (max-width: 1340px) {
  .brand__tag { display: none; }
}
.nav-link[aria-current="page"] { color: var(--blue-700); }

.header-cta { flex: none; margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.nav-toggle:hover { border-color: var(--navy-900); }
.nav-toggle__bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease), width var(--t) var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; width: 74%; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 17, 40, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1260px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 130;
    width: min(360px, 88vw);
    height: 100dvh;
    margin: 0;
    padding: 26px 24px 40px;
    background: #fff;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.18);
    transform: translateX(102%);
    transition: transform 0.42s var(--ease-out);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 56px;
  }
  .nav-link {
    padding: 15px 14px;
    font-size: 1rem;
    border-bottom: 1px solid var(--slate-100);
    border-radius: 0;
  }
  .nav-link::after { display: none; }
  .nav-link[aria-current="page"] {
    background: rgba(37, 99, 235, 0.07);
    border-radius: var(--r-sm);
  }
  .nav-drawer-cta { margin-top: 26px; }
  .nav-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
  }
  .nav-close svg { width: 18px; height: 18px; }
}
@media (min-width: 1261px) {
  .nav-close, .nav-drawer-cta { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: rgba(226, 232, 240, 0.9);
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 104px) clamp(72px, 9vw, 118px);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(37, 99, 235, 0.42), transparent 62%),
    radial-gradient(680px 460px at 8% 92%, rgba(217, 119, 6, 0.24), transparent 62%),
    linear-gradient(165deg, #0a1128 0%, #0f1e3d 48%, #0a1128 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 60% 40%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 10%, transparent 78%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .hl {
  background: linear-gradient(105deg, var(--amber-400), var(--amber-500) 55%, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  color: rgba(203, 213, 225, 0.88);
  max-width: 58ch;
  margin-bottom: 34px;
}
.hero .btn-row { margin-bottom: 38px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.92);
  margin-bottom: 26px;
}
.hero__badge b {
  background: var(--amber-500);
  color: #241300;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-dot 2.4s infinite;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.82);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--amber-400); flex: none; }

.hero__visual { position: relative; }
.hero__visual svg { width: 100%; height: auto; overflow: visible; }

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 17px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.4);
  animation: float 6s ease-in-out infinite;
}
.hero__chip svg { width: 20px; height: 20px; color: var(--amber-400); flex: none; }
.hero__chip strong { display: block; font-size: 0.9rem; color: #fff; font-family: var(--font-display); line-height: 1.2; }
.hero__chip small { font-size: 0.7rem; color: rgba(203, 213, 225, 0.75); letter-spacing: 0.03em; }
.hero__chip--a { top: 6%; left: -4%; }
.hero__chip--b { bottom: 10%; right: -2%; animation-delay: -3s; }
@media (max-width: 1180px) {
  .hero__chip--a { left: 0; }
  .hero__chip--b { right: 0; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-inline: auto; order: -1; }
  .hero__chip { display: none; }
}

/* Interior page hero */
.page-hero {
  position: relative;
  background: var(--navy-950);
  color: rgba(203, 213, 225, 0.86);
  padding-block: clamp(58px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(760px 420px at 82% 12%, rgba(37, 99, 235, 0.4), transparent 64%),
    radial-gradient(520px 360px at 4% 96%, rgba(217, 119, 6, 0.22), transparent 66%),
    linear-gradient(160deg, #0a1128, #101f3f 55%, #0a1128);
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 76%);
}
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: rgba(203, 213, 225, 0.85);
  max-width: 62ch;
  margin-bottom: 0;
}
.page-hero .btn-row { margin-top: 32px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
}
.breadcrumb li { margin: 0; display: inline-flex; align-items: center; gap: 9px; color: rgba(148, 163, 184, 0.85); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: rgba(148, 163, 184, 0.45); }
.breadcrumb a { color: rgba(203, 213, 225, 0.85); }
.breadcrumb a:hover { color: var(--amber-400); }
.breadcrumb [aria-current="page"] { color: var(--amber-400); }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--amber-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.28);
}
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.card .link-arrow { margin-top: 18px; }

.card--flat { box-shadow: none; }
.card--flat:hover { box-shadow: var(--shadow-md); }

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.03));
  color: var(--blue-600);
  border: 1px solid rgba(37, 99, 235, 0.16);
  transition: transform var(--t) var(--ease), background-color var(--t) var(--ease), color var(--t) var(--ease);
}
.icon-box svg { width: 26px; height: 26px; }
.card:hover .icon-box {
  transform: scale(1.06) rotate(-4deg);
  background: linear-gradient(140deg, var(--blue-600), var(--blue-700));
  color: #fff;
}
.icon-box--amber {
  background: linear-gradient(140deg, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0.04));
  color: var(--amber-600);
  border-color: rgba(245, 158, 11, 0.24);
}
.card:hover .icon-box--amber { background: linear-gradient(140deg, var(--amber-500), var(--amber-600)); color: #2a1600; }

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  color: rgba(203, 213, 225, 0.84);
}
.card--dark p { color: rgba(203, 213, 225, 0.78); }
.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 24px 60px rgba(2, 8, 23, 0.5);
}
.card--dark .icon-box {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.26);
  color: var(--amber-400);
}
.card--dark:hover .icon-box { background: var(--amber-500); color: #241300; }

/* Numbered process cards */
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  height: 100%;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(140deg, var(--navy-900), var(--blue-700));
  box-shadow: 0 10px 22px rgba(30, 64, 175, 0.3);
}
.step h3 { margin: 14px 0 10px; }
.step p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 0; }

/* Specification table */
.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 18px;
  font-size: 0.9rem;
}
.spec-list li:nth-child(odd) { background: var(--slate-50); }
.spec-list li span:first-child { color: var(--text-muted); }
.spec-list li span:last-child { font-weight: 700; color: var(--navy-900); text-align: right; }

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li {
  position: relative;
  padding-left: 36px;
  margin: 0;
  font-size: 0.96rem;
  color: var(--slate-600);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.feature-list--amber li::before {
  background-color: rgba(245, 158, 11, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
/* On dark backgrounds the blue tick loses almost all contrast, so both the
   disc and the glyph switch to amber. */
.section--dark .feature-list li,
.visual-panel .feature-list li { color: rgba(203, 213, 225, 0.84); }
.section--dark .feature-list li::before,
.visual-panel .feature-list li::before {
  background-color: rgba(245, 158, 11, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   8. Stats band
   -------------------------------------------------------------------------- */
.stats-band {
  position: relative;
  background: linear-gradient(150deg, #0a1128, #13284f 52%, #0a1128);
  overflow: hidden;
  isolation: isolate;
}
.stats-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(700px 340px at 50% 0%, rgba(37, 99, 235, 0.34), transparent 68%);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat { text-align: center; padding: 12px 10px; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.3), transparent);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}
.stat__value .suffix {
  background: linear-gradient(120deg, var(--amber-400), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .stat:nth-child(odd)::before { display: none; }
}

/* --------------------------------------------------------------------------
   9. Tabs
   -------------------------------------------------------------------------- */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
  padding: 8px;
  background: var(--slate-100);
  border-radius: var(--r-pill);
  width: fit-content;
  max-width: 100%;
}
.tabs__list--center { margin-inline: auto; }
.tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-600);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.tab-btn:hover { color: var(--navy-900); }
.tab-btn[aria-selected="true"] {
  background: #fff;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}
.section--dark .tabs__list { background: rgba(255, 255, 255, 0.06); }
.section--dark .tab-btn { color: rgba(203, 213, 225, 0.8); }
.section--dark .tab-btn[aria-selected="true"] { background: var(--amber-500); color: #241300; }

.tab-panel[hidden] { display: none; }
.tab-panel { animation: fadeInUp 0.5s var(--ease-out) both; }

@media (max-width: 640px) {
  .tabs__list { width: 100%; border-radius: var(--r-lg); }
  .tab-btn { flex: 1 1 auto; padding: 11px 16px; font-size: 0.8125rem; }
}

/* --------------------------------------------------------------------------
   10. Filter chips
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-600);
  padding: 11px 20px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.filter-btn:hover { border-color: var(--blue-600); color: var(--blue-700); transform: translateY(-2px); }
.filter-btn[aria-pressed="true"] {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.is-filtered-out { display: none !important; }

/* --------------------------------------------------------------------------
   11. Accordion
   -------------------------------------------------------------------------- */
.accordion { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.accordion__item + .accordion__item { border-top: 1px solid var(--border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}
.accordion__trigger:hover { background: var(--slate-50); color: var(--blue-700); }
.accordion__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
  transition: transform var(--t) var(--ease), background-color var(--t) var(--ease), color var(--t) var(--ease);
}
.accordion__icon svg { width: 15px; height: 15px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
  background: var(--blue-600);
  color: #fff;
}
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.accordion__panel > div { overflow: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel .inner { padding: 0 26px 24px; color: var(--text-muted); font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   12. Hub / network cards
   -------------------------------------------------------------------------- */
.hub {
  position: relative;
  border-radius: var(--r-xl);
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), background-color var(--t) var(--ease);
  height: 100%;
}
.hub:hover { transform: translateY(-8px); border-color: rgba(245, 158, 11, 0.45); background: rgba(255, 255, 255, 0.07); }
.hub__flagline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 16px;
}
.hub__flagline i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-dot 2.6s infinite;
}
.hub h3 { color: #fff; margin-bottom: 4px; }
.hub__role { font-size: 0.85rem; color: rgba(148, 163, 184, 0.95); margin-bottom: 18px; font-weight: 600; }
.hub p { color: rgba(203, 213, 225, 0.8); font-size: 0.94rem; }
.hub__meta {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 10px;
}
.hub__meta div { display: flex; justify-content: space-between; gap: 14px; font-size: 0.85rem; }
.hub__meta dt, .hub__meta span:first-child { color: rgba(148, 163, 184, 0.85); }
.hub__meta span:last-child { color: #fff; font-weight: 700; text-align: right; }

/* Globe / network diagram */
.netmap { position: relative; }
.netmap svg { width: 100%; height: auto; overflow: visible; }

/* --------------------------------------------------------------------------
   13. Media / visual panels
   -------------------------------------------------------------------------- */
.visual-panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(26px, 3vw, 40px);
  background: linear-gradient(155deg, #0f1e3d, #0a1128);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(520px 320px at 80% 5%, rgba(37, 99, 235, 0.4), transparent 62%),
              radial-gradient(420px 300px at 5% 100%, rgba(217, 119, 6, 0.22), transparent 65%);
}
.visual-panel--light {
  background: linear-gradient(155deg, #fff, var(--slate-100));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.visual-panel--light::after { display: none; }

.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 520px) { .mini-grid { grid-template-columns: 1fr; } }
.mini {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--r-md);
  padding: 20px 18px;
  transition: transform var(--t) var(--ease), background-color var(--t) var(--ease);
}
.mini:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.1); }
.mini svg { width: 22px; height: 22px; color: var(--amber-400); margin-bottom: 12px; }
.mini strong { display: block; color: #fff; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 4px; }
.mini span { font-size: 0.8rem; color: rgba(148, 163, 184, 0.9); line-height: 1.5; display: block; }

/* Quote / partner block */
.quote {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.7;
  color: rgba(37, 99, 235, 0.16);
  margin-bottom: 8px;
}
.quote p {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  color: var(--navy-800);
  font-weight: 500;
}
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, var(--navy-900), var(--blue-700));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  flex: none;
}
.quote__by strong { display: block; font-size: 0.95rem; }
.quote__by span { font-size: 0.82rem; color: var(--text-muted); }

/* Logo / capability strip */
.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  align-items: center;
}
.strip span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
  transition: color var(--t) var(--ease);
}
.strip span:hover { color: var(--navy-900); }

/* --------------------------------------------------------------------------
   14. CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(38px, 5vw, 64px);
  background: linear-gradient(140deg, #0a1128 0%, #1b3a7a 55%, #0a1128 100%);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 300px at 22% 0%, rgba(245, 158, 11, 0.3), transparent 62%),
    radial-gradient(600px 340px at 80% 100%, rgba(37, 99, 235, 0.42), transparent 62%);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  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: 46px 46px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
}
.cta-banner h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-banner p { color: rgba(203, 213, 225, 0.88); max-width: 60ch; margin-inline: auto; font-size: 1.06rem; }
.cta-banner .btn-row { justify-content: center; margin-top: 30px; }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}
.field label .req { color: var(--amber-600); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--slate-300);
  border-radius: var(--r-md);
  padding: 14px 16px;
  width: 100%;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background-color var(--t) var(--ease);
}
.field textarea { resize: vertical; min-height: 138px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
  padding-right: 44px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--slate-400); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.field__error svg { width: 14px; height: 14px; flex: none; stroke-width: 2.6; }
.field__error {
  font-size: 0.78rem;
  font-weight: 600;
  color: #dc2626;
  display: none;
  align-items: center;
  gap: 6px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ef4444;
  background: #fef2f2;
}
.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.13); }
.field.has-error .field__error { display: flex; animation: shake 0.35s var(--ease); }
.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea { border-color: #10b981; }

.form-note { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.form-status {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 600;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.form-status.is-visible { display: flex; animation: fadeInUp 0.4s var(--ease-out) both; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.form-status--error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
/* Two icons ship in the markup; show the check on success, the cross on error. */
.form-status > svg:nth-of-type(2) { display: none; }
.form-status--error > svg:nth-of-type(1) { display: none; }
.form-status--error > svg:nth-of-type(2) { display: block; }

/* Contact detail cards */
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, 0.3); }
.contact-card__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
}
.contact-card__icon svg { width: 21px; height: 21px; }
.contact-card strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 3px; }
.contact-card span, .contact-card a { font-size: 0.9rem; color: var(--text-muted); display: block; line-height: 1.55; }
.contact-card a:hover { color: var(--blue-600); }
.contact-card--wa .contact-card__icon { background: rgba(37, 211, 102, 0.12); color: #128c7e; }
.contact-card--li .contact-card__icon { background: rgba(10, 102, 194, 0.12); color: #0a66c2; }

/* --------------------------------------------------------------------------
   16. Modal
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 40, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88dvh, 860px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 40px 90px rgba(2, 8, 23, 0.45);
  padding: clamp(26px, 3.4vw, 42px);
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__head { margin-bottom: 26px; padding-right: 46px; }
.modal__head h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 8px; }
.modal__head p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--slate-500);
  transition: all var(--t) var(--ease);
  z-index: 2;
}
.modal__close:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(148, 163, 184, 0.85);
  padding-top: clamp(56px, 6vw, 84px);
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.7), rgba(245, 158, 11, 0.6), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 3.5vw, 52px);
  padding-bottom: 52px;
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name em { color: var(--amber-400); }
.site-footer .brand__tag { color: rgba(148, 163, 184, 0.8); }
.footer-about { margin-top: 20px; max-width: 40ch; line-height: 1.68; }
.footer-col h3 {
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col li { margin: 0; }
.footer-col a { color: rgba(148, 163, 184, 0.88); }
.footer-col a:hover { color: var(--amber-400); padding-left: 4px; }
.footer-col a { transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease); display: inline-block; }

.footer-contact { display: grid; gap: 16px; margin: 0; }
.footer-contact div { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--amber-400); flex: none; margin-top: 3px; }
.footer-contact a, .footer-contact span { color: rgba(203, 213, 225, 0.9); line-height: 1.55; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: rgba(203, 213, 225, 0.9);
  transition: all var(--t) var(--ease);
}
.socials a:hover { background: var(--amber-500); border-color: var(--amber-500); color: #241300; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 24px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: rgba(148, 163, 184, 0.85); }
.footer-legal a:hover { color: var(--amber-400); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: flex-start; } }

/* --------------------------------------------------------------------------
   18. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -1000; } }

.spin-slow { animation: spin-slow 46s linear infinite; transform-origin: center; }
.dash-flow { stroke-dasharray: 7 11; animation: dash 22s linear infinite; }

/* Entrance animation for above-the-fold content. Unlike .reveal this never
   depends on IntersectionObserver, so hero copy can't be left invisible. */
.fx-in {
  animation: fadeInUp 0.75s var(--ease-out) both;
  animation-delay: var(--delay, 0s);
}

/* Scroll reveal — only active when JS is running */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 44px; }

/* Long-form legal copy — privacy, terms, trade compliance */
.legal { max-width: 74ch; }
.legal h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  margin-top: 2.4em;
  padding-top: 1.6em;
  border-top: 1px solid var(--border);
}
.legal > h2:first-of-type { margin-top: 1.4em; }
.legal h3 { font-size: 1.0625rem; line-height: 1.35; margin-top: 1.9em; }
.legal p, .legal li { color: var(--text); line-height: 1.75; }
.legal ul, .legal ol { margin: 0 0 1.1em; padding-left: 1.3em; display: grid; gap: 10px; }
.legal li { margin: 0; }
.legal dt { font-weight: 700; color: var(--navy-900); margin-top: 1.1em; }
.legal dd { margin: 4px 0 0; color: var(--text); line-height: 1.75; }
.legal__updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue-700);
}
.pill--amber { background: rgba(245, 158, 11, 0.15); color: var(--amber-600); }
.pill--dark { background: rgba(255, 255, 255, 0.08); color: rgba(226, 232, 240, 0.9); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--slate-100);
  color: var(--slate-600);
  border: 1px solid var(--border);
}


@media print {
  .site-header, .site-footer, .modal, .nav-scrim { display: none !important; }
  body { color: #000; }
}
