/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  /* DSG logo exact colors */
  --navy:     #1A2845;
  --navy2:    #243358;
  --orange:   #C05A28;
  --orange2:  #D46B38;
  --blue:     #6090C8;
  --blue-lt:  #EBF2FA;

  /* Vizient-inspired neutrals */
  --white:    #FFFFFF;
  --off:      #F7F8FA;
  --stone:    #F0F2F6;
  --line:     #E2E7EF;
  --mid:      #5A6A82;
  --soft:     #8898B0;
  --xsoft:    #B0BED0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--orange); }

/* ═══════════════════════════════════════════
   NAV  — Vizient style: white, clean, thin border
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(26,40,69,.09); }

/* CSS logo mark */
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.logo-box {
  display: flex; align-items: center;
  background: var(--navy); border-radius: 3px;
  padding: 6px 10px 6px 13px; gap: 9px;
}
.logo-dsg { font-size: 17px; font-weight: 600; color: #fff; letter-spacing: .04em; }
.logo-rule { width: 2px; height: 22px; background: var(--orange); border-radius: 1px; }
.logo-sub { font-size: 11px; font-weight: 400; color: var(--soft); line-height: 1.45; letter-spacing: .01em; }
.logo-sub b { display: block; font-weight: 600; color: var(--navy); font-size: 12px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--mid); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-btn {
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  background: var(--orange); color: #fff !important;
  padding: 9px 22px; border-radius: 3px; text-decoration: none;
  transition: background .2s;
}
.nav-btn:hover { background: var(--orange2) !important; }

/* cert logos in nav */
.nav-certs {
  display: flex; align-items: center; gap: 16px;
  padding-left: 22px; margin-left: 4px;
  border-left: 1px solid var(--line);
}
.nav-cert-img {
  object-fit: contain;
  transition: transform .2s, opacity .2s;
}
.nav-cert-img.logo-sdvosb { width: 58px; height: 58px; }
.nav-cert-img.logo-vosb    { width: 58px; height: 58px; }
.nav-cert-img.logo-sam     { height: 48px; width: auto;  }
.nav-cert-img.logo-vethub  { height: 52px; width: auto;  }
.nav-cert-img:hover { transform: scale(1.06); opacity: .85; }

/* download button inside caps section */
.caps-dl-wrap {
  margin-top: 28px; display: flex; justify-content: flex-start;
}
.caps-dl-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  color: var(--orange); text-decoration: none;
  padding: 13px 28px; border-radius: 3px;
  border: 1.5px solid var(--orange);
  transition: background .2s, color .2s;
}
.caps-dl-btn:hover { background: var(--orange); color: #fff; }
.caps-dl-btn svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   HERO  — Vizient: full-bleed, large type,
           orange accent bar, alternating panels
═══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 100vh;
  padding-top: 74px;
}

