/* ==========================================================================
   MSTS Tolls — Design System (light theme)
   Brand tokens preserved from the current site:
     accent  #247bfe   secondary #171717
     heading #28292b   body      #656769
     tint    #eff4f8   hairline  #d4e1e9
   ========================================================================== */

/* ---------- Fonts: Shell brand family, self-hosted ---------- */
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-light.woff') format('woff');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-light-italic.woff') format('woff');font-weight:300;font-style:italic;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-book.woff') format('woff');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-book-italic.woff') format('woff');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-medium.woff') format('woff');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-medium-italic.woff') format('woff');font-weight:500;font-style:italic;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Shell';src:url('/assets/fonts/shell-heavy.woff') format('woff');font-weight:800;font-style:normal;font-display:swap}
@font-face{font-family:'Shell Condensed';src:url('/assets/fonts/shell-cond-light.woff') format('woff');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Shell Condensed';src:url('/assets/fonts/shell-cond-medium.woff') format('woff');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Shell Condensed';src:url('/assets/fonts/shell-cond-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --accent:        #247bfe;
  --accent-600:    #0f68ee;
  --accent-700:    #085ad4;
  --accent-200:    #a9caff;
  --accent-100:    #e9f1ff;
  --accent-050:    #f4f8ff;
  --secondary:     #171717;

  /* Ink */
  --ink-900:       #16202f;
  --ink-800:       #28292b;
  --ink-700:       #4b5563;
  --ink-600:       #656769;
  --ink-500:       #7c848d;
  --ink-400:       #96a0aa;

  /* Surfaces */
  --surface:       #ffffff;
  --surface-tint:  #f6f9fd;
  --surface-tint-2:#eff4f8;
  --line:          #e2eaf2;
  --line-strong:   #d4e1e9;

  /* Footer (dark grey) */
  --footer-bg:     #2b3036;
  --footer-dim:    #a8b0b8;
  --footer-line:   rgba(255,255,255,.12);

  /* Status */
  --green:         #05c168;
  --green-tint:    #def2e6;
  --amber:         #ff9e2c;
  --amber-tint:    #fff3e4;
  --red:           #ff5a65;
  --red-tint:      #ffeff0;

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(20,20,43,.05);
  --sh-sm: 0 2px 8px rgba(20,20,43,.06);
  --sh-md: 0 8px 24px rgba(20,20,43,.08);
  --sh-lg: 0 18px 48px rgba(20,20,43,.10);
  --sh-accent: 0 10px 28px rgba(36,123,254,.28);

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

  --container: 1200px;
  --container-wide: 1440px;
  --container-narrow: 820px;
  --gutter: 24px;

  --header-h: 88px;

  --font: 'Shell', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-cond: 'Shell Condensed', 'Shell', -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scroll-padding-top: calc(var(--header-h) + 20px);
  /* `clip` (not `hidden`) contains the off-canvas mobile nav without
     breaking position: sticky on the header. */
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--accent-700); }
button { font: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .55vw, 1.5rem); }
h4 { font-size: 1.18rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: .95rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent-100); color: var(--ink-900); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color:#fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
/* the header runs wider than page content */
.container--wide { max-width: var(--container-wide); }

.section { padding: clamp(56px, 6vw, 96px) 0; }
.section--tight { padding: clamp(40px, 4vw, 64px) 0; }
.section--tint { background: var(--surface-tint); }
.section--tint2 { background: var(--surface-tint-2); }
.section--line-top { border-top: 1px solid var(--line); }

.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: 960px) { .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; } }

.stack > * + * { margin-top: 16px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px; flex: none;
  background: var(--grad-accent);
}
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.06rem; color: var(--ink-600); margin-bottom: 0; }
.section-head h2 { margin-bottom: .35em; }

.lead { font-size: clamp(1.05rem, .98rem + .4vw, 1.24rem); color: var(--ink-600); line-height: 1.62; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .97rem; line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--sh-accent); }
.btn--primary:hover { background: var(--accent-700); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 32px rgba(36,123,254,.34); }
.btn--secondary { background: #fff; color: var(--ink-900); border-color: var(--line-strong); box-shadow: var(--sh-xs); }
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn--ghost { background: var(--accent-100); color: var(--accent-700); }
.btn--ghost:hover { background: var(--accent-200); color: var(--accent-700); }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; transform: translateY(-1px); }
.btn--sm { padding: 9px 18px; font-size: .88rem; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--accent);
}
.arrow-link::after { content: '→'; transition: transform .2s var(--ease); }
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  background: var(--accent-100); color: var(--accent-700);
}
.badge--neutral { background: var(--surface-tint-2); color: var(--ink-600); }
.badge--green { background: var(--green-tint); color: #0b6b41; }
.badge--amber { background: var(--amber-tint); color: #9a5406; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.brand { display: flex; align-items: center; justify-self: start; }
.brand img { height: 48px; width: auto; }
.brand__text { font-weight: 700; font-size: 1.15rem; color: var(--ink-900); letter-spacing: -.02em; }

.nav { display: flex; align-items: center; gap: 2px; justify-self: center; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: var(--r-sm);
  font-size: .94rem; font-weight: 500; color: var(--ink-700);
  background: none; border: 0; cursor: pointer;
  white-space: nowrap;
  transition: all .16s var(--ease);
}
@media (max-width: 1590px) {
  .nav__link { padding: 9px 11px; font-size: .9rem; }
  .header__inner { gap: 16px; }
}
.nav__link:hover { color: var(--accent); background: var(--accent-050); }
.nav__link[aria-current="page"] { color: var(--accent); font-weight: 600; }
.nav__caret { width: 10px; height: 10px; transition: transform .2s var(--ease); }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }
.nav__item.is-open > .nav__link { color: var(--accent); background: var(--accent-050); }

.header__actions { justify-self: end; display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: #fff;
  font-size: .84rem; font-weight: 600; color: var(--ink-700); cursor: pointer;
}
.lang:hover { border-color: var(--accent); color: var(--accent); }
.lang__flag { width: 18px; height: 13px; border-radius: 2px; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 6px; min-width: 128px; display: none;
}
.lang-wrap { position: relative; }
.lang-wrap.is-open .lang-menu { display: block; }
.lang-menu a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px; border-radius: var(--r-sm);
  font-size: .88rem; color: var(--ink-700); font-weight: 500;
}
.lang-menu a[aria-current="true"] { background: var(--accent-050); color: var(--accent); }
.lang-menu .lang__flag { flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.07); }
.lang-menu a:hover { background: var(--accent-050); color: var(--accent); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 110;
}
.nav__item.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega--wide { width: min(940px, calc(100vw - 40px)); }
.mega--xwide { width: min(1080px, calc(100vw - 40px)); }

.mega__grid { display: grid; gap: 30px; }
.mega__grid--2 { grid-template-columns: 1.55fr 1fr; }
.mega__grid--products { grid-template-columns: 2.1fr 1fr; }
.mega__title {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-400); margin: 0 0 14px;
}
.mega__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; }
.mega__list--c2 { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px 14px; }
.mega__list--c3 { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px 14px; }
.mega__list a {
  display: block; padding: 7px 11px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500; color: var(--ink-700);
  transition: all .14s var(--ease);
}
.mega__list a:hover { background: var(--accent-050); color: var(--accent); transform: translateX(2px); }
.mega__col + .mega__col { border-left: 1px solid var(--line); padding-left: 30px; }

