/* ============================================================
   iVcardo Technologies — Complete Site CSS
   Merged from: ivcardo.css + all page-specific inline styles
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:       #111D33;
  --navy-mid:   #1B2B4B;
  --red:        #CC2936;
  --bg-light:   #F0F4F8;
  --white:      #FFFFFF;
  --body:       #4A5568;
  --sub:        #6B7A8D;
  --border:     #CBD5E0;
  --maxw:       1240px;
  --pad-x:      clamp(20px, 4vw, 56px);
  --label-tracking: .22em;
  --serif-stack: "Calibri Light","Calibri","Segoe UI",system-ui,-apple-system,Helvetica,Arial,sans-serif;
  --mono:       ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
}

/* ── WORDPRESS ADMIN BAR ────────────────────────────────────── */
/* Kill any theme body padding that creates the gap under the nav */
body.ivcardo-page { padding-top: 0 !important; margin-top: 0 !important; background: var(--navy) }
/* Push sticky nav below admin bar when logged in as admin */
.admin-bar .nav { top: 32px }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px }
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
body {
  font-family: var(--serif-stack);
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100% }
/* Global icon constraint — prevents unsized SVG icons from expanding full-width */
svg.icon { width: 32px; height: 32px; flex-shrink: 0 }
a, a:visited { color: inherit; text-decoration: none }
button { font: inherit; cursor: pointer }

/* ── LAYOUT ────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative }
.section--dark     { background: var(--navy);     color: var(--white) }
.section--navy-mid { background: var(--navy-mid); color: var(--white) }
.section--light    { background: var(--bg-light); color: var(--body)  }
.section--white    { background: var(--white);    color: var(--body)  }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; margin: 0; color: inherit; text-wrap: balance }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); line-height: 1.04; letter-spacing: -0.02em; font-weight: 300 }
h1 strong { font-weight: 700 }
h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); line-height: 1.08; font-weight: 300 }
h2 strong { font-weight: 700 }
h3 { font-size: 1.25rem; line-height: 1.25; font-weight: 600; letter-spacing: 0 }
p { margin: 0 0 1em }
.lead { font-size: clamp(1.05rem, 1.25vw, 1.2rem); color: var(--sub); max-width: 62ch; line-height: 1.55 }
.section--dark .lead, .section--navy-mid .lead { color: #A8B4C8 }
/* Force headings white on dark sections — prevents theme overrides */
.section--dark h2, .section--dark h3,
.section--navy-mid h2, .section--navy-mid h3 { color: var(--white) }