.hero-main {
  background: var(--navy);
  padding: 80px 64px 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
/* subtle dot pattern — Vizient texture motif */
.hero-main::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(96,144,200,.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* orange accent bar top — direct Vizient signature move */
.hero-main::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}

.hero-main-inner { position: relative; z-index: 2; }

.hero-overline {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-overline-bar { width: 28px; height: 2px; background: var(--orange); }
.hero-overline-txt {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.hero-main h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300; line-height: 1.15; letter-spacing: -.5px;
  color: #fff; margin-bottom: 24px;
}
.hero-main h1 strong { font-weight: 600; }
.hero-main h1 span { color: var(--orange); }

.hero-main p {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.6); max-width: 520px; margin-bottom: 40px;
}
.hero-main p em { color: #fff; font-style: normal; font-weight: 400; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-orange {
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  background: var(--orange); color: #fff;
  padding: 13px 28px; border-radius: 3px;
  text-decoration: none; transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-orange:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-ghost-white {
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75);
  padding: 13px 28px; border-radius: 3px;
  text-decoration: none; transition: all .2s; display: inline-block;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* HERO SIDEBAR  — Vizient "key numbers" right panel */
.hero-side {
  background: var(--off);
  border-left: 1px solid var(--line);
  padding: 80px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.side-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.side-block:first-child { border-top: 1px solid var(--line); }

.side-num {
  font-size: 46px; font-weight: 300; color: var(--navy);
  line-height: 1; letter-spacing: -1px; margin-bottom: 6px;
}
.side-num sup { font-size: 22px; color: var(--orange); vertical-align: super; font-weight: 400; }
.side-label { font-size: 12px; font-weight: 400; color: var(--soft); line-height: 1.5; }

/* cert strip at bottom of hero sidebar */
.side-certs {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cert-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.ct-orange { background: var(--orange); color: #fff; }
.ct-navy { background: var(--navy); color: rgba(255,255,255,.7); }
.ct-blue { background: var(--blue-lt); color: var(--navy2); border: 1px solid #c5d9ef; }

/* ═══════════════════════════════════════════
   CODE STRIP  — Vizient horizontal info bar
═══════════════════════════════════════════ */
.code-strip {
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  padding: 14px 52px;
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.cs-label { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--xsoft); white-space: nowrap; }
.cs-items { display: flex; gap: 6px; flex-wrap: wrap; }
.cs-item {
  font-size: 11.5px; font-weight: 500; color: var(--mid);
  padding: 4px 12px; border-radius: 2px;
  border: 1px solid var(--line); background: var(--white);
}
.cs-item.hi { border-color: var(--orange); color: var(--orange); background: #fdf4f0; }

/* ═══════════════════════════════════════════
   SHARED
═══════════════════════════════════════════ */
.wrap { max-width: 1160px; margin: 0 auto; }
.sec { padding: 88px 52px; }

/* Vizient-style section header */
.sec-hd { margin-bottom: 52px; }
.sec-hd .eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
  display: flex; align-items: center; gap: 9px;
}
.sec-hd .eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--orange); flex-shrink: 0; }
.sec-hd h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 300; line-height: 1.2; letter-spacing: -.3px; color: var(--navy); }
.sec-hd h2 strong { font-weight: 600; }
.sec-hd p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 600px; margin-top: 14px; }

/* ═══════════════════════════════════════════
   OVERVIEW  — light bg, two-col
═══════════════════════════════════════════ */
.overview { background: var(--white); }
.ov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ov-body p { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 16px; }
.ov-body p strong { color: var(--navy); font-weight: 500; }

/* three feature rows — Vizient "list with icon-line" pattern */
.feature-list { margin-top: 4px; }
.feature-item {
  display: grid; grid-template-columns: 3px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  align-items: start;
  transition: opacity .2s;
}
.feature-item:first-child { border-top: 1px solid var(--line); }
.feature-item:hover { opacity: .75; }
.feature-bar { background: var(--orange); border-radius: 2px; height: 100%; min-height: 52px; }
.feature-title { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .01em; }
.feature-body { font-size: 13px; font-weight: 300; color: var(--soft); line-height: 1.75; }

/* ═══════════════════════════════════════════
   DIFFERENTIATORS  — dark navy band, Vizient style
═══════════════════════════════════════════ */
.diffs { background: var(--navy); position: relative; overflow: hidden; }
.diffs::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--orange);
}
.diffs .sec-hd h2 { color: #fff; }
.diffs .sec-hd p { color: rgba(255,255,255,.5); }
.diffs .sec-hd .eyebrow { color: var(--orange); }
.diffs .sec-hd .eyebrow::before { background: var(--orange); }

.diff-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.diff-card {
  background: rgba(255,255,255,.04);
  padding: 40px 32px; border-top: 2px solid transparent;
  transition: background .25s, border-color .25s;
}
.diff-card:hover { background: rgba(255,255,255,.08); border-top-color: var(--orange); }
.diff-n { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 18px; }
.diff-t { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.diff-b { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.8; }

/* ═══════════════════════════════════════════
   CAPABILITIES  — Vizient clean table-grid
═══════════════════════════════════════════ */
.caps { background: var(--off); }
.caps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.caps-panel {
  background: var(--white);
  border: 1px solid var(--line); border-radius: 2px;
  overflow: hidden;
}
.caps-panel-head {
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}
.caps-panel-head span { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .02em; }
.caps-panel-head i { width: 2px; height: 18px; background: var(--orange); border-radius: 1px; display: block; }
.caps-list { list-style: none; }
.caps-list li {
  padding: 12px 28px;
  border-bottom: 1px solid var(--off);
  font-size: 13.5px; font-weight: 300; color: var(--mid);
  display: flex; align-items: baseline; gap: 12px;
  transition: background .15s, color .15s;
}
.caps-list li:last-child { border-bottom: none; }
.caps-list li:hover { background: var(--blue-lt); color: var(--navy); }
.caps-list li::before { content: '—'; color: var(--orange); font-size: 11px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   ACCORDION  — IT capabilities
═══════════════════════════════════════════ */
.accord { }
.accord-item { border-bottom: 1px solid var(--off); }
.accord-item:last-child { border-bottom: none; }
.accord-trigger {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 28px; cursor: pointer;
  font-size: 13.5px; font-weight: 300; color: var(--mid);
  transition: background .15s, color .15s;
  user-select: none;
}
.accord-trigger:hover { background: var(--blue-lt); color: var(--navy); }
.accord-item.open .accord-trigger { background: var(--blue-lt); color: var(--navy); font-weight: 500; }
.accord-dash { color: var(--orange); font-size: 11px; flex-shrink: 0; }
.accord-label { flex: 1; }
.accord-icon {
  font-size: 18px; font-weight: 300; color: var(--xsoft);
  transition: transform .25s, color .25s; flex-shrink: 0;
  line-height: 1;
}
.accord-item.open .accord-icon { transform: rotate(45deg); color: var(--orange); }
.accord-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px 0 56px;
}
.accord-item.open .accord-body {
  max-height: 600px;
  padding: 4px 28px 18px 56px;
}
.accord-body ul { list-style: none; }
.accord-body ul li {
  font-size: 12.5px; font-weight: 300; color: var(--soft); line-height: 1.75;
  padding: 5px 0; border-bottom: 1px solid var(--off);
  display: flex; align-items: baseline; gap: 10px;
}
.accord-body ul li:last-child { border-bottom: none; }
.accord-body ul li::before { content: '·'; color: var(--orange); font-size: 14px; flex-shrink: 0; font-weight: 600; }

/* ═══════════════════════════════════════════
   WHO WE SERVE  — Vizient: 4-col, white bg
═══════════════════════════════════════════ */
.serve { background: var(--white); }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.serve-card {
  padding: 36px 28px; border-top: 2px solid var(--line);
  background: var(--white);
  transition: border-color .25s, background .25s;
}
.serve-card:hover { border-top-color: var(--orange); background: var(--off); }
.serve-n { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--xsoft); margin-bottom: 16px; }
.serve-t { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.serve-b { font-size: 13px; font-weight: 300; color: var(--soft); line-height: 1.8; }

/* ═══════════════════════════════════════════
   TEAMING  — off-white section, horizontal rows
   (Vizient "data table" style)
═══════════════════════════════════════════ */
.teaming { background: var(--off); }
.teaming-intro { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 680px; margin-bottom: 44px; }
.t-table { width: 100%; border-collapse: collapse; }
.t-table tr { border-bottom: 1px solid var(--line); }
.t-table tr:first-child { border-top: 1px solid var(--line); }
.t-table tr:hover td { background: var(--white); }
.t-table td { padding: 18px 0; vertical-align: middle; }
.t-table td:first-child {
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); width: 200px; padding-right: 32px;
}
.t-table td:last-child { padding-left: 32px; border-left: 1px solid var(--line); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12.5px; font-weight: 400; color: var(--mid);
  padding: 5px 14px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--white); transition: all .15s;
}
.tag:hover { border-color: var(--blue); color: var(--navy2); background: var(--blue-lt); }