/* Mobile nav */
.burger {
  display: none; width: 42px; height: 42px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; flex: none;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink-900); border-radius: 2px; position: relative; transition: all .2s var(--ease); }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: all .2s var(--ease); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1390px) {
  .nav, .header__actions .btn--secondary { display: none; }
  .burger { display: inline-flex; }
  /* nav is gone, so fall back to logo-left / actions-right */
  .header__inner { grid-template-columns: auto 1fr; }
  .header__actions { grid-column: 2; }
}
@media (max-width: 560px) {
  .header__actions .lang-wrap { display: none; }
}

.mobile-nav { display: none; }
@media (max-width: 1390px) {
  .mobile-nav {
    display: block;
    position: fixed; inset: var(--header-h) 0 0; z-index: 99;
    background: #fff; overflow-y: auto; padding: 20px var(--gutter) 60px;
    /* Revealed in place rather than slid in from off-screen: an off-canvas
       position: fixed panel is not clipped by an ancestor's overflow and
       would add horizontal scroll to every page. */
    opacity: 0; transform: translateY(-10px); visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
}
.mobile-nav__link {
  display: block; padding: 14px 4px; font-size: 1.02rem; font-weight: 600;
  color: var(--ink-900); border-bottom: 1px solid var(--line);
}
.m-acc { border-bottom: 1px solid var(--line); }
.m-acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px; font-size: 1.02rem; font-weight: 600; color: var(--ink-900);
  background: none; border: 0; cursor: pointer; text-align: left;
}
.m-acc__btn svg { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.m-acc.is-open .m-acc__btn svg { transform: rotate(180deg); }
.m-acc__panel { display: none; padding: 0 4px 16px; }
.m-acc.is-open .m-acc__panel { display: block; }
.m-acc__panel h5 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); margin: 16px 0 8px; }
.m-acc__panel a { display: block; padding: 8px 0; font-size: .94rem; color: var(--ink-700); font-weight: 500; }
.mobile-nav__cta { margin-top: 26px; display: grid; gap: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--surface);
  padding: clamp(48px, 6vw, 88px) 0 clamp(44px, 5vw, 72px);
}
.hero__inner { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 56ch; }
.hero__actions { margin-top: 30px; }
.hero__media img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); width: 100%; }

.hero--page .badge { margin-bottom: 16px; }
.hero--page {
  padding: clamp(32px, 4vw, 56px) 0 clamp(32px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}
.hero--page h1 { margin-bottom: 14px; }
.hero--page .lead { max-width: 68ch; }

.awards { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.awards img { height: 62px; width: auto; }
.awards__label { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 18px; color: var(--ink-500); }
.crumbs a { color: var(--ink-500); font-weight: 500; }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-current] { color: var(--ink-900); font-weight: 600; }
.crumbs li { list-style: none; display: flex; align-items: center; gap: 8px; }
.crumbs ol { display: contents; margin: 0; padding: 0; }
.crumbs .sep { color: var(--line-strong); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-xs);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  display: flex; flex-direction: column;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--accent-200); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--accent-100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex: none;
}
.card__icon img, .card__icon svg { width: 26px; height: 26px; }
.card__icon--blue   { background: var(--ic-blue-bg);   border-color: var(--ic-blue-br);   color: var(--ic-blue); }
.card__icon--teal   { background: var(--ic-teal-bg);   border-color: var(--ic-teal-br);   color: var(--ic-teal); }
.card__icon--violet { background: var(--ic-violet-bg); border-color: var(--ic-violet-br); color: var(--ic-violet); }
.card__icon--amber  { background: var(--ic-amber-bg);  border-color: var(--ic-amber-br);  color: var(--ic-amber); }
.card__icon--green  { background: var(--ic-green-bg);  border-color: var(--ic-green-br);  color: var(--ic-green); }
.card__icon--rose   { background: var(--ic-rose-bg);   border-color: var(--ic-rose-br);   color: var(--ic-rose); }
.card__foot { margin-top: auto; padding-top: 18px; }

.card--featured {
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-700) 100%);
  border-color: transparent; color: rgba(255,255,255,.9);
  box-shadow: var(--sh-accent);
}
.card--featured h3, .card--featured h4 { color: #fff; }
.card--featured p { color: rgba(255,255,255,.86); }
.card--featured .card__icon { background: rgba(255,255,255,.16); }

/* Link tile grid (countries / domains / products) */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 12px; }
.tile {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 18px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  font-weight: 600; font-size: .95rem; color: var(--ink-900);
  transition: all .18s var(--ease);
}
.tile::after { content: '→'; color: var(--ink-400); transition: all .18s var(--ease); }
.tile:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.tile:hover::after { color: var(--accent); transform: translateX(3px); }

/* Feature list with checkmarks */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; font-size: .97rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .42em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23247bfe'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 111.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/13px no-repeat;
}
.card--featured .checklist li::before { background-color: rgba(255,255,255,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 111.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); }

/* Bulleted info list */
.infolist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.infolist li { position: relative; padding-left: 26px; }
.infolist li::before {
  content: ''; position: absolute; left: 6px; top: .68em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

/* ==========================================================================
   Specs (product detail rows)
   ========================================================================== */
.specs {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: #fff;
}
.spec {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
}
.spec:last-child { border-bottom: 0; }
.spec:nth-child(odd) { background: var(--surface-tint); }
.spec__k { font-weight: 600; color: var(--ink-900); font-size: .93rem; }
.spec__v { font-size: .96rem; }
.spec__v p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .spec { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
thead th {
  text-align: left; padding: 14px 18px;
  background: var(--surface-tint-2); color: var(--ink-900);
  font-weight: 600; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
tbody td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--accent-050); }

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */
.acc { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; overflow: hidden; }
.acc + .acc { margin-top: 12px; }
.acc__btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--ink-900); line-height: 1.45;
  transition: background .16s var(--ease);
}
.acc__btn:hover { background: var(--surface-tint); }
.acc__icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-100); position: relative; margin-top: 2px;
  transition: all .2s var(--ease);
}
.acc__icon::before, .acc__icon::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: var(--accent);
  transform: translate(-50%,-50%); border-radius: 2px; transition: all .2s var(--ease);
}
.acc__icon::before { width: 11px; height: 2px; }
.acc__icon::after  { width: 2px; height: 11px; }
.acc.is-open .acc__icon { background: var(--accent); }
.acc.is-open .acc__icon::before { background: #fff; }
.acc.is-open .acc__icon::after { opacity: 0; }
.acc__panel { display: none; padding: 0 24px 22px; font-size: .97rem; }
.acc.is-open .acc__panel { display: block; }
.acc__panel > *:first-child { margin-top: 0; }

.faq-group { margin-bottom: 52px; }
.faq-group__title { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(26px, 3vw, 40px); box-shadow: var(--sh-md);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .89rem; font-weight: 600; color: var(--ink-900); margin-bottom: 7px; }
.field .req { color: var(--red); }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field input[type=date], .field input[type=number], .field input[type=url],
.field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  font: inherit; font-size: .96rem; color: var(--ink-900); background: #fff;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-100);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field--check { display: flex; align-items: flex-start; gap: 11px; }
.field--check input { width: 19px; height: 19px; margin-top: 3px; flex: none; accent-color: var(--accent); }
.field--check label { font-size: .9rem; font-weight: 400; color: var(--ink-600); margin: 0; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--ink-500); margin-top: 16px; }
.form-msg { padding: 16px 20px; border-radius: var(--r-md); font-size: .93rem; margin-top: 18px; display: none; }
.form-msg--ok { background: var(--green-tint); color: #0b6b41; }
.form-msg--err { background: var(--red-tint); color: #a51f27; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-700) 55%, #0847a8 100%);
  border-radius: var(--r-xl);
  padding: clamp(38px, 4.5vw, 64px);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.86); font-size: 1.06rem; margin-bottom: 28px; }