/* ── LABEL ─────────────────────────────────────────────────── */
.label {
  display: inline-block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 38px;
}
.label::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 26px; height: 1.5px;
  background: var(--red);
  transform: translateY(-50%);
}
.section-head { max-width: 780px; margin-bottom: clamp(48px, 5vw, 72px) }
.section-head .lead { margin-top: 1.25rem }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,29,51,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(203,213,224,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px }
.logo { display: inline-flex; align-items: baseline; gap: .55em; font-weight: 700; letter-spacing: -0.01em; font-size: 1.35rem; line-height: 1 }
.logo .iv    { color: var(--red) }
.logo .cardo { color: var(--white) }
.logo .tech  { color: var(--border); font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; margin-left: .4em }
.nav__links  { display: flex; gap: 34px; align-items: center }
.nav__links a { color: #CBD5E0; font-size: .92rem; transition: color .2s }
.nav__links a:hover { color: var(--white) }
.nav__links a.is-current { color: var(--white); position: relative }
.nav__links a.is-current::after { content: ""; position: absolute; left: 0; right: 0; bottom: -26px; height: 2px; background: var(--red) }
.nav__cta { background: var(--red); color: var(--white) !important; padding: 10px 18px; border-radius: 2px; font-size: .9rem; font-weight: 600; letter-spacing: .02em; transition: background .2s }
.nav__cta:hover { background: #B82430; color: var(--white) !important }

/* Hamburger button */
.nav__burger {
  display: none;
  background: none; border: none; color: var(--white);
  padding: 8px; cursor: pointer;
}
/* Mobile drawer */
.nav__drawer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(203,213,224,.08);
}
.nav__drawer .wrap {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px; padding-bottom: 20px;
}
.nav__drawer a { color: #CBD5E0; font-size: 1rem; padding: 10px 0; border-bottom: 1px solid rgba(203,213,224,.08); transition: color .2s }
.nav__drawer a:hover { color: var(--white) }
.nav__drawer a:last-child { border-bottom: 0 }

@media (max-width: 880px) {
  .nav__links:not(.nav__links--cta-only) { display: none }
  .nav__links--cta-only { display: none !important }
  .nav__burger { display: flex }
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 2px;
  font-size: .98rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
  border: 1.5px solid transparent;
}
.btn--primary       { background: var(--red); color: var(--white) !important }
.btn--primary:hover { background: #B82430; color: var(--white) !important }
.btn--outline-dark  { border-color: #3D4F70; color: var(--white) }
.btn--outline-dark:hover  { border-color: var(--white); background: rgba(255,255,255,.04); color: var(--white) }
.btn--outline-light { border-color: var(--border); color: var(--navy) }
.btn--outline-light:hover { border-color: var(--navy); background: rgba(17,29,51,.03) }
/* Legacy alias used in index.html */
.btn--outline { border-color: #3D4F70; color: var(--white) !important }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.04); color: var(--white) !important }
.btn .arrow { transition: transform .2s }
.btn:hover .arrow { transform: translateX(3px) }

/* ── HERO BASE ─────────────────────────────────────────────── */
.hero {
  background: var(--navy); color: var(--white);
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(203,213,224,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,213,224,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 48px } }
.hero__inner { position: relative; z-index: 1; display: grid; gap: 28px; max-width: 920px }
.hero h1 { color: var(--white); max-width: 16ch }
.hero__rule { width: 64px; height: 2px; background: var(--red) }
.hero__sub { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: #CBD5E0; max-width: 62ch; line-height: 1.5 }
.hero__sub b { color: var(--white); font-weight: 600 }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px }
.hero__crumbs { display: flex; gap: 10px; align-items: center; color: #8FA0B8; font-size: .82rem; letter-spacing: .04em; margin-bottom: -12px; flex-wrap: wrap }
.hero__crumbs a { color: #8FA0B8; transition: color .2s }
.hero__crumbs a:hover { color: var(--white) }
.hero__crumbs .sep { color: #3D4F70 }

/* Centred hero variant */
.hero__inner.full { max-width: 1040px; margin: 0 auto; text-align: center; display: grid; gap: 24px; justify-items: center }
.hero__inner.full .label { padding-left: 0 }
.hero__inner.full .label::before { display: none }
.hero__inner.full h1 { max-width: 22ch }
.hero__inner.full .hero__sub { max-width: 64ch; margin: 0 auto }
.hero__inner.full .hero__rule { margin: 0 auto }

/* Homepage hero strip */
.hero__strip {
  margin-top: clamp(56px, 7vw, 88px);
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(203,213,224,.14);
  border-bottom: 1px solid rgba(203,213,224,.14);
}
.hero__strip > div { padding: 28px 24px; border-right: 1px solid rgba(203,213,224,.14); text-align: left }
.hero__strip > div:last-child { border-right: 0 }
.hero__strip .num { font-size: 1.55rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; line-height: 1 }
.hero__strip .lbl { font-size: .72rem; color: #8FA0B8; text-transform: uppercase; letter-spacing: .18em; margin-top: 8px }
@media (max-width: 780px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr) }
  .hero__strip > div:nth-child(2) { border-right: 0 }
  .hero__strip > div:nth-child(1), .hero__strip > div:nth-child(2) { border-bottom: 1px solid rgba(203,213,224,.14) }
}

/* ── SMART ASSIGNMENT DECISION CARD ───────────────────────── */
.pick {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 20px;
  font-size: .875rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: center;
}
.pick__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.pick__head .id { color: #8FA0B8; font-size: .75rem; font-family: monospace; letter-spacing: .02em }
.pick__head .live { display: flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 600; color: #4ADE80; text-transform: uppercase; letter-spacing: .1em }
.pick__head .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: blink 1.2s infinite }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.pick__title { font-size: .72rem; color: #8FA0B8; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1) }

.pick__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px 16px;
  padding: 10px 10px;
  border-radius: 6px;
  transition: background .15s;
}
.pick__row + .pick__row { border-top: 1px solid rgba(255,255,255,.07) }
.pick__row.is-winner {
  background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.3);
  margin-bottom: 4px;
}
.pick__row .name { font-weight: 600; font-size: .85rem; display: flex; align-items: center; gap: 8px }
.pick__row .meta { font-size: .72rem; color: #8FA0B8; margin-top: 2px }
.pick__row .price { font-size: .82rem; color: #CBD5E0; white-space: nowrap; text-align: right }
.pick__row .score { font-size: 1rem; font-weight: 700; color: var(--white); text-align: right; min-width: 28px }
.pick__row.is-winner .score { color: #4ADE80 }
.pick__row:not(.is-winner) .score { color: #8FA0B8 }

.wbadge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 3px;
}

.pick__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .72rem;
  color: #8FA0B8;
}
.pick__foot b { color: var(--white) }

@media (max-width: 980px) { .pick { max-width: 480px } }

/* ── STATS ROW ─────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 1px; background: var(--border) }
.section--dark .stats-row, .section--navy-mid .stats-row { background: rgba(203,213,224,.14) }
.stats-row > div { background: var(--white); padding: 44px 32px; display: flex; flex-direction: column; gap: 8px; text-align: center; align-items: center }
.section--dark .stats-row > div { background: var(--navy); color: var(--white) }
.section--navy-mid .stats-row > div { background: var(--navy-mid); color: var(--white) }
.stats-row .num { font-size: clamp(2.4rem, 3.6vw, 3rem); font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1 }
.stats-row .lbl { text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700; color: var(--sub); margin-top: 6px }
.section--dark .stats-row .lbl, .section--navy-mid .stats-row .lbl { color: #8FA0B8 }
.stats-row .sub { font-size: .92rem; margin-top: 6px }
.section--dark .stats-row .sub, .section--navy-mid .stats-row .sub { color: #A8B4C8 }
@media (max-width: 980px) { .stats-row { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 520px) { .stats-row { grid-template-columns: 1fr } }

/* ── RESULTS STATS (3-col, light bg) ──────────────────────── */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 48px }
.results > div { background: var(--white); padding: 44px 32px; display: flex; flex-direction: column; gap: 8px }
.results .num { font-size: clamp(2.4rem, 3.6vw, 3rem); font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1 }
.results .lbl { text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700; color: var(--sub); margin-top: 6px }
.results .sub { font-size: .92rem; margin-top: 6px; color: var(--body); line-height: 1.55 }
@media (max-width: 780px) { .results { grid-template-columns: 1fr } }

/* ── HOMEPAGE: 4-COL STAT CARDS ────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr } }
.stat-card { background: var(--white); border: 1px solid var(--border); padding: 36px 28px; display: flex; flex-direction: column; gap: 18px; transition: border-color .2s }
.stat-card:hover { border-color: #94A3B8 }
.stat-card .icon { width: 36px; height: 36px; color: var(--red) }
.stat-card h3 { color: var(--navy); font-weight: 600; font-size: 1.18rem }
.stat-card .num { font-size: 2.4rem; font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1 }
.stat-card p { color: var(--body); margin: 0; font-size: .96rem; line-height: 1.55 }

/* ── HOMEPAGE: SOLUTION FLOW ───────────────────────────────── */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: stretch; margin-top: 24px }
.flow__node { background: rgba(255,255,255,.03); border: 1px solid rgba(203,213,224,.18); padding: 36px 28px; text-align: center; display: flex; flex-direction: column; gap: 14px; justify-content: center }
.flow__node.flow__node--center { background: rgba(204,41,54,.06); border-color: var(--red) }
.flow__node .eyebrow { color: #8FA0B8; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.flow__node.flow__node--center .eyebrow { color: var(--red) }
.flow__node h3 { color: var(--white); font-size: 1.4rem; font-weight: 600; line-height: 1.2 }
.flow__node p { color: #A8B4C8; font-size: .92rem; margin: 0; line-height: 1.5 }
.flow__connector { align-self: center; display: flex; align-items: center; justify-content: center; color: #3D4F70; padding: 0 6px }
.flow__connector svg { width: 40px; height: 14px }
.flow__caption { margin-top: 36px; text-align: center; color: #A8B4C8; font-size: 1.05rem; letter-spacing: .02em }
.flow__caption b { color: var(--white); font-weight: 600 }
@media (max-width: 900px) { .flow { grid-template-columns: 1fr; gap: 14px } .flow__connector { transform: rotate(90deg); padding: 6px 0 } }

/* ── HOMEPAGE: METRICS GRID ────────────────────────────────── */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border) }
.metrics > div { background: var(--white); padding: 48px 32px; display: flex; flex-direction: column; gap: 8px }
.metrics .num { font-size: clamp(2.4rem, 3.6vw, 3.2rem); color: var(--red); font-weight: 700; letter-spacing: -0.02em; line-height: 1 }
.metrics .lbl { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 600; color: var(--sub) }
.metrics .sub { color: var(--body); font-size: .92rem; margin-top: 6px }
@media (max-width: 880px) { .metrics { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 520px) { .metrics { grid-template-columns: 1fr } }

/* ── HOMEPAGE: MARKETS SPLIT ───────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch }
@media (max-width: 880px) { .split { grid-template-columns: 1fr } }
.split > article { background: var(--white); border: 1px solid var(--border); padding: 44px 36px; display: flex; flex-direction: column; gap: 18px }
.split h3 { color: var(--navy); font-size: 1.5rem; font-weight: 600 }
.split ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px }
.split li { display: flex; align-items: flex-start; gap: 12px; color: var(--body); font-size: 1rem }
.split li::before { content: ""; flex: 0 0 6px; width: 6px; height: 6px; background: var(--red); margin-top: .55em; border-radius: 0 }
.split .eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700 }
.callouts { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px }
@media (max-width: 760px) { .callouts { grid-template-columns: 1fr } }
.callout { background: var(--navy); color: var(--white); padding: 40px 36px; display: flex; flex-direction: column; gap: 8px; border-left: 4px solid var(--red) }
.callout .num { font-size: 2.6rem; font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1 }
.callout h3 { color: var(--white); font-size: 1.5rem; font-weight: 600; margin: 0 }
.callout p { color: #CBD5E0; margin: 8px 0 0; font-size: 1.02rem; line-height: 1.5 }

/* ── HOMEPAGE: MODULES (index version) ─────────────────────── */
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(203,213,224,.18) }
.modules > article { background: var(--navy-mid); padding: 0 40px 44px; display: flex; flex-direction: column; gap: 18px; transition: background .2s; border-top: 3px solid var(--red) }
.modules > article:hover { background: #22365E }
.modules > article > .top { padding-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px }
.modules .badge { color: #8FA0B8; font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase }
.modules .icon  { width: 44px; height: 44px; color: var(--white); stroke-width: 1.4 }
.modules h3 { color: var(--white); font-size: 1.55rem; font-weight: 600 }
.modules p  { color: #A8B4C8; margin: 0; font-size: 1rem; line-height: 1.55 }
.modules .learn { margin-top: auto; color: var(--red); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; letter-spacing: .02em; transition: gap .2s, color .2s }
.modules .learn:hover { gap: 12px; color: #FF4D5C }
.modules .learn svg { width: 14px; height: 14px }
@media (max-width: 760px) { .modules { grid-template-columns: 1fr } }

/* ── PARTNER STRIP ─────────────────────────────────────────── */
.partner-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border) }
.section--dark .partner-strip { border-color: rgba(203,213,224,.14) }
.partner-strip > div { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 38px 18px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 600; font-size: 1rem; letter-spacing: .01em; text-align: center; line-height: 1.2; min-height: 96px }
.section--dark .partner-strip > div { color: var(--white); border-right-color: rgba(203,213,224,.14); border-bottom-color: rgba(203,213,224,.14) }
.partner-strip > div:nth-child(4n) { border-right: 0 }
.partner-strip > div:nth-child(n+5) { border-bottom: 0 }
/* Legacy alias */
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid var(--border); margin-bottom: 64px }
.partners > div { border-right: 1px solid var(--border); padding: 38px 18px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 600; font-size: 1rem; text-align: center; line-height: 1.2; min-height: 96px }
.partners > div:last-child { border-right: 0 }
@media (max-width: 980px) {
  .partners { grid-template-columns: repeat(3, 1fr) }
  .partners > div:nth-child(3n) { border-right: 0 }
  .partners > div:nth-child(-n+3) { border-bottom: 1px solid var(--border) }
}
@media (max-width: 640px) {
  .partner-strip { grid-template-columns: repeat(2, 1fr) }
  .partner-strip > div { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important }
  .partner-strip > div:nth-child(2n) { border-right: 0 !important }
  .partner-strip > div:nth-child(4n) { border-right: 1px solid var(--border) !important }
  .partner-strip > div:nth-child(n+5) { border-bottom: 1px solid var(--border) !important }
  .partners { grid-template-columns: repeat(2, 1fr) }
  .partners > div { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important }
  .partners > div:nth-child(2n) { border-right: 0 !important }
  .partners > div:nth-last-child(-n+2) { border-bottom: 0 !important }
}

/* Partner cards */
.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 64px }
.partner-card { border: 1px solid var(--border); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s }
.partner-card:hover { border-color: var(--red) }
.partner-card__head { display: flex; flex-direction: column; gap: 6px }
.partner-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 }
.partner-card__tag { font-family: var(--mono); font-size: .72rem; color: var(--red); letter-spacing: .04em }
.partner-card p { font-size: .88rem; color: var(--sub); line-height: 1.6; margin: 0 }
@media (max-width: 980px) { .partner-cards { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 520px) { .partner-cards { grid-template-columns: 1fr } }

/* ── VERTICAL TIMELINE ─────────────────────────────────────── */
.vtl { position: relative; padding: 8px 0 32px; max-width: 640px; margin: 24px auto 0 }
.vtl__track { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--border); transform: translateX(-50%) }
.vtl__item { display: grid; grid-template-columns: 1fr 24px 1fr; align-items: center; gap: 24px; min-height: 64px; padding: 12px 0 }
.vtl__dot { width: 14px; height: 14px; background: var(--red); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--red); justify-self: center; flex-shrink: 0; z-index: 1 }
.vtl__dot--today { width: 18px; height: 18px; box-shadow: 0 0 0 1px var(--red), 0 0 0 5px rgba(196,30,58,.15) }
.vtl__content { display: flex; flex-direction: column; gap: 4px }
.vtl__item--left .vtl__content { text-align: right }
.vtl__item--right .vtl__content { text-align: left }
.vtl__spacer { }
.vtl__year { font-weight: 700; font-size: .9rem; color: var(--navy); letter-spacing: .04em }
.vtl__label { font-size: .88rem; color: var(--sub); line-height: 1.4 }
.vtl__item--today .vtl__year { color: var(--red) }
@media (max-width: 600px) {
  .vtl { max-width: 100% }
  .vtl__track { left: 20px; transform: none }
  /* Switch to flexbox so we can reorder dot before content for both --left and --right items */
  .vtl__item { display: flex; align-items: flex-start; gap: 16px; padding: 10px 0 }
  .vtl__spacer { display: none }
  .vtl__dot { order: 1; flex-shrink: 0; align-self: flex-start; margin-top: 3px }
  .vtl__content { order: 2; flex: 1 }
  .vtl__item--left .vtl__content, .vtl__item--right .vtl__content { text-align: left }
}

/* ── TIMELINE ──────────────────────────────────────────────── */
.timeline { position: relative; padding: 36px 0 8px }
.timeline__line { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border) }
.section--dark .timeline__line { background: rgba(203,213,224,.2) }
.timeline__nodes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative }
.timeline__nodes--5 { grid-template-columns: repeat(5, 1fr) }
.timeline__node { position: relative; padding-top: 64px; text-align: center }
.timeline__node::before { content: ""; position: absolute; top: calc(50% - 8px); left: 50%; width: 14px; height: 14px; background: var(--red); transform: translate(-50%, -50%); border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--red); border-radius: 50% }
.section--dark .timeline__node::before { border-color: var(--navy) }
.timeline__year  { font-weight: 700; color: var(--navy); font-size: 1rem; letter-spacing: .04em; margin-bottom: 6px }
.section--dark .timeline__year { color: var(--white); font-family: var(--mono) }
.timeline__label { color: var(--sub); font-size: .84rem; line-height: 1.4; max-width: 18ch; margin: 0 auto }
.section--dark .timeline__label { color: #A8B4C8 }
@media (max-width: 780px) {
  /* Vertical single-column timeline */
  .timeline { padding: 0 }
  .timeline__line { display: none }
  .timeline__nodes,
  .timeline__nodes--5 {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--border);
    margin-left: 7px;
  }
  .section--dark .timeline__nodes,
  .section--dark .timeline__nodes--5 { border-left-color: rgba(203,213,224,.2) }
  .timeline__node {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 28px 24px;
    text-align: left;
    position: relative;
  }
  .timeline__node:last-child { padding-bottom: 0 }
  .timeline__node::before {
    position: absolute;
    top: 3px;
    left: -8px;
    transform: none;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .timeline__year { margin-bottom: 4px; font-size: .95rem }
  .timeline__label { max-width: none; margin: 0 }
}

/* ── COMPARISON TABLE ──────────────────────────────────────── */
.compare-wrap { border: 1px solid var(--border); background: var(--white); overflow-x: auto }
.compare { width: 100%; border-collapse: collapse; font-size: .98rem; min-width: 640px }
.compare th, .compare td { padding: 20px 28px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle }
.compare thead th { background: var(--bg-light); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700; color: var(--sub); border-bottom: 1px solid var(--border) }
.compare thead th.col-ivcardo { color: var(--red); background: rgba(204,41,54,.05) }
.compare tbody td.col-ivcardo { background: rgba(204,41,54,.04); color: var(--navy); font-weight: 600; border-left: 3px solid var(--red) }
.compare tbody tr:last-child td { border-bottom: 0 }
.compare td.row-label { font-weight: 600; color: var(--navy); width: 22% }
.compare td .x     { color: #CBD5E0; font-weight: 700 }
.compare td .check { color: #1A8A4A; font-weight: 700 }
@media (max-width: 680px) {
  .compare { font-size: .8rem; min-width: 0 }
  .compare th, .compare td { padding: 12px 10px }
  .compare td.row-label { width: auto; font-size: .78rem }
  .compare thead th { font-size: .65rem; letter-spacing: .08em }
}

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-section { background: var(--navy); color: var(--white); text-align: center }
.cta-section.is-light { background: var(--bg-light); color: var(--body) }
.cta-section h2 { max-width: 24ch; margin: 0 auto }
.cta-section:not(.is-light) h2 { color: var(--white) }
.cta-section.is-light h2 { color: var(--navy) }
.cta-section .lead { color: #A8B4C8; margin: 20px auto 36px; text-align: center }
.cta-section.is-light .lead { color: var(--sub) }
.cta-section .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }
.cta-section .label { justify-self: center; display: inline-block }

/* Homepage contact form variant */
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start }
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; gap: 40px } }
.cta-grid h2 { color: var(--white); max-width: 18ch; text-align: left }
.cta-grid .lead { color: #A8B4C8; font-size: 1.15rem; text-align: left }
.contact-form { background: var(--navy-mid); border: 1px solid rgba(203,213,224,.14); padding: 40px 36px; display: grid; gap: 16px }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr } }
.field label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: #8FA0B8; margin-bottom: 6px; font-weight: 600 }
.field input, .field select, .field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(203,213,224,.24); padding: 10px 0; color: var(--white); font: inherit; font-size: 1rem; transition: border-color .2s }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--red) }
.field textarea { resize: vertical; min-height: 80px }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%23A8B4C8' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 0 center; background-size: 10px; padding-right: 20px }
.contact-form .btn { justify-self: start; margin-top: 12px }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.hero--short { padding: clamp(48px,7vw,96px) 0 clamp(40px,6vw,80px) }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start }
@media (max-width: 860px) { .contact-page-grid { grid-template-columns: 1fr; gap: 48px } }