/* ═══════════════════════════════════════════
   SNAPSHOT  — alternating columns, white + stone
═══════════════════════════════════════════ */
.snapshot { background: var(--white); }
.snap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.snap-table { width: 100%; border-collapse: collapse; }
.snap-table tr { border-bottom: 1px solid var(--line); }
.snap-table td { padding: 13px 0; font-size: 13.5px; vertical-align: middle; }
.snap-table td:first-child { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--xsoft); width: 140px; }
.snap-table td:last-child { color: var(--mid); font-weight: 300; }
.snap-table td:last-child strong { color: var(--navy); font-weight: 600; }
.snap-table a { color: var(--orange); text-decoration: none; }
.snap-table a:hover { text-decoration: underline; }

.codes-col { display: flex; flex-direction: column; gap: 22px; }
.code-grp { }
.code-grp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #fdf4f0;
}
.code-grp-title {
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange);
}
.code-count {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--xsoft);
  white-space: nowrap;
}
.code-list { display: flex; flex-direction: column; }
.code-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 12.5px; align-items: baseline; }
.code-list .code-row:last-child { border-bottom: none; }
.code-k { font-weight: 600; color: var(--navy); min-width: 48px; }
.code-v { font-weight: 300; color: var(--soft); line-height: 1.5; }
.code-p {
  font-size: 9.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(192,90,40,.3);
  background: #fdf4f0; padding: 2px 8px; border-radius: 2px;
  margin-left: auto; white-space: nowrap; align-self: center;
}
.code-chip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.code-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 30px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: default;
}
.code-chip:hover {
  border-color: rgba(192,90,40,.35);
  color: var(--orange);
  background: #fdf4f0;
}
.code-chip::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(6px);
  min-width: 150px;
  max-width: 240px;
  padding: 7px 10px;
  border-radius: 3px;
  border: 1px solid rgba(192,90,40,.3);
  background: #fff;
  color: var(--mid);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 22px rgba(26,40,69,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  z-index: 20;
}
.code-chip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
   CTA BAND  — Vizient full-bleed orange band