.cta-band .btn--primary { background: #fff; color: var(--accent-700); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.cta-band .btn--primary:hover { background: #f2f7ff; color: var(--accent-700); }
.cta-band .btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); box-shadow: none; }
.cta-band .btn--secondary:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

.notice-band {
  background: linear-gradient(135deg, var(--accent-050), var(--accent-100));
  border: 1px solid var(--accent-200);
  border-radius: var(--r-lg);
  padding: 26px 32px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.notice-band h3 { margin: 0 0 6px; font-size: 1.14rem; }
.notice-band > div, .notice-band__t { flex: 1 1 380px; }
.notice-band p { margin: 0; font-size: .95rem; color: var(--ink-600); max-width: 62ch; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats--panel { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .stats--panel { grid-template-columns: 1fr; } }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: #fff; padding: 28px 24px; text-align: center; }
.stat__n { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem); font-weight: 700; color: var(--accent); letter-spacing: -.03em; line-height: 1.1; }
.stat__l { font-size: .88rem; color: var(--ink-600); margin-top: 6px; }

/* ==========================================================================
   Pricing plans
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; align-items: stretch; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.plan { display: flex; flex-direction: column; }
.plan__head { padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.card--featured .plan__head { border-bottom-color: rgba(255,255,255,.24); }
.plan__name { font-size: 1.32rem; margin-bottom: 6px; }
.plan__desc { font-size: .95rem; }
.plan__label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 14px; }
.card--featured .plan__label { color: rgba(255,255,255,.7); }
.plan .btn { margin-top: 26px; }
.card--featured .btn--primary { background: #fff; color: var(--accent-700); box-shadow: none; }
.card--featured .btn--primary:hover { background: #f2f7ff; color: var(--accent-700); }

/* ==========================================================================
   Article / blog
   ========================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
@media (max-width: 960px) { .post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: all .22s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--accent-200); }
.post-card__media { aspect-ratio: 16/9; background: linear-gradient(140deg, var(--accent-100), var(--accent-050)); position: relative; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .82rem; color: var(--ink-500); }
.post-card h3 { font-size: 1.1rem; line-height: 1.4; margin-bottom: 14px; }
.post-card h3 a { color: var(--ink-900); }
.post-card h3 a:hover { color: var(--accent); }
.post-card__foot { margin-top: auto; }

.article { max-width: 760px; margin-inline: auto; }
.article > h2 { margin-top: 2em; }
.article > h3 { margin-top: 1.7em; }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: .55em; }
.article blockquote {
  margin: 2em 0; padding: 22px 28px;
  border-left: 4px solid var(--accent);
  background: var(--surface-tint); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.06rem; color: var(--ink-700);
}
.article img { border-radius: var(--r-lg); margin: 2em 0; box-shadow: var(--sh-sm); }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 26px; font-size: .9rem; color: var(--ink-500); }

/* Legal / long-form documents */
.doc { max-width: 860px; }
.doc h2 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); margin-top: 2.2em; padding-top: .4em; }
.doc h3 { font-size: 1.14rem; margin-top: 1.8em; }
.doc h4 { font-size: 1.02rem; margin-top: 1.5em; }
.doc > *:first-child { margin-top: 0; }
.doc ul, .doc ol { padding-left: 1.35em; }
.doc li { margin-bottom: .5em; }
.doc p, .doc li { font-size: .98rem; }
.doc .table-wrap { margin: 1.8em 0; }

.toc {
  background: var(--surface-tint); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 28px; margin-bottom: 40px;
}
.toc h2 { font-size: .8rem !important; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); margin: 0 0 14px !important; padding: 0 !important; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 34px; }
@media (max-width: 640px) { .toc ol { columns: 1; } }
.toc li { margin-bottom: .45em; font-size: .92rem; }

/* ==========================================================================
   Split feature rows
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(56px, 6vw, 96px); }
.split--rev .split__media { order: -1; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--rev .split__media { order: 0; }
}
.split__media img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); width: 100%; }
.split__media--tint {
  background: linear-gradient(150deg, var(--accent-050), var(--accent-100));
  border-radius: var(--r-xl); padding: 34px; border: 1px solid var(--line);
}

/* ==========================================================================
   Logo strip
   ========================================================================== */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px); }
.logo-strip img { height: 40px; width: auto; opacity: .62; filter: grayscale(1); transition: all .22s var(--ease); }
.logo-strip img:hover { opacity: 1; filter: grayscale(0); }

/* ==========================================================================
   Contact blocks
   ========================================================================== */
.contact-card { text-align: left; }
.contact-card .card__icon { background: var(--accent-100); }
.contact-card a { font-weight: 600; word-break: break-word; }