.contact-block { margin-bottom: 32px }
.contact-block__label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; color: var(--red); font-weight: 700; margin-bottom: 6px }
.contact-block__val { font-size: 1.05rem; color: var(--navy); font-weight: 500; text-decoration: none; display: block; transition: color .2s }
.contact-block__val:hover { color: var(--red) }

.contact-page-partners { margin-top: 48px }
.cp-logos { display: flex; flex-direction: column; gap: 10px; margin-top: 12px }
.cp-logos > div { font-size: .88rem; color: var(--sub); font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border) }
.cp-logos > div:last-child { border-bottom: 0 }

.contact-page-form { background: var(--white); border: 1px solid var(--border); border-radius: 2px; padding: clamp(28px,4vw,48px); display: grid; gap: 20px; box-shadow: 0 2px 24px rgba(17,29,51,.06) }
.cpf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px }
@media (max-width: 560px) { .cpf-row { grid-template-columns: 1fr } }
.cpf-field { display: flex; flex-direction: column; gap: 6px }
.cpf-field label { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--sub); font-weight: 600 }
.cpf-field .req { color: var(--red) }
.cpf-field input, .cpf-field select, .cpf-field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 2px;
  padding: 11px 14px; font: inherit; font-size: .97rem; color: var(--navy);
  background: var(--bg-light); transition: border-color .2s, box-shadow .2s;
}
.cpf-field input:focus, .cpf-field select:focus, .cpf-field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(17,29,51,.07)
}
.cpf-field input.is-error, .cpf-field select.is-error, .cpf-field textarea.is-error { border-color: var(--red) }
.cpf-field textarea { resize: vertical; min-height: 120px }
.cpf-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%236B7A8D' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; background-color: var(--bg-light); padding-right: 36px }
.cpf-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 4px }
.cpf-note { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--sub) }
.cpf-btn { margin: 0 }
.cpf-status { padding: 14px 18px; border-radius: 2px; font-size: .95rem; margin-top: 4px }
.cpf-status.is-success { background: #EDF7F0; color: #1A6B3C; border: 1px solid #A3D9B8 }
.cpf-status.is-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5 }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--navy); color: #CBD5E0; border-top: 1px solid rgba(203,213,224,.08); padding: 56px 0 40px }
.footer__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center }
.footer__nav { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap }
.footer__nav a { font-size: .92rem; color: #8FA0B8; transition: color .2s }
.footer__nav a:hover { color: var(--white) }
.footer__legal { font-size: .82rem; color: #8FA0B8; text-align: right }
.footer__bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(203,213,224,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: #6B7A8D }
.footer__bottom .links { display: flex; gap: 20px }
@media (max-width: 780px) { .footer__inner { grid-template-columns: 1fr; text-align: center } .footer__legal { text-align: center } }

/* ── PLATFORM PAGE ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: stretch }
.step { background: var(--white); border: 1px solid var(--border); padding: 40px 32px; display: flex; flex-direction: column; gap: 18px }
.step__num { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--red); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; background: var(--white) }
.step h3 { color: var(--navy); font-size: 1.25rem; font-weight: 600 }
.step p { color: var(--body); margin: 0; font-size: .98rem; line-height: 1.55 }
.step__meta { margin-top: auto; color: var(--sub); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 600; padding-top: 12px; border-top: 1px solid var(--border) }
.step__arrow { align-self: center; display: flex; align-items: center; justify-content: center; color: #94A3B8; padding: 0 8px }
.step__arrow svg { width: 44px; height: 14px }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 14px } .step__arrow { transform: rotate(90deg); padding: 6px 0 } }

.api-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start }
@media (max-width: 980px) { .api-split { grid-template-columns: 1fr; gap: 40px } }
.api-stats { display: grid; gap: 24px }
.api-stat { background: var(--white); border: 1px solid var(--border); padding: 32px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center }
.api-stat .num { font-size: clamp(2.4rem, 3.2vw, 2.8rem); font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1; min-width: 5.2ch }
.api-stat .lbl { text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700; color: var(--sub); margin-bottom: 6px }
.api-stat .desc { font-size: .94rem; color: var(--body); line-height: 1.5 }
.api-cta { margin-top: 8px }

/* Code block */
.code { background: var(--navy); border: 1px solid #1F2A44; color: #E2E8F0; font-family: var(--mono); font-size: .84rem; line-height: 1.65; overflow: hidden }
.code__chrome { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid #1F2A44; background: #0B1322 }
.code__dots { display: flex; gap: 6px }
.code__dots span { width: 10px; height: 10px; border-radius: 50%; background: #2A3B5E }
.code__title { color: #8FA0B8; font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; margin-left: auto; font-family: var(--serif-stack) }
.code__method { display: inline-block; background: rgba(204,41,54,.15); color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .08em; padding: 3px 8px; border-radius: 2px; margin-right: 10px }
.code__body { padding: 24px 26px; overflow-x: auto }
.code__sep { padding: 8px 26px; background: #0B1322; color: #6B7A8D; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; border-top: 1px solid #1F2A44; border-bottom: 1px solid #1F2A44 }
.code .k { color: #FF6B7A }
.code .s { color: #94E2A8 }
.code .n { color: #FFB86C }
.code .b { color: #7BB3FF }
.code .c { color: #6B7A8D }
.code .url { color: #E2E8F0 }
.code .punct { color: #6B7A8D }

/* ── SINGLE API PAGE ───────────────────────────────────────── */
/* Hero endpoint panel */
.ep { background: rgba(255,255,255,.04); border: 1px solid rgba(203,213,224,.1); font-family: var(--mono); font-size: .82rem; overflow: hidden }
.ep__head { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(203,213,224,.08); color: #8FA0B8; font-size: .72rem; letter-spacing: .06em }
.ep__head .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50% }
.ep__head .lbl { font-weight: 700; color: #CBD5E0 }
.ep__head .ver { margin-left: auto; color: #4A6380 }
.ep__row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 20px; border-bottom: 1px solid rgba(203,213,224,.05) }
.ep__row:last-child { border-bottom: 0 }
.ep__m { display: inline-block; padding: 2px 7px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; border-radius: 2px; white-space: nowrap; flex-shrink: 0; margin-top: 2px }
.ep__m.get  { background: rgba(99,179,237,.15); color: #63B3ED }
.ep__m.post { background: rgba(72,187,120,.15); color: #68D391 }
.ep__m.put  { background: rgba(246,173,85,.15);  color: #F6AD55 }
.ep__path { color: #E2E8F0 }
.ep__path small { display: block; color: #6B7A8D; font-size: .75rem; margin-top: 2px }

/* Comparison section */
.vs2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px }
@media (max-width: 780px) { .vs2 { grid-template-columns: 1fr } }
.vs2 article { background: var(--white); border: 1px solid var(--border); padding: 36px; display: flex; flex-direction: column; gap: 16px }
.vs2 article.win { border-color: var(--red); border-width: 2px }
.vs2 h3 { color: var(--navy); font-size: 1.2rem; font-weight: 700 }
.vs2 .tag { display: inline-block; color: var(--sub); font-size: .8rem; font-family: var(--mono); letter-spacing: .04em }
.vs2 article.win .tag { color: var(--red) }
.web { position: relative; height: 200px; display: flex; align-items: center; justify-content: center }
.web svg { width: 100%; height: 100%; max-height: 200px }
.web .core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--navy); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; white-space: nowrap; z-index: 1 }
.vs2 article.win .web .core { background: var(--red) }

/* Capabilities grid */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px }
@media (max-width: 980px) { .caps { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 580px) { .caps { grid-template-columns: 1fr } }
.cap { background: var(--white); border: 1px solid var(--border); padding: 32px; display: flex; flex-direction: column; gap: 14px }
.cap .icon { width: 28px; height: 28px; color: var(--red); flex-shrink: 0; stroke-width: 1.6 }
.cap h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700 }
.cap p { color: var(--body); font-size: .95rem; line-height: 1.6; flex: 1 }
.cap .meta { color: var(--sub); font-size: .8rem; font-family: var(--mono); border-top: 1px solid var(--border); padding-top: 14px }
.cap .meta b { color: var(--navy) }

/* ── PROVIDERS PAGE ────────────────────────────────────────── */
.bens { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px }
@media (max-width: 980px) { .bens { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 540px) { .bens { grid-template-columns: 1fr } }
.ben { background: var(--white); border: 1px solid var(--border); padding: 32px; display: flex; flex-direction: column; gap: 14px }
.ben .icon { color: var(--red); stroke-width: 1.6 }
.ben h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700 }
.ben p { color: var(--body); font-size: .95rem; line-height: 1.6 }
/* Booking feed panel */
.feed { background: rgba(255,255,255,.04); border: 1px solid rgba(203,213,224,.1); overflow: hidden; font-size: .88rem }
.feed__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(203,213,224,.08); color: #8FA0B8; font-size: .74rem }
.feed__head .live { display: flex; align-items: center; gap: 8px; color: #68D391; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .7rem }
.feed__head .dot { width: 7px; height: 7px; background: #68D391; border-radius: 50%; animation: pulse 1.6s ease-out infinite }
.feed__row { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 13px 20px; border-bottom: 1px solid rgba(203,213,224,.05) }
.feed__row:last-of-type { border-bottom: 0 }
.feed__src { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: #8FA0B8; text-transform: uppercase }
.feed__row.is-amadeus .feed__src { color: #63B3ED }
.feed__row.is-hoppa .feed__src { color: #F6AD55 }
.feed__name { color: #E2E8F0; font-size: .84rem; font-weight: 600 }
.feed__route { color: #8FA0B8; font-size: .78rem; margin-top: 2px }
.feed__val { color: #68D391; font-weight: 700; font-size: .9rem; text-align: right; white-space: nowrap }
.feed__val small { display: block; color: #4A6380; font-size: .68rem; font-weight: 400 }
.feed__foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; background: rgba(255,255,255,.03); border-top: 1px solid rgba(203,213,224,.08); color: #8FA0B8; font-size: .82rem }
.feed__foot b { color: #68D391; font-weight: 700 }
/* Onboarding timeline */
.obd { position: relative; margin-top: 56px }
.obd__line { position: absolute; top: 24px; left: 0; right: 0; height: 2px; background: var(--border) }
.obd__nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative }
@media (max-width: 780px) { .obd__nodes { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 420px) { .obd__nodes { grid-template-columns: 1fr } .obd__line { display: none } }
.obd__node { display: flex; flex-direction: column; gap: 12px }
.obd__t { color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase }
.obd__h { color: var(--navy); font-size: 1.1rem; font-weight: 700 }
.obd__p { color: var(--body); font-size: .9rem; line-height: 1.55 }
.obd-callout { margin-top: 48px; padding: 28px 32px; border: 1px solid var(--border); background: rgba(17,29,51,.04) }
.obd-callout h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px }
.obd-callout p { color: var(--sub); font-size: .92rem }
/* ── VS COMPARISON CARDS ───────────────────────────────────── */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px }
@media (max-width: 780px) { .vs { grid-template-columns: 1fr } }
.vs__card { background: var(--white); border: 1px solid var(--border); padding: 36px 32px; display: flex; flex-direction: column; gap: 20px }
.vs__card.is-win { border-color: var(--red) }
.vs__eyebrow { display: flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 600; color: var(--sub); text-transform: uppercase; letter-spacing: .12em }
.vs__eyebrow .pill { background: var(--navy); color: var(--white); padding: 3px 10px; font-size: .7rem; letter-spacing: .1em }
.vs__card.is-win .vs__eyebrow .pill { background: var(--red) }
.vs__card h3 { color: var(--navy); font-size: 1.2rem; font-weight: 700; margin: 0 }
.vs__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px }
.vs__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--body); line-height: 1.5 }
.vs__list .marker { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center }
.vs__list .marker svg { width: 14px; height: 14px }
.vs__list li.good .marker { color: #16A34A }
.vs__list li.bad .marker { color: #DC2626 }
.vs__time { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); font-size: .82rem; color: var(--sub); display: flex; gap: 8px }
.vs__time b { color: var(--navy) }

/* ── SUPPLIER ONBOARDING WIDGET ────────────────────────────── */
.onbd { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.1); padding: 0; display: flex; flex-direction: column; font-size: .9rem }
.onbd__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--white); font-weight: 600; font-size: .82rem }
.onbd__head .timer { color: var(--red); font-family: var(--mono); font-size: .8rem }
.onbd__body { display: flex; flex-direction: column; padding: 8px 0 }
.onbd__step { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 12px; padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,.06) }
.onbd__step:last-child { border-bottom: 0 }
.onbd__check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0 }
.onbd__check svg { width: 12px; height: 12px; stroke: transparent }
.onbd__step.is-done .onbd__check { background: var(--red); border-color: var(--red) }
.onbd__step.is-done .onbd__check svg { stroke: var(--white) }
.onbd__step.is-active .onbd__check { border-color: var(--red); animation: pulse-ring 1.5s infinite }
@keyframes pulse-ring { 0%,100%{box-shadow:0 0 0 0 rgba(204,41,54,.4)} 50%{box-shadow:0 0 0 5px rgba(204,41,54,0)} }
.onbd__name { color: var(--white); font-weight: 600; font-size: .85rem }
.onbd__sub { color: #8FA0B8; font-size: .75rem; margin-top: 2px }
.onbd__step.is-done .onbd__name { color: #A8B4C8 }
.onbd__time { color: #8FA0B8; font-size: .75rem; font-family: var(--mono); white-space: nowrap }
.onbd__step.is-active .onbd__time { color: var(--red) }
.onbd__bar { height: 3px; background: rgba(255,255,255,.08); margin: 0 20px }
.onbd__bar::after { content: ''; display: block; width: 60%; height: 100%; background: var(--red) }
.onbd__foot { display: flex; justify-content: space-between; padding: 12px 20px; font-size: .75rem }
.onbd__foot .l { color: #8FA0B8 }
.onbd__foot .r { color: var(--white); font-family: var(--mono); font-weight: 600 }

/* ── SUPPLIER PORTAL CARDS ─────────────────────────────────── */
.portal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,.08); margin-top: 48px }
@media (max-width: 780px) { .portal { grid-template-columns: 1fr } }
.portal article { background: var(--navy-mid); padding: 36px 32px; display: flex; flex-direction: column; gap: 16px }
.portal .top { display: flex; align-items: flex-start; justify-content: space-between }
.portal .num { color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase }
.portal .icon { width: 28px; height: 28px; color: rgba(255,255,255,.3); stroke-width: 1.5; flex-shrink: 0 }
.portal h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin: 0 }
.portal p { color: #8FA0B8; font-size: .92rem; line-height: 1.6; margin: 0; flex: 1 }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 4px }
.chip { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #8FA0B8; font-size: .72rem; font-weight: 600; letter-spacing: .08em; padding: 4px 10px; text-transform: lowercase }

/* Supplier portal list */
.portal-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; background: var(--border) }
@media (max-width: 680px) { .portal-list { grid-template-columns: 1fr } }
.portal-list article { display: flex; align-items: flex-start; gap: 20px; padding: 32px; background: var(--white) }
.portal-list .icon { color: var(--red); stroke-width: 1.6; margin-top: 2px }
.portal-list h3 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 8px }
.portal-list p { color: var(--body); font-size: .93rem; line-height: 1.6 }

/* ── RIDEBRIDGE PAGE ───────────────────────────────────────── */
/* Live tracking card */
.track { background: var(--navy-mid); border: 1px solid rgba(203,213,224,.14); padding: 28px; font-size: .92rem }
.track__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px }
.track__id { color: #8FA0B8; font-family: var(--mono); font-size: .78rem; letter-spacing: .06em }
.track__live { display: inline-flex; align-items: center; gap: 8px; color: var(--red); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.track__live .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 0 rgba(204,41,54,.5); animation: pulse 1.6s ease-out infinite }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(204,41,54,.55)} 70%{box-shadow:0 0 0 10px rgba(204,41,54,0)} 100%{box-shadow:0 0 0 0 rgba(204,41,54,0)} }
.track__map { height: 160px; background: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px) 0 0/24px 24px, linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px) 0 0/24px 24px, #0B1322; position: relative; border: 1px solid rgba(203,213,224,.08); margin-bottom: 20px }
.track__route { position: absolute; inset: 0; width: 100%; height: 100% }
.track__pin { position: absolute; width: 18px; height: 18px; transform: translate(-50%,-50%) }
.track__pin .ring { position: absolute; inset: 0; border: 2px solid var(--red); border-radius: 50%; background: rgba(204,41,54,.18) }
.track__pin .core { position: absolute; inset: 5px; background: var(--red); border-radius: 50% }
.track__pin--end .ring { border-color: #FFFFFF; background: transparent }
.track__pin--end .core { background: #FFFFFF }
.track__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; border-top: 1px solid rgba(203,213,224,.08); font-size: .88rem }
.track__row:first-of-type { border-top: 0; padding-top: 0 }
.track__row .l { color: #8FA0B8; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700 }
.track__row .v { color: var(--white); font-weight: 600 }
.track__row .v.eta { color: var(--red) }
.track__status { margin-top: 14px; display: flex; align-items: center; gap: 8px; background: rgba(204,41,54,.1); border-left: 3px solid var(--red); padding: 10px 14px; color: var(--white); font-weight: 600; font-size: .92rem }
.track__status .step { color: #8FA0B8; font-weight: 400 }

/* Compare stats (0% vs 100%) */
.compare-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px }
@media (max-width: 760px) { .compare-stats { grid-template-columns: 1fr } }
.compare-stats > div { background: var(--white); border: 1px solid var(--border); padding: 44px 36px; display: grid; gap: 6px }
.compare-stats .head { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700; color: var(--sub) }
.compare-stats .head .dot { width: 8px; height: 8px; background: #CBD5E0; border-radius: 50% }
.compare-stats .num { font-size: clamp(3rem, 5vw, 4.2rem); font-weight: 700; color: var(--sub); letter-spacing: -0.02em; line-height: 1; margin-top: 6px }
.compare-stats .lbl { color: var(--body); font-size: 1rem; margin-top: 4px }
.compare-stats .win .head { color: var(--red) }
.compare-stats .win .head .dot { background: var(--red) }
.compare-stats .win .num { color: var(--red) }
.compare-stats .win { border-left: 3px solid var(--red) }

/* Features 3-col dark grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(203,213,224,.18) }
.features > article { background: var(--navy-mid); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: background .2s }
.features > article:hover { background: #22365E }
.features .icon { width: 36px; height: 36px; color: var(--red); stroke-width: 1.5 }
.features h3 { color: var(--white); font-size: 1.18rem; font-weight: 600 }
.features p { color: #A8B4C8; margin: 0; font-size: .96rem; line-height: 1.55 }
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr } }

/* Integration flow */
.int-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: stretch }
.int-node { background: var(--white); border: 1px solid var(--border); padding: 32px 28px; text-align: center; display: flex; flex-direction: column; gap: 10px; justify-content: center }
.int-node.is-center { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); background: rgba(204,41,54,.03) }
.int-node .eyebrow { color: var(--sub); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.int-node.is-center .eyebrow { color: var(--red) }
.int-node h3 { color: var(--navy); font-size: 1.15rem; font-weight: 600 }
.int-node p { color: var(--body); font-size: .9rem; margin: 0; line-height: 1.5 }
.int-conn { align-self: center; color: #94A3B8; padding: 0 8px; display: flex; align-items: center }
.int-conn svg { width: 44px; height: 14px }
@media (max-width: 900px) { .int-flow { grid-template-columns: 1fr; gap: 14px } .int-conn { transform: rotate(90deg); padding: 6px 0 } }

/* Webhook log */
.webhook { margin-top: 48px; background: var(--navy); color: #E2E8F0; border: 1px solid #1F2A44; font-family: var(--mono); font-size: .84rem; overflow: hidden }
.webhook__head { padding: 14px 22px; background: #0B1322; border-bottom: 1px solid #1F2A44; display: flex; align-items: center; gap: 12px; color: #8FA0B8; font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-family: var(--serif-stack) }
.webhook__head .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 1.8s ease-out infinite }
.webhook__body { padding: 8px 0 }
.webhook__row { display: grid; grid-template-columns: 96px 160px 1fr auto; gap: 18px; padding: 11px 22px; border-bottom: 1px dashed rgba(255,255,255,.05); align-items: center }
.webhook__row:last-child { border-bottom: 0 }
.webhook__t   { color: #8FA0B8; font-size: .78rem }
.webhook__evt { color: var(--red); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 700 }
.webhook__payload { color: #E2E8F0; font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.webhook__payload .k { color: #FF6B7A }
.webhook__payload .s { color: #94E2A8 }
.webhook__payload .punct { color: #6B7A8D }
.webhook__status { font-size: .74rem; color: #94E2A8; font-weight: 700; letter-spacing: .06em }
@media (max-width: 760px) { .webhook__row { grid-template-columns: 84px 1fr; gap: 10px } .webhook__payload, .webhook__status { display: none } }

/* Integration stats */
.int-stats { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border) }
.int-stats > div { background: var(--white); padding: 36px 32px }
.int-stats .num { font-size: clamp(2.4rem, 3.6vw, 3rem); font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1 }
.int-stats .lbl { text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700; color: var(--sub); margin-top: 10px }
@media (max-width: 760px) { .int-stats { grid-template-columns: 1fr } }

/* ── WHY IVCARDO PAGE ──────────────────────────────────────── */
.cost { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch }
@media (max-width: 880px) { .cost { grid-template-columns: 1fr } }
.cost > article { background: var(--navy); border: 1px solid rgba(203,213,224,.14); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px }
.cost > article.is-win { border-color: var(--red); background: rgba(204,41,54,.06); border-left: 3px solid var(--red); padding-left: 29px }
.cost .eyebrow { color: #8FA0B8; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.cost h3 { color: var(--white); font-size: 1.4rem; font-weight: 600 }
.cost .big { font-size: clamp(3rem, 5vw, 3.8rem); font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1; font-family: var(--mono) }
.cost .smol { color: #A8B4C8; font-size: .94rem; line-height: 1.5 }
.cost .smol b { color: var(--white); font-weight: 600 }
.cost .bar { height: 8px; background: rgba(255,255,255,.08); position: relative; margin-top: 6px }
.cost .bar > i { position: absolute; left: 0; top: 0; bottom: 0; background: #475569 }
.cost .bar.markup > i { background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.1) 0 6px,transparent 6px 12px); background-color: #94A3B8 }
.cost .bar.win > i { background: var(--red) }
.cost .tag { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(203,213,224,.08); color: #8FA0B8; font-family: var(--mono); font-size: .78rem; letter-spacing: .06em; font-weight: 600 }
.cost .tag b { color: var(--white); font-weight: 700 }
.cost .is-win .tag b { color: var(--red) }
.cost-callout { margin-top: 36px; background: var(--red); color: var(--white); padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap }
.cost-callout h3 { color: var(--white); font-size: 1.4rem; font-weight: 600; margin: 0; max-width: 48ch }
.cost-callout .big { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.02em; font-family: var(--mono) }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
@media (max-width: 880px) { .principles { grid-template-columns: 1fr } }
.principle { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--red); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px }
.principle .num { color: var(--red); font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700 }
.principle h3 { color: var(--navy); font-size: 1.3rem; font-weight: 600 }
.principle p { color: var(--body); margin: 0; font-size: .98rem; line-height: 1.55 }

/* ── CARBON TRACKING PAGE ──────────────────────────────────── */
.emit { background: var(--navy-mid); border: 1px solid rgba(203,213,224,.14); padding: 0 }
.emit__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 24px; border-bottom: 1px solid rgba(203,213,224,.08) }
.emit__head .t { color: #8FA0B8; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.emit__head .live { display: inline-flex; align-items: center; gap: 8px; color: var(--red); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.emit__head .live .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 1.6s ease-out infinite }
.emit__big { padding: 24px 24px 8px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 12px }
.emit__big .v { font-size: 3rem; line-height: 1; font-weight: 700; color: var(--red); letter-spacing: -0.02em; font-family: var(--mono) }
.emit__big .v small { font-size: .9rem; color: #A8B4C8; font-weight: 500; margin-left: 6px; letter-spacing: .06em; font-family: var(--mono) }
.emit__big .delta { color: #8FA0B8; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700; text-align: right; line-height: 1.4 }
.emit__big .delta b { color: #94E2A8; font-family: var(--mono); font-size: .92rem; display: block; font-weight: 700 }
.emit__bars { padding: 16px 24px; display: grid; gap: 10px }
.emit__bar { display: grid; grid-template-columns: 80px 1fr 64px; gap: 14px; align-items: center; font-size: .84rem }
.emit__bar .l { color: #A8B4C8; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 700 }
.emit__bar .track { height: 8px; background: rgba(255,255,255,.06); position: relative }
.emit__bar .track > i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--red); display: block }
.emit__bar .v { color: var(--white); font-family: var(--mono); font-size: .82rem; text-align: right; font-weight: 600 }
.emit__foot { padding: 14px 24px; background: #0F1A2D; border-top: 1px solid rgba(203,213,224,.08); display: flex; justify-content: space-between; color: #8FA0B8; font-size: .76rem; letter-spacing: .06em }
.emit__foot b { color: var(--white); font-family: var(--mono); font-weight: 700 }
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
@media (max-width: 880px) { .why-stats { grid-template-columns: 1fr } }
.why-stat { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--red); padding: 36px 32px; display: flex; flex-direction: column; gap: 10px }
.why-stat .l { color: var(--red); font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700 }
.why-stat .num { font-size: clamp(2.4rem, 3.4vw, 2.8rem); font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1; font-family: var(--mono) }
.why-stat h3 { color: var(--navy); font-size: 1.05rem; font-weight: 600; line-height: 1.3 }
.why-stat p { margin: 0; color: var(--body); font-size: .94rem; line-height: 1.55 }
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(203,213,224,.18) }
.feat > article { background: var(--navy-mid); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: background .2s }
.feat > article:hover { background: #22365E }
.feat .icon { width: 36px; height: 36px; color: var(--red); stroke-width: 1.5 }
.feat h3 { color: var(--white); font-size: 1.18rem; font-weight: 600 }
.feat p { color: #A8B4C8; margin: 0; font-size: .96rem; line-height: 1.55 }
.feat .meta { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); color: #8FA0B8; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700 }
@media (max-width: 980px) { .feat { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 600px) { .feat { grid-template-columns: 1fr } }

/* ── RETAILERS PAGE ────────────────────────────────────────── */
.gauge { background: var(--navy-mid); border: 1px solid rgba(203,213,224,.14); padding: 32px 28px }
.gauge__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px }
.gauge__head .t { color: #8FA0B8; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.gauge__big { font-size: clamp(3.2rem, 5vw, 4.2rem); font-weight: 700; color: var(--red); letter-spacing: -0.03em; line-height: 1; font-family: var(--mono); margin-bottom: 6px }
.gauge__sub { color: #A8B4C8; font-size: .94rem; margin-bottom: 24px }
.gauge__sub b { color: var(--white); font-weight: 600 }
.gauge__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(203,213,224,.08) }
.gauge__row > div { display: grid; gap: 4px }
.gauge__row .l { color: #8FA0B8; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700 }
.gauge__row .v { color: var(--white); font-family: var(--mono); font-size: 1.1rem; font-weight: 700 }
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border) }
@media (max-width: 880px) { .gap-grid { grid-template-columns: 1fr } }
.gap-col { background: var(--white); padding: 44px 36px; display: flex; flex-direction: column; gap: 18px }
.gap-col.is-win { border-left: 3px solid var(--red); padding-left: 33px }
.gap-col .eyebrow { color: var(--sub); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.gap-col.is-win .eyebrow { color: var(--red) }
.gap-col h3 { color: var(--navy); font-size: 1.4rem; font-weight: 600 }
.gap-stack { display: grid; gap: 8px; margin-top: 4px }
.gap-row { display: grid; grid-template-columns: 160px 1fr 80px; gap: 14px; align-items: center }
.gap-row .l { color: var(--sub); font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600 }
.gap-row .bar { height: 34px; background: var(--bg-light); position: relative; border: 1px solid var(--border) }
.gap-row .bar > i { position: absolute; left: 0; top: 0; bottom: 0; background: #94A3B8 }
.gap-col.is-win .gap-row .bar > i { background: var(--red) }
.gap-row .bar.is-provider > i { background: #475569 }
.gap-row .bar.is-markup > i { background: #94A3B8; background-image: repeating-linear-gradient(45deg,rgba(0,0,0,.06) 0 6px,transparent 6px 12px) }
.gap-row .v { color: var(--navy); font-family: var(--mono); font-weight: 700; font-size: .96rem; text-align: right }
.gap-bottom { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: baseline; gap: 12px }
.gap-bottom .l { color: var(--sub); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700 }
.gap-bottom .big { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; font-family: var(--mono); color: #475569 }
.gap-col.is-win .gap-bottom .big { color: var(--red) }

/* Visibility section */
.vis-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start }
@media (max-width: 860px) { .vis-split { grid-template-columns: 1fr; gap: 40px } }
.vis-stats { display: flex; flex-direction: column; gap: 24px }
.vis-stat { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: rgba(203,213,224,.06); border: 1px solid rgba(203,213,224,.1); border-radius: 4px }
.vis-stat.is-win { border-color: var(--red) }
.vis-stat .num { font-family: var(--mono); font-size: 2rem; font-weight: 700; color: #475569; line-height: 1; flex-shrink: 0; min-width: 64px }
.vis-stat.is-win .num { color: var(--red) }
.vis-stat .lbl { color: var(--white); font-weight: 600; font-size: .94rem; margin-bottom: 4px }
.vis-stat .desc { color: #8FA0B8; font-size: .84rem; line-height: 1.5 }
.vis-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px }
.vis-list li { display: flex; align-items: flex-start; gap: 16px; color: #A8B4C8; font-size: .94rem; line-height: 1.55 }
.vis-list li b { color: var(--white) }
.vis-list .m { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--red) }
.vis-list .m svg { width: 20px; height: 20px; display: block }

/* ── PARTNERS PAGE ─────────────────────────────────────────── */
.grid-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border) }
.grid-logos > div { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); min-height: 160px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.01em; background: var(--white); text-align: center; padding: 30px; line-height: 1.2; transition: background .2s }
.grid-logos > div:hover { background: var(--bg-light) }
.grid-logos > div:nth-child(3n) { border-right: 0 }
.grid-logos > div:nth-last-child(-n+3) { border-bottom: 0 }
@media (max-width: 780px) { .grid-logos { grid-template-columns: repeat(2, 1fr) } .grid-logos > div { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important } .grid-logos > div:nth-child(2n) { border-right: 0 !important } .grid-logos > div:nth-last-child(-n+2) { border-bottom: 0 !important } }
@media (max-width: 480px) { .grid-logos { grid-template-columns: 1fr } .grid-logos > div { border-right: 0 !important } .grid-logos > div:last-child { border-bottom: 0 !important } }
.pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
@media (max-width: 980px) { .pcards { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 620px) { .pcards { grid-template-columns: 1fr } }
.pcard { background: var(--white); border: 1px solid var(--border); padding: 0; display: flex; flex-direction: column; transition: transform .2s, border-color .2s }
.pcard:hover { transform: translateY(-3px); border-color: #94A3B8 }
.pcard__logo { background: var(--bg-light); border-bottom: 1px solid var(--border); min-height: 120px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 700; font-size: 1.2rem; text-align: center; padding: 24px; line-height: 1.2 }
.pcard__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1 }
.pcard__badge { display: inline-block; color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; border: 1px solid rgba(204,41,54,.3); padding: 4px 10px }
.pcard h3 { color: var(--navy); font-size: 1.2rem; font-weight: 600 }
.pcard p { color: var(--body); font-size: .96rem; line-height: 1.55; margin: 0; flex: 1 }
.pcard__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px }
.pcard__type { color: var(--sub); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase }
.pcard__year { color: var(--sub); font-size: .8rem; font-weight: 700; letter-spacing: .08em; font-family: var(--mono); padding-top: 14px; border-top: 1px solid var(--border) }

/* ── HOME CTA SECTION ───────────────────────────────────────── */
.home-cta { text-align: center }
.home-cta__inner { max-width: 720px; margin: 0 auto; display: grid; gap: 28px; justify-items: center }
.home-cta__inner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem) }
.home-cta__inner .lead { color: #CBD5E0; max-width: 58ch }
.home-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center }

/* ── MOBILE: body lock when nav open ───────────────────────── */
body.nav-open { overflow: hidden }

/* ── LEGAL PAGES (Privacy Policy, Cookie Policy) ───────────── */
.hero--light { background: var(--bg-light); padding: 48px 0 40px }
.hero--light::before { display: none }
.hero--light h1, .hero--light .hero__sub { color: var(--navy) }
.hero--light .label { color: var(--red) }
.hero--light .hero__rule { background: var(--red) }
.section--legal { padding: 48px 0 72px }
.legal-content { max-width: 780px; margin: 0 auto }
.legal-content h2 { color: var(--navy); font-size: 1.25rem; font-weight: 700; margin: 48px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border) }
.legal-content h2:first-child { margin-top: 0 }
.legal-content p, .legal-content li { color: var(--body); font-size: 1rem; line-height: 1.75; margin: 0 0 14px }
.legal-content ul { padding-left: 24px; margin: 0 0 14px }
.legal-content li { margin: 0 0 8px }
.legal-content a { color: var(--red); text-decoration: underline }
.legal-content a:hover { opacity: .8 }
.legal-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: .92rem }
.legal-table th, .legal-table td { padding: 12px 16px; text-align: left; border: 1px solid var(--border) }
.legal-table th { background: var(--navy); color: var(--white); font-weight: 600 }
.legal-table tr:nth-child(even) td { background: var(--bg-light) }
.legal-table code { font-family: var(--mono); font-size: .85rem; background: rgba(0,0,0,.06); padding: 2px 5px }
@media (max-width: 680px) { .legal-table { font-size: .82rem } .legal-table th, .legal-table td { padding: 8px 10px } }