═══════════════════════════════════════════ */
.cta-band {
  background: var(--orange);
  padding: 72px 52px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300; color: #fff; letter-spacing: -.3px; line-height: 1.2; margin-bottom: 10px;
}
.cta-band h2 strong { font-weight: 600; }
.cta-band p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 560px; }
.cta-band-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; position: relative; z-index: 1; }
.btn-white-solid {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  background: #fff; color: var(--orange);
  padding: 14px 32px; border-radius: 3px;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.cta-band-email { font-size: 12px; color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   FOOTER  — Vizient: white, ruled, clean
═══════════════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 64px 52px 32px;
}
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }

.foot-logo-box { display: inline-flex; align-items: center; background: var(--navy); border-radius: 3px; padding: 6px 10px 6px 13px; gap: 9px; margin-bottom: 14px; }
.foot-logo-dsg { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: .04em; }
.foot-logo-rule { width: 2px; height: 20px; background: var(--orange); border-radius: 1px; }
.foot-logo-img { height: 62px; width: auto; display: block; margin-bottom: 14px; }

.foot-tagline { font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--xsoft); margin-bottom: 14px; }
.foot-desc { font-size: 13px; font-weight: 300; color: var(--soft); line-height: 1.9; max-width: 300px; margin-bottom: 20px; }
.foot-contact { font-size: 13px; font-weight: 300; color: var(--soft); line-height: 2.1; }
.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.foot-contact-ico {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}
.foot-contact-ico svg { width: 100%; height: 100%; display: block; }
.foot-contact a { color: var(--orange); text-decoration: none; }
.foot-contact a:hover { color: var(--navy); }

.foot-col-h { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--xsoft); margin-bottom: 18px; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 10px; }
.foot-links a { font-size: 13.5px; font-weight: 300; color: var(--mid); text-decoration: none; transition: color .15s; }
.foot-links a:hover { color: var(--orange); }

.foot-reg { list-style: none; }
.foot-reg li { display: flex; justify-content: space-between; font-size: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.foot-reg li:last-child { border-bottom: none; }
.foot-reg li span:first-child { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--xsoft); }
.foot-reg li span:last-child { font-weight: 300; color: var(--mid); }

.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: 11.5px; font-weight: 300; color: var(--xsoft); }
.foot-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.foot-pill { font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; border: 1px solid var(--line); color: var(--xsoft); }
.foot-pill.o { border-color: rgba(192,90,40,.35); color: var(--orange); background: #fdf4f0; }
.foot-pill.b { border-color: #c5d9ef; color: var(--blue); background: var(--blue-lt); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════ */
.r { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.r.in { opacity: 1; transform: none; }
.r[data-d="1"] { transition-delay: .08s; }
.r[data-d="2"] { transition-delay: .16s; }
.r[data-d="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .r, .r.in {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  html { scroll-behavior: auto; }
  nav { padding: 0 20px; top: 0; }
  .nav-links { display: none; }
  .nav-certs { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-side { padding: 40px 20px; flex-direction: row; flex-wrap: wrap; gap: 0; }
  .side-block { flex: 1 1 120px; border-right: 1px solid var(--line); border-bottom: none; }
  .side-block:last-of-type { border-right: none; }
  .hero-main { padding: 80px 20px 60px; }
  .sec { padding: 64px 20px; }
  .ov-grid, .snap-grid { grid-template-columns: 1fr; }
  .diff-cards { grid-template-columns: 1fr; gap: 1px; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .t-table td:first-child { width: 120px; padding-right: 16px; }
  .cta-band { grid-template-columns: 1fr; padding: 52px 20px; }
  .cta-band-right { align-items: flex-start; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 52px 20px 28px; }
  .code-strip { padding: 12px 20px; }
  .code-chip-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .r, .r.in {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
  .r[data-d] { transition-delay: 0s !important; }
}