.office {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-xs);
}
.office address { font-style: normal; line-height: 1.75; margin-bottom: 16px; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0,1fr)); counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .95rem; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-dim);
  padding: clamp(56px, 6vw, 84px) 0 0;
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__logo {
  height: auto; width: clamp(210px, 20vw, 268px);
  margin-bottom: 20px; display: block;
}
.footer__brand p { font-size: .93rem; max-width: 38ch; color: var(--footer-dim); }
.footer__title {
  font-family: var(--font-cond);
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__list a { font-size: .93rem; color: var(--footer-dim); font-weight: 400; }
.footer__list a:hover { color: #fff; }
.footer__contact { display: grid; gap: 10px; font-size: .93rem; }
.footer__contact a { color: #fff; font-weight: 500; }
.footer__contact a:hover { color: var(--accent-200); }

.footer__contactrow {
  border-top: 1px solid var(--footer-line);
  padding: 36px 0 40px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.footer__contactrow > div:first-child { flex: 1 1 260px; }

.footer__bar {
  border-top: 1px solid var(--footer-line);
  padding: 22px 0 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .87rem; color: var(--footer-dim);
}
.footer .muted { color: var(--footer-dim); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid var(--footer-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-dim); transition: all .18s var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.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;
}
.muted { color: var(--ink-500); }
.small { font-size: .88rem; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.empty-note { color: var(--ink-400); font-style: italic; font-size: .93rem; }

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

@media print {
  .header, .footer, .cta-band, .mobile-nav { display: none !important; }
  body { font-size: 11pt; color: #000; }
}

/* ==========================================================================
   Menu visuals — flags, product icons, EETS promos
   ========================================================================== */
.mega__list--visual { gap: 2px 10px; }
.mega__list--visual a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
}
.mega-flag {
  width: 22px; height: 16.5px; flex: none; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(20,32,47,.14); object-fit: cover;
}
.mega-ico {
  width: 26px; height: 26px; flex: none; border-radius: 6px;
  background: var(--accent-100); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: background .14s var(--ease);
}
.mega-ico img { width: 16px; height: 16px; }
.mega__list a:hover .mega-ico { background: var(--accent-200); }

.mega__feature {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: #fff;
  transition: all .16s var(--ease);
}
.mega__feature + .mega__feature { margin-top: 10px; }
.mega__feature:hover { border-color: var(--accent); box-shadow: var(--sh-sm); transform: translateY(-1px); }
.mega__feature .mega-ico { width: 38px; height: 38px; border-radius: 9px; }
.mega__feature .mega-ico img { width: 22px; height: 22px; }
.mega__feature strong { display: block; font-size: .93rem; color: var(--ink-900); font-weight: 600; }
.mega__feature span { display: block; font-size: .8rem; color: var(--ink-500); line-height: 1.45; margin-top: 2px; }

.m-acc__panel a.m-visual {
  display: flex; align-items: center; gap: 10px;
}

/* ==========================================================================
   Page hero variants
   ========================================================================== */
.hero__id {
  display: flex; align-items: center; gap: 24px;
  margin: 0 0 20px;
}
.hero__id h1 { margin: 0; }
.hero-flag {
  width: 96px; height: 72px; border-radius: 10px; flex: none;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(20,32,47,.12), 0 8px 22px rgba(20,32,47,.13);
}
.hero-ico {
  width: 88px; height: 88px; border-radius: 22px; flex: none;
  background: linear-gradient(150deg, var(--accent-100), var(--accent-050));
  border: 1px solid var(--accent-200);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(36,123,254,.13);
}
.hero-ico img { width: 44px; height: 44px; }
@media (max-width: 640px) {
  .hero__id { gap: 16px; }
  .hero-flag { width: 64px; height: 48px; }
  .hero-ico { width: 62px; height: 62px; border-radius: 16px; }
  .hero-ico img { width: 32px; height: 32px; }
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: #fff;
  font-size: .86rem; font-weight: 500; color: var(--ink-700);
}
.chip img { width: 16px; height: 16px; }
.chip strong { color: var(--ink-900); font-weight: 600; }

/* ==========================================================================
   Sticky in-page navigation
   ========================================================================== */
.pagenav {
  position: sticky; top: var(--header-h); z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 1px 0 rgba(20,32,47,.02);
}
.pagenav__inner {
  display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pagenav__inner::-webkit-scrollbar { display: none; }
.pagenav a {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 20px 15px;
  font-size: .95rem; font-weight: 600; color: var(--ink-700);
  white-space: nowrap;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color .16s var(--ease), background .16s var(--ease);
}
/* The underline is a pseudo-element so it can animate width from the centre */
.pagenav a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: -1px;
  height: 3px; border-radius: 3px 3px 0 0;
  background: var(--accent);
  transition: left .2s var(--ease), right .2s var(--ease);
}
.pagenav a:hover { color: var(--accent); background: var(--accent-050); }
.pagenav a:hover::after { left: 20%; right: 20%; }
.pagenav a.is-active { color: var(--accent); }
.pagenav a.is-active::after { left: 0; right: 0; }
@media (max-width: 640px) {
  .pagenav a { padding: 15px 15px 13px; font-size: .89rem; }
}

/* ==========================================================================
   At-a-glance facts
   ========================================================================== */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(262px,1fr)); gap: 16px; }
.fact {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
}
.fact__ico {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  background: var(--accent-100); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.fact__ico img { width: 22px; height: 22px; }
.fact__k {
  font-family: var(--font-cond);
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 4px;
}
.fact__v { font-size: .96rem; color: var(--ink-900); font-weight: 500; line-height: 1.5; }

/* ==========================================================================
   Product / domain cards with icons
   ========================================================================== */
.pcards { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px,1fr)); gap: 16px; }
.pcard {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: all .2s var(--ease);
}
.pcard:hover { border-color: var(--accent); box-shadow: var(--sh-md); transform: translateY(-3px); }
.pcard__ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--accent-100); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.pcard:hover .pcard__ico { background: var(--accent); color: #fff; }
.pcard__ico img { width: 26px; height: 26px; }
.pcard:hover .pcard__ico img { filter: brightness(0) invert(1); }
.pcard__b { min-width: 0; }
.pcard__t { display: block; font-size: 1rem; font-weight: 600; color: var(--ink-900); line-height: 1.35; }
.pcard__d {
  display: block;
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-400); margin-top: 5px;
}

/* Country flag tiles */
.ctiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(178px,1fr)); gap: 12px; }
.ctile {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  font-weight: 500; font-size: .94rem; color: var(--ink-900);
  transition: all .18s var(--ease);
}
.ctile img {
  width: 28px; height: 21px; flex: none; border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(20,32,47,.13); object-fit: cover;
}
.ctile:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.ctile--static:hover { border-color: var(--line); color: var(--ink-900); transform: none; box-shadow: none; }

/* ==========================================================================
   Trust band
   ========================================================================== */
.trust {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px,4vw,56px);
  align-items: center;
}
@media (max-width: 860px) { .trust { grid-template-columns: 1fr; } }
.trust__awards { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.trust__awards img { height: 68px; width: auto; }

/* ==========================================================================
   Order steps (numbered, on a rail)
   ========================================================================== */
.rail { position: relative; display: grid; gap: 28px; }
.rail::before {
  content: ''; position: absolute; left: 21px; top: 12px; bottom: 12px;
  width: 2px; background: linear-gradient(var(--accent-200), var(--line));
}
.rail__step { position: relative; padding-left: 62px; }
.rail__step > .n {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.rail__step h3 { font-size: 1.06rem; margin-bottom: 6px; }
.rail__step p { font-size: .95rem; margin: 0; }

@media print { .pagenav { display: none !important; } }

/* Sub-headings inside feature cards need air — some product pages stack
   half a dozen of them in one block. */
.card h4 { margin: 22px 0 6px; font-size: 1rem; letter-spacing: -.01em; }
.card h4:first-child { margin-top: 0; }
.card h4 + p { margin-bottom: 0; }
.card > .doc h4 { margin-top: 20px; }

/* ==========================================================================
   Homepage hero — centred, with the perspective road animation
   ========================================================================== */
.hero--home {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 6.5vw, 96px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 52%, #f2f7fd 100%);
  isolation: isolate;
}

/* faint blueprint grid */
.hero--home .hero__grid {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(36,123,254,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36,123,254,.055) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 34%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 78% 62% at 50% 34%, #000 30%, transparent 78%);
}
/* horizon glow */
.hero--home .hero__glow {
  position: absolute; left: 50%; bottom: -60px; z-index: -1;
  width: min(1100px, 96vw); height: 420px; transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(36,123,254,.20), transparent 70%),
    radial-gradient(ellipse 30% 46% at 50% 100%, rgba(255,158,44,.16), transparent 72%);
  filter: blur(6px);
}

.hero--home .hero__inner { position: relative; z-index: 2; text-align: center; }

.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-xs);
  font-size: .88rem; font-weight: 500; color: var(--ink-700);
}
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(5,193,104,.16);
}
.hero__pill .sep { color: var(--ink-400); }
@media (max-width: 620px) {
  /* Wrapping the pill left the middle separator stranded on its own line */
  .hero__pill { flex-direction: column; gap: 2px; padding: 12px 22px; line-height: 1.4; text-align: center; }
  .hero__pill .sep { display: none; }
  .hero__pill .dot { margin-bottom: 4px; }
}

.hero--home h1 {
  margin: 26px auto 0;
  max-width: 16ch;
  font-weight: 800;
  font-size: clamp(2.4rem, 1.1rem + 4.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero__accent {
  background: linear-gradient(96deg, var(--accent) 8%, #6aa4ff 55%, var(--accent-700) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero--home .lead { margin: 22px auto 0; max-width: 58ch; }
.hero--home .btn-row { margin-top: 34px; }

/* stat row */
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin: clamp(38px, 5vw, 62px) auto 0; max-width: 860px;
}
@media (max-width: 700px) { .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; } }
.hero__stat .n {
  display: block; font-weight: 700; color: var(--ink-900);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem); line-height: 1.1; letter-spacing: -.02em;
}
.hero__stat .n em { font-style: normal; color: var(--accent); }
.hero__stat .l {
  display: block; margin-top: 8px;
  font-family: var(--font-cond);
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500);
}
.hero__stat--lead .n { font-size: clamp(1.7rem, 1.1rem + 2.2vw, 2.6rem); }

/* ==========================================================================
   Inline enquiry form (product / country / domain / EETS sidebars)
   ========================================================================== */
.enquiry {
  background: linear-gradient(160deg, var(--accent-050), var(--accent-100));
  border: 1px solid var(--accent-200);
  border-radius: var(--r-xl);
  padding: clamp(24px, 2.4vw, 32px);
  box-shadow: var(--sh-sm);
}
.enquiry h3 { margin-bottom: 8px; }
.enquiry > p { font-size: .95rem; margin-bottom: 22px; }
.enquiry .field { margin-bottom: 14px; }
.enquiry .field label {
  font-size: .82rem; font-weight: 600; color: var(--ink-800); margin-bottom: 5px;
}
.enquiry .field input,
.enquiry .field textarea {
  padding: 11px 14px; font-size: .93rem;
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 0 0 1px rgba(20,32,47,.05);
}
.enquiry .field input:focus,
.enquiry .field textarea:focus {
  background: #fff; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(36,123,254,.16);
}
.enquiry .field textarea { min-height: 96px; }
.enquiry .form-row { gap: 0 14px; }
.enquiry .field--check { margin: 4px 0 18px; }
.enquiry .field--check label { font-size: .84rem; font-weight: 400; color: var(--ink-700); }
.enquiry .form-msg { margin-top: 14px; }
.enquiry__foot {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(36,123,254,.18);
  font-size: .84rem; color: var(--ink-600);
}
.enquiry__foot a { font-weight: 600; }

/* ==========================================================================
   Ported component system (light theme)
   Structure, motion and icon-colour language from the dark concept, rebuilt
   on the light palette.
   ========================================================================== */
:root {
  --ic-amber:   #d97a06;
  --ic-amber-bg: rgba(240,150,30,.13);
  --ic-amber-br: rgba(217,122,6,.28);
  --ic-teal:    #0d9488;
  --ic-teal-bg: rgba(13,148,136,.11);
  --ic-teal-br: rgba(13,148,136,.26);
  --ic-blue:    #247bfe;
  --ic-blue-bg: rgba(36,123,254,.11);
  --ic-blue-br: rgba(36,123,254,.26);
  --ic-rose:    #d6336c;
  --ic-rose-bg: rgba(214,51,108,.10);
  --ic-rose-br: rgba(214,51,108,.24);
  --ic-green:   #0f9d58;
  --ic-green-bg: rgba(15,157,88,.11);
  --ic-green-br: rgba(15,157,88,.26);
  --ic-violet:  #6d4aff;
  --ic-violet-bg: rgba(109,74,255,.10);
  --ic-violet-br: rgba(109,74,255,.24);
  --grad-accent: linear-gradient(92deg, var(--accent), #6aa4ff);
}

/* ---------- kicker: eyebrow with a leading rule ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-cond);
  font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.kicker::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: var(--grad-accent); flex: none;
}
.kicker--amber { color: var(--ic-amber); }
.kicker--amber::before { background: linear-gradient(92deg, var(--ic-amber), #f5b459); }

/* ---------- head-row: title left, lead right ---------- */
.head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 36px; flex-wrap: wrap; margin-bottom: clamp(36px, 4vw, 56px);
}
.head-row h2 { margin: 14px 0 0; max-width: 20ch; }
.head-row > div { min-width: 0; }
.head-row .lead { max-width: 460px; margin: 0; font-size: 1.05rem; }

/* ---------- reveal on scroll ---------- */
/* Only hide reveal targets once JS is confirmed running, so the page stays
   fully readable if the script fails or is blocked. */
.js-rv .rv {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js-rv .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-rv .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- feature card (icon tile + bullet list + optional tag) ---------- */
.fcards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.fcards--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px) { .fcards, .fcards--3 { grid-template-columns: 1fr; } }

.fcard {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: linear-gradient(165deg, #ffffff, #fbfdff);
  padding: clamp(26px, 2.6vw, 34px) clamp(24px, 2.4vw, 32px);
  box-shadow: var(--sh-xs);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
/* cursor-following glow, driven by --mx/--my from JS */
.fcard::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(460px 200px at var(--mx,50%) var(--my,0%),
              rgba(36,123,254,.10), transparent 62%);
  pointer-events: none;
}
.fcard:hover { transform: translateY(-6px); border-color: var(--accent-200); box-shadow: var(--sh-lg); }
.fcard:hover::before { opacity: 1; }
.fcard > * { position: relative; z-index: 1; }

.fcard__ic {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 22px; flex: none;
  background: var(--ic-blue-bg); border: 1px solid var(--ic-blue-br); color: var(--ic-blue);
}
.fcard__ic img, .fcard__ic svg { width: 26px; height: 26px; }
.fcard__ic--amber  { background: var(--ic-amber-bg);  border-color: var(--ic-amber-br);  color: var(--ic-amber); }
.fcard__ic--teal   { background: var(--ic-teal-bg);   border-color: var(--ic-teal-br);   color: var(--ic-teal); }
.fcard__ic--green  { background: var(--ic-green-bg);  border-color: var(--ic-green-br);  color: var(--ic-green); }
.fcard__ic--violet { background: var(--ic-violet-bg); border-color: var(--ic-violet-br); color: var(--ic-violet); }

.fcard h3 { font-size: 1.28rem; margin-bottom: 12px; }
.fcard > p { font-size: .97rem; margin-bottom: 0; }
.fcard ul { list-style: none; margin: 18px 0 0; padding: 0; }
.fcard ul li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .93rem; padding: 5px 0; color: var(--ink-700);
}
.fcard ul li::before {
  content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 9px;
  box-shadow: 0 0 0 3px rgba(36,123,254,.14);
}
.fcard--amber ul li::before { background: var(--ic-amber); box-shadow: 0 0 0 3px var(--ic-amber-bg); }
.fcard--teal  ul li::before { background: var(--ic-teal);  box-shadow: 0 0 0 3px var(--ic-teal-bg); }
.fcard--green ul li::before { background: var(--ic-green); box-shadow: 0 0 0 3px var(--ic-green-bg); }
.fcard__foot { margin-top: auto; padding-top: 20px; }

.fcard .tag {
  position: absolute; top: 24px; right: 24px; z-index: 2;
  font-size: .71rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--ic-teal-bg); border: 1px solid var(--ic-teal-br); color: var(--ic-teal);
}

/* ---------- numbered benefit rows ---------- */
.bene {
  display: grid; grid-template-columns: 108px 1fr auto; gap: 30px; align-items: center;
  padding: 34px 10px; border-bottom: 1px solid var(--line);
  transition: background .35s, padding-left .35s;
}
.bene:first-child { border-top: 1px solid var(--line); }
.bene:hover { background: linear-gradient(90deg, var(--accent-050), transparent 65%); padding-left: 22px; }
.bene__n {
  font-size: 3.2rem; font-weight: 800; line-height: 1; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.6px var(--accent-200);
  transition: color .35s, -webkit-text-stroke-color .35s;
}
.bene:hover .bene__n { color: var(--accent); -webkit-text-stroke-color: transparent; }
.bene h3 { font-size: 1.28rem; margin-bottom: 8px; }
.bene p { max-width: 66ch; font-size: .98rem; margin: 0; }
.bene__arr {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  color: var(--ink-500);
  transition: background .35s, transform .35s, border-color .35s, color .35s;
}
.bene:hover .bene__arr {
  background: var(--accent); border-color: transparent; color: #fff; transform: rotate(-45deg);
}
.bene__arr svg { width: 18px; height: 18px; }
@media (max-width: 780px) {
  .bene { grid-template-columns: 64px 1fr; gap: 18px; padding: 26px 4px; }
  .bene__n { font-size: 2.1rem; }
  .bene__arr { display: none; }
}

/* ---------- horizontal timeline ---------- */
.tl { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
@media (max-width: 860px) { .tl { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; } }
@media (max-width: 520px) { .tl { grid-template-columns: 1fr; } }
.tl::before {
  content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 8%, var(--line-strong) 92%, transparent);
}
@media (max-width: 860px) { .tl::before { display: none; } }
.tl__prog {
  position: absolute; top: 6.5px; left: 0; height: 3px; width: 0; border-radius: 3px;
  background: var(--grad-accent); box-shadow: 0 0 12px rgba(36,123,254,.45);
  transition: width 2.2s cubic-bezier(.3,0,.2,1);
}
.tl.in .tl__prog { width: 100%; }
@media (max-width: 860px) { .tl__prog { display: none; } }
.tl__item { position: relative; padding-top: 38px; }
.tl__item::before {
  content: ""; position: absolute; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(36,123,254,.12);
}
.tl__yr {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.tl__item h3 { font-size: 1.06rem; margin: 9px 0 8px; }
.tl__item p { font-size: .91rem; margin: 0; }

/* ---------- values grid ---------- */
.val-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1000px) { .val-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .val-grid { grid-template-columns: 1fr; } }
.val {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 16px; background: #fff;
  padding: 26px 22px; box-shadow: var(--sh-xs);
  transition: transform .3s, border-color .3s, background .3s, box-shadow .3s;
}
.val::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.val:hover { transform: translateY(-5px); border-color: var(--accent-200); box-shadow: var(--sh-md); }
.val:hover::after { transform: scaleX(1); }
.val__ic {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  margin-bottom: 14px;
  background: var(--ic-blue-bg); border: 1px solid var(--ic-blue-br); color: var(--ic-blue);
}
.val__ic img { width: 21px; height: 21px; }
.val__ic--amber  { background: var(--ic-amber-bg);  border-color: var(--ic-amber-br);  color: var(--ic-amber); }
.val__ic--teal   { background: var(--ic-teal-bg);   border-color: var(--ic-teal-br);   color: var(--ic-teal); }
.val__ic--green  { background: var(--ic-green-bg);  border-color: var(--ic-green-br);  color: var(--ic-green); }
.val__ic--violet { background: var(--ic-violet-bg); border-color: var(--ic-violet-br); color: var(--ic-violet); }
.val h3 { font-size: 1.02rem; margin-bottom: 6px; }
.val p { font-size: .87rem; line-height: 1.55; margin: 0; }

/* ---------- partner marquee ---------- */
.marq-label {
  text-align: center; color: var(--ink-500);
  font-family: var(--font-cond);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden; position: relative;
  border-block: 1px solid var(--line);
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marq-track { display: flex; gap: 64px; width: max-content; animation: marq 34s linear infinite; }
.marquee:hover .marq-track { animation-play-state: paused; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marq-item {
  display: flex; align-items: center; gap: 12px; white-space: nowrap;
  font-weight: 600; font-size: 1.08rem; color: var(--ink-600);
  opacity: .72; transition: opacity .3s, color .3s;
}
.marq-item:hover { opacity: 1; color: var(--ink-900); }
.marq-item img { width: 22px; height: 22px; flex: none; }
@media (prefers-reduced-motion: reduce) { .marq-track { animation: none; } }

/* ---------- CTA band sheen ---------- */
.cta-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -220px; width: 180px;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%   { left: -220px; }
  55%  { left: 115%; }
  100% { left: 115%; }
}
@media (prefers-reduced-motion: reduce) { .cta-band::after { animation: none; opacity: 0; } }
.fcard__label {
  font-family: var(--font-cond);
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); margin: 20px 0 2px !important;
}

/* ==========================================================================
   Product photography
   ========================================================================== */
.hero__grid--product { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 48px; }
@media (max-width: 900px) { .hero__grid--product { grid-template-columns: 1fr; gap: 28px; } }
.hero__product {
  background: linear-gradient(160deg, var(--surface-tint), var(--accent-050));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
  display: grid; place-items: center;
}
.hero__product img {
  width: 100%; max-width: 380px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(20,32,47,.14));
}
@media (max-width: 900px) { .hero__product img { max-width: 300px; } }

/* thumbnail inside product cards */
.pcard__img {
  width: 82px; height: 56px; flex: none; border-radius: 10px;
  background: var(--surface-tint); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden; padding: 5px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pcard__img img { width: 100%; height: 100%; object-fit: contain; }
.pcard:hover .pcard__img { border-color: var(--accent-200); background: #fff; }

/* EETS entries in the mega menu */
.mega-img {
  width: 62px; height: 42px; flex: none; border-radius: 9px;
  background: var(--surface-tint); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden; padding: 4px;
}
.mega-img img { width: 100%; height: 100%; object-fit: contain; }
.mega__feature:hover .mega-img { border-color: var(--accent-200); background: #fff; }
.mega-img--sm { width: 46px; height: 32px; border-radius: 7px; padding: 3px; }

/* Facts sit in a half-width column beside the enquiry form, so a single
   column reads better than the auto-fit grid used full-width. */
.facts--stack { grid-template-columns: 1fr; }
.facts--stack .fact { padding: 20px 22px; }

/* ==========================================================================
   Consent checkboxes (required on every form)
   ========================================================================== */
.field--consent { align-items: flex-start; margin-bottom: 14px; }
.field--consent > div { min-width: 0; }
.field--consent label { display: block; margin: 0; }
.req-note {
  display: block; margin-top: 3px;
  font-family: var(--font-cond);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red);
}
/* once ticked, the reminder is no longer useful */
.field--consent input:checked ~ div .req-note { visibility: hidden; }
.enquiry .field--consent label { font-size: .84rem; }

/* ==========================================================================
   Service cards (image header + bullet list)
   ========================================================================== */
.scards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
@media (max-width: 1000px) { .scards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 660px)  { .scards { grid-template-columns: 1fr; } }
.scard {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--accent-200); }
.scard__media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-tint); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.05); }
.scard__b { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.scard__b h3 { font-size: 1.2rem; margin-bottom: 10px; }
.scard__b > p { font-size: .95rem; margin-bottom: 18px; }
.scard .checklist { gap: 9px; }
.scard .checklist li { font-size: .9rem; }
.scard__foot { margin-top: auto; padding-top: 20px; }

/* ==========================================================================
   Service card line animations
   Stroke-only SVG that inherits the card's accent colour. All motion is
   CSS so it can be switched off for prefers-reduced-motion.
   ========================================================================== */
.sanim { width: 100%; height: 100%; display: block; overflow: visible; }
.sanim .sa-line,
.sanim .sa-draw,
.sanim .sa-wire,
.sanim .sa-route,
.sanim .sa-gauge,
.sanim .sa-gauge-bg,
.sanim .sa-wave circle {
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  fill: none; vector-effect: non-scaling-stroke;
}
.sanim .sa-dot, .sanim .sa-type, .sanim .sa-pk rect { fill: currentColor; stroke: none; }
.sanim .sa-ping { fill: none; stroke: currentColor; stroke-width: 2; }
/* colour comes from the .scard__media--<tone> class on the parent */
.scard__media .sanim { opacity: .92; }

/* --- shared motion --- */
@keyframes sa-flow   { to   { stroke-dashoffset: -60; } }
@keyframes sa-ping   { 0%   { r: 4; opacity: .9; }
                       70%  { r: 15; opacity: 0; }
                       100% { r: 4; opacity: 0; } }
@keyframes sa-drive  { 0%   { transform: translateX(-70px); }
                       100% { transform: translateX(400px); } }
@keyframes sa-grow   { 0%, 8%  { transform: scaleY(.28); }
                       45%, 92% { transform: scaleY(1); }
                       100%    { transform: scaleY(.28); } }
@keyframes sa-drawin { 0%   { stroke-dashoffset: var(--len, 300); }
                       55%, 90% { stroke-dashoffset: 0; }
                       100% { stroke-dashoffset: var(--len, 300); } }
@keyframes sa-slide  { 0%, 10% { transform: translateX(-14px); opacity: 0; }
                       30%, 90% { transform: translateX(0); opacity: 1; }
                       100%   { transform: translateX(-14px); opacity: 0; } }
@keyframes sa-pop    { 0%, 12% { transform: scale(.2); opacity: 0; }
                       32%, 88% { transform: scale(1); opacity: 1; }
                       100%   { transform: scale(.2); opacity: 0; } }
@keyframes sa-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .55; }
                       30% { transform: translateY(-7px); opacity: 1; } }
@keyframes sa-ripple { 0%   { transform: scale(.25); opacity: .55; }
                       100% { transform: scale(1.25); opacity: 0; } }
@keyframes sa-packet { 0%   { transform: translateX(0); opacity: 0; }
                       10%, 90% { opacity: 1; }
                       100% { transform: translateX(164px); opacity: 0; } }
@keyframes sa-packet-back { 0% { transform: translateX(164px); opacity: 0; }
                       10%, 90% { opacity: 1; }
                       100% { transform: translateX(0); opacity: 0; } }

/* --- EETS --- */
.sanim--eets .sa-flow { stroke: currentColor; stroke-width: 2; opacity: .45;
  animation: sa-flow 1.6s linear infinite; }
.sanim--eets .sa-ping { animation: sa-ping 2.4s ease-out infinite; }
.sanim--eets .sa-g2 .sa-ping { animation-delay: .8s; }
.sanim--eets .sa-g3 .sa-ping { animation-delay: 1.6s; }
.sanim--eets .sa-truck { animation: sa-drive 6s linear infinite; }

/* --- Portal --- */
.sanim--portal .sa-bars path { transform-origin: 50% 186px; animation: sa-grow 5s ease-in-out infinite; }
.sanim--portal .sa-b2 { animation-delay: .12s; }
.sanim--portal .sa-b3 { animation-delay: .24s; }
.sanim--portal .sa-b4 { animation-delay: .36s; }
.sanim--portal .sa-b5 { animation-delay: .48s; }
.sanim--portal .sa-b6 { animation-delay: .6s; }
.sanim--portal .sa-trend { --len: 220; stroke-dasharray: 220; animation: sa-drawin 5s ease-in-out infinite; }
.sanim--portal .sa-rows path { animation: sa-slide 5s ease-in-out infinite; }
.sanim--portal .sa-r2 { animation-delay: .15s; }
.sanim--portal .sa-r3 { animation-delay: .3s; }
.sanim--portal .sa-r4 { animation-delay: .45s; }

/* --- API --- */
.sanim--api .sa-wire { opacity: .5; stroke-dasharray: 6 8; animation: sa-flow 2.2s linear infinite; }
.sanim--api .sa-pk1 { animation: sa-packet 2.6s ease-in-out infinite; }
.sanim--api .sa-pk2 { animation: sa-packet-back 2.6s ease-in-out .5s infinite; }
.sanim--api .sa-pk3 { animation: sa-packet 2.6s ease-in-out 1.1s infinite; }

/* --- Mobility --- */
.sanim--mobility .sa-route { --len: 440; stroke-dasharray: 440; animation: sa-drawin 6s ease-in-out infinite; }
.sanim--mobility .sa-pin { transform-box: fill-box; transform-origin: 50% 100%;
  animation: sa-pop 6s ease-in-out infinite; }
.sanim--mobility .sa-p2 { animation-delay: .5s; }
.sanim--mobility .sa-p3 { animation-delay: 1s; }
.sanim--mobility .sa-gauge-bg { opacity: .22; }
.sanim--mobility .sa-gauge { --len: 189; stroke-dasharray: 189;
  transform: rotate(-90deg); transform-origin: 334px 62px;
  animation: sa-drawin 6s ease-in-out infinite; }

/* --- Toll Cost Optimisation --- */
.sanim--optimise .sa-cost { --len: 330; stroke-dasharray: 330;
  animation: sa-drawin 6s ease-in-out infinite; }
.sanim--optimise .sa-fill { fill: currentColor; stroke: none; opacity: .10;
  transform-box: fill-box; transform-origin: 50% 100%;
  animation: sa-grow 6s ease-in-out infinite; }
.sanim--optimise .sa-bars path { transform-box: fill-box; transform-origin: 50% 100%;
  animation: sa-grow 6s ease-in-out infinite; }
.sanim--optimise .sa-b2 { animation-delay: .12s; }
.sanim--optimise .sa-b3 { animation-delay: .24s; }
.sanim--optimise .sa-b4 { animation-delay: .36s; }
.sanim--optimise .sa-b5 { animation-delay: .48s; }
.sanim--optimise .sa-tag { transform-box: fill-box; transform-origin: 50% 50%;
  animation: sa-pop 6s ease-in-out infinite; }
.sanim--optimise .sa-ping { animation: sa-ping 2.6s ease-out infinite; }

/* --- Support --- */
.sanim--support .sa-wave circle { opacity: .35; transform-box: fill-box; transform-origin: 50% 50%;
  animation: sa-ripple 3s ease-out infinite; }
.sanim--support .sa-w2 circle { animation-delay: 1.5s; }
.sanim--support .sa-type { animation: sa-bounce 1.4s ease-in-out infinite; }
.sanim--support .sa-t2 { animation-delay: .18s; }
.sanim--support .sa-t3 { animation-delay: .36s; }
.sanim--support .sa-br { transform-box: fill-box; transform-origin: 100% 50%;
  animation: sa-pop 5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .sanim *, .sanim { animation: none !important; }
  .sanim .sa-draw, .sanim .sa-route, .sanim .sa-gauge, .sanim .sa-trend { stroke-dashoffset: 0 !important; }
  .sanim .sa-pin, .sanim .sa-br { opacity: 1; transform: none; }
  .sanim .sa-bars path { transform: none; }
}

/* animated media panel replaces the photo */
.scard__media {
  display: grid; place-items: center; padding: 18px;
  background: linear-gradient(160deg, var(--surface-tint), #fff);
  border-bottom: 1px solid var(--line);
}
.scard__media--blue   { color: var(--ic-blue);
  background: linear-gradient(160deg, var(--ic-blue-bg), #fff); }
.scard__media--teal   { color: var(--ic-teal);
  background: linear-gradient(160deg, var(--ic-teal-bg), #fff); }
.scard__media--violet { color: var(--ic-violet);
  background: linear-gradient(160deg, var(--ic-violet-bg), #fff); }
.scard__media--amber  { color: var(--ic-amber);
  background: linear-gradient(160deg, var(--ic-amber-bg), #fff); }
.scard__media--green  { color: var(--ic-green);
  background: linear-gradient(160deg, var(--ic-green-bg), #fff); }
.scard__media--rose   { color: var(--ic-rose);
  background: linear-gradient(160deg, var(--ic-rose-bg), #fff); }
.scard:hover .scard__media img { transform: none; }
@keyframes sa-sweep { 0%, 10% { transform: rotate(-115deg); }
                      55%, 90% { transform: rotate(110deg); }
                      100%    { transform: rotate(-115deg); } }
.sanim--mobility .sa-needle { transform-origin: 334px 62px; animation: sa-sweep 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .sanim--mobility .sa-needle { transform: rotate(40deg); } }
/* the truck is filled so it occludes gantry posts as it passes, instead of
   the lines visibly crossing through it */
.sanim--eets .sa-truck .sa-line { fill: #fff; }

/* the mega menus align to the wider header track */
.mega--wide  { width: min(1020px, calc(100vw - 40px)); }
.mega--xwide { width: min(1180px, calc(100vw - 40px)); }
@media (max-width: 560px) { .brand img { height: 38px; } }

/* The header CTA is the widest variable-length string in the bar, and it grows
   in translation — English "Portal Login" is 12 characters, German
   "Zugang zum Portal" is 17. At small widths that pushed the header past the
   viewport in every locale. Below 600px the button is dropped from the bar;
   the mobile menu already carries it full-width as its primary CTA. */
@media (max-width: 600px) {
  .header__actions .btn--primary { display: none; }
}

/* ==========================================================================
   Discontinued products
   A small label above the name in the menus and product cards, an amber
   badge in place of the product badge, and a notice band on the page itself.
   ========================================================================== */

.disc-tag {
  display: block;
  font-family: var(--font-cond);
  font-size: .63rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ic-amber);
  line-height: 1; margin-bottom: 3px;
}

/* menus: a superscript up and to the right of the name, like an exponent */
.disc-sup {
  font-family: var(--font-cond);
  font-size: .5rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ic-amber);
  margin-left: 4px; vertical-align: super; line-height: 0;
  white-space: nowrap;
}
.mega__list a.is-disc,
.m-acc__panel a.is-disc { color: var(--ink-500); }
/* the product columns are .mega__list--visual, whose anchors are flex rows -
   block keeps the name and its superscript on one baseline */
.mega__list--visual a.is-disc,
.mega__list a.is-disc { display: block; }
.mega__list a.is-disc:hover,
.m-acc__panel a.is-disc:hover { color: var(--accent); }
.mega__list a.is-disc:hover .disc-sup,
.m-acc__panel a.is-disc:hover .disc-sup { color: var(--ic-amber); }

/* product cards */
.pcard--disc { background: var(--surface-tint); border-style: dashed; }
.pcard--disc .pcard__t { color: var(--ink-600); }
.pcard--disc .pcard__img img,
.pcard--disc .pcard__ico img { filter: grayscale(1); opacity: .62; }
.pcard--disc:hover { border-style: solid; }
.pcard--disc:hover .pcard__img img,
.pcard--disc:hover .pcard__ico img { filter: none; opacity: 1; }

/* hero */
.badge--disc {
  background: var(--amber-tint); color: #9a5406;
  border: 1px solid rgba(217,122,6,.28);
}
.badge--disc::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ic-amber); flex: none;
}
.hero--disc { background: linear-gradient(180deg, #fffaf3, var(--surface) 76%); }
.hero__product--disc img { filter: grayscale(1); opacity: .75; }

/* the notice band */
.notice {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 26px; border-radius: var(--r-lg);
  border: 1px solid rgba(217,122,6,.30);
  background: linear-gradient(120deg, var(--amber-tint), #fffdfa);
}
.notice__ico {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(240,150,30,.16); color: var(--ic-amber);
  display: flex; align-items: center; justify-content: center;
}
.notice__ico svg { width: 24px; height: 24px; }
.notice__b { min-width: 0; }
.notice__t { font-size: clamp(1.15rem, 1.6vw, 1.45rem); margin: 2px 0 8px; color: #7a4405; }
.notice__b p { color: #7a4405; margin: 0; max-width: 78ch; }
.notice__alt {
  font-weight: 700; margin-top: 16px !important; font-size: .95rem;
}
.notice__acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.notice__acts .btn--secondary { background: #fff; border-color: rgba(217,122,6,.35); color: #7a4405; }
.notice__acts .btn--secondary:hover { border-color: var(--ic-amber); color: #5f3404; }

@media (max-width: 560px) {
  .notice { flex-direction: column; gap: 14px; padding: 20px; }
}

/* ==========================================================================
   Partner logo marquee
   Customer logos replace the icon+label items in the trusted-by strip.
   Every file is 90px tall, so cap the rendered height and let width follow.
   ========================================================================== */
.marquee--logos { padding: 26px 0; }
.marquee--logos .marq-track { gap: 58px; align-items: center; }
.marq-item--logo {
  display: flex; align-items: center; flex: none;
  opacity: .88;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.marq-item--logo img {
  width: auto; height: 42px; flex: none;
  object-fit: contain; display: block;
}
.marq-item--logo:hover { opacity: 1; transform: scale(1.04); }

@media (max-width: 640px) {
  .marquee--logos .marq-track { gap: 40px; }
  .marq-item--logo img { height: 34px; }
}

/* A country announced but not live yet: same tile, amber and not clickable */
.ctiles + .ctiles { margin-top: 12px; }
.ctile--soon {
  border-style: dashed; border-color: rgba(217,122,6,.38);
  background: var(--amber-tint); color: #7a4405;
}
.ctile--soon img { filter: grayscale(.35); opacity: .85; }

/* Header: burger from 1390px (its nav and Portal Login button broke
   the row at up to 1361px), nav tightening extended to match. */
