/* ──────────────────────────────────────────────────────────────────────────
   Jabra Evolve3 85 — concept styles (Aventon structure, Jabra content).
   Hand-written ("structure & feel" fidelity). Neutral palette with a warm
   beige accent echoing the headset. Fully responsive.
   Configurator / status-badge / feature-video / certs styles are appended at
   the bottom under "EVOLVE3 ADDITIONS".
   ────────────────────────────────────────────────────────────────────────── */
:root {
  /* UnifiedCommunications palette (DESIGN.md): Corporate Blue / Navy / Magenta */
  --blue: #006EDB;          /* Corporate Blue — primary buttons, active states */
  --navy: #002C5A;          /* Navy — text, dark UI */
  --magenta: #D100C6;       /* Magenta — accents, gradients */
  --ink: #002C5A;           /* primary text = Navy */
  --ink-soft: #3a5575;      /* muted navy for body copy */
  --muted: #6b7a8d;         /* blue-gray secondary text */
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #eef4fc;       /* light blue tint */
  --accent: #006EDB;        /* alias of blue for inherited rules */
  --accent-ink: #0057ad;    /* darker blue for text on light */
  --grad: linear-gradient(90deg, #006EDB 0%, #D100C6 100%);
  --warn: #c8761a;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(0,44,90,.06), 0 8px 28px rgba(0,44,90,.08);
  --wrap: 1180px;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* contain the full-bleed .scrollvid (100vw) without making <html> a scroller */
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ── header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand-row { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 30px; height: 30px; object-fit: contain; }
.brand { font-weight: 800; letter-spacing: -.01em; font-size: 19px; color: var(--navy); white-space: nowrap; }
.nav { display: flex; gap: 2px; margin-left: 10px; flex: 1; }
.nav-link {
  background: none; border: 0; color: var(--ink-soft); font-size: 14px; font-weight: 500;
  padding: 8px 11px; border-radius: 8px; position: relative;
}
.nav-link:hover { background: var(--bg-soft); color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link.active::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.quote-btn {
  background: var(--blue); color: #fff; border: 0; border-radius: 999px;
  font-weight: 600; font-size: 14px; padding: 9px 18px; white-space: nowrap;
}
.quote-btn:hover { background: #0061c2; }
.hamburger { display: none; background: none; border: 0; font-size: 22px; color: var(--ink); padding: 4px 8px; }
.cart-btn {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--line);
  background: var(--bg); border-radius: 999px; padding: 7px 14px; font-weight: 600; font-size: 14px;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-count {
  background: var(--ink); color: #fff; border-radius: 999px; min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; padding: 0 6px;
}
.cart-subtotal { color: var(--muted); font-weight: 600; }
.cart-subtotal:empty { display: none; }

/* ── product layout ─────────────────────────────────────── */
.product {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px;
  padding: 36px 0 16px;
}
/* grid children must allow shrinking below intrinsic content width
   (otherwise the thumbnail strip forces the column to overflow) */
.gallery, .panel { min-width: 0; }
/* gallery */
.gallery { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.gallery-main {
  position: relative; background: var(--bg-soft); border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.gallery-badge {
  position: absolute; top: 14px; left: 14px; background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
}
.gallery-badge:empty { display: none; }
.thumbs {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84px; gap: 10px;
  margin-top: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px;
  min-width: 0; /* allow the strip to scroll instead of widening the gallery column */
}
.thumb {
  scroll-snap-align: start; border: 2px solid transparent; border-radius: 10px;
  overflow: hidden; background: var(--bg-soft); aspect-ratio: 1; padding: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.thumb.active { border-color: var(--ink); }

/* panel */
.crumb { color: var(--muted); font-size: 13px; margin: 0 0 8px; }
.title { font-size: 34px; line-height: 1.1; font-weight: 800; margin: 0 0 8px; }
.subhead { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.rating-text { color: var(--muted); font-size: 13px; }
.tagline { color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; }

.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.price { font-size: 28px; font-weight: 800; }
.price-compare { color: var(--muted); text-decoration: line-through; font-size: 17px; }
.price-compare:empty { display: none; }
.price-save {
  color: var(--accent-ink); background: #e6f0fc; font-weight: 700; font-size: 13px;
  padding: 3px 9px; border-radius: 999px;
}
.price-save:empty { display: none; }
.finance-line { color: var(--ink-soft); font-size: 13.5px; margin: 4px 0 22px; }

/* selectors */
.selector { margin-bottom: 20px; }
.sel-label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 9px; }
.sel-help, #color-name { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); }
#color-name { color: var(--ink); }
.tabs { display: flex; gap: 10px; }
.tab {
  flex: 1; border: 1.5px solid var(--line); background: var(--bg); border-radius: var(--radius-sm);
  padding: 12px; font-weight: 600; font-size: 14px; color: var(--ink-soft); text-align: center;
}
.tab small { display: block; color: var(--muted); font-weight: 500; font-size: 12px; }
.tab.active { border-color: var(--ink); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  min-width: 52px; border: 1.5px solid var(--line); background: var(--bg); border-radius: var(--radius-sm);
  padding: 11px 14px; font-weight: 600; font-size: 14px; color: var(--ink);
}
.pill.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pill.oos { color: var(--muted); text-decoration: line-through; opacity: .55; }
.swatches { display: flex; gap: 12px; }
.swatch {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--line);
  padding: 3px; background-clip: content-box; position: relative;
}
.swatch.active { border-color: var(--ink); }
.swatch .dot { width: 100%; height: 100%; border-radius: 50%; display: block; }

.stock-line { font-size: 13px; font-weight: 600; margin-bottom: 18px; min-height: 18px; }
.stock-in { color: var(--accent-ink); }
.stock-low { color: var(--warn); }
.stock-out { color: #c0392b; }

/* buy row */
.buy-row { display: flex; gap: 12px; margin-bottom: 20px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-sm); }
.qty-btn { background: none; border: 0; font-size: 18px; width: 44px; height: 48px; color: var(--ink); }
.qty-val { min-width: 30px; text-align: center; font-weight: 700; }
.add-btn {
  flex: 1; background: var(--ink); color: #fff; border: 0; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; padding: 0 24px; height: 50px;
  transition: transform .08s ease, opacity .15s ease;
}
.add-btn:hover { opacity: .9; }
.add-btn:active { transform: translateY(1px); }
.add-btn:disabled { background: var(--muted); cursor: not-allowed; opacity: .6; }

.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 0; margin: 0 0 18px; }
.trust li { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.trust li::before { content: "✓"; color: var(--accent); font-weight: 800; }

.promo {
  display: flex; align-items: center; gap: 10px; background: var(--bg-soft);
  border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px;
}
.promo b { color: var(--accent-ink); }

/* calculators */
.calc { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.calc-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc-title { font-weight: 700; font-size: 15px; }
.calc-by { color: var(--muted); font-size: 12px; }
.terms { display: flex; gap: 8px; margin-bottom: 12px; }
.term {
  flex: 1; border: 1.5px solid var(--line); background: var(--bg); border-radius: 8px;
  padding: 9px 4px; font-weight: 600; font-size: 13px; color: var(--ink-soft);
}
.term.active { border-color: var(--ink); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.calc-out { font-size: 22px; font-weight: 800; margin: 0; }
.calc-out span { font-size: 13px; font-weight: 600; color: var(--muted); }
.calc-note { font-size: 12px; color: var(--muted); margin: 6px 0 0; }

/* ── content blocks ─────────────────────────────────────── */
.block { padding: 44px 0; border-top: 1px solid var(--line); }
.block-title { font-size: 24px; font-weight: 800; margin: 0 0 6px; }
.block-sub { color: var(--muted); margin: 0 0 22px; }

.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hl {
  background: var(--bg-soft); border-radius: var(--radius); padding: 20px;
}
.hl-icon { display: block; width: 40px; height: 40px; margin: 0 0 12px; object-fit: contain; }
.hl h3 { margin: 0 0 6px; font-size: 16px; }
.hl p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* build your ride */
.build-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.build-grid > * { min-width: 0; }
.accessories { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.acc {
  display: flex; gap: 14px; align-items: center; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 14px; background: var(--bg); text-align: left;
  transition: border-color .12s ease;
}
.acc:hover { border-color: var(--ink-soft); }
.acc.active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.acc-thumb {
  width: 56px; height: 56px; border-radius: 10px; background: var(--bg-soft);
  flex: none; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.acc-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.acc-body { flex: 1; }
.acc-name { font-weight: 700; font-size: 14px; }
.acc-desc { color: var(--muted); font-size: 12.5px; }
.acc-price { font-weight: 700; font-size: 14px; }
.acc-toggle {
  width: 26px; height: 26px; border-radius: 7px; border: 1.5px solid var(--line);
  background: var(--bg); color: #fff; font-size: 16px; line-height: 1; flex: none;
}
.acc.active .acc-toggle { background: var(--accent); border-color: var(--accent); }

.build-summary {
  position: sticky; top: calc(var(--header-h) + 20px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--bg-soft);
}
.build-summary h3 { margin: 0 0 14px; font-size: 16px; }
.bs-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 9px; color: var(--ink-soft); }
.bs-row.save { color: var(--accent-ink); font-weight: 600; }
.bs-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 800; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.build-summary .add-btn { width: 100%; margin-top: 16px; }

/* features — full alternating content rows */
.features { display: flex; flex-direction: column; gap: 56px; }
.feature-row {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-soft); box-shadow: var(--shadow);
}
.feature-media img,
.feature-media video {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: #000;
}
.feature-eyebrow {
  margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
}
.feature-headline {
  margin: 0 0 12px; font-size: 27px; line-height: 1.15; letter-spacing: -.01em; color: var(--navy);
}
.feature-lead { margin: 0 0 16px; font-size: 17px; font-weight: 600; color: var(--ink); }
.feature-body p { margin: 0 0 12px; font-size: 15px; color: var(--ink-soft); }
.feature-body p:last-child { margin-bottom: 0; }
.feature-points {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.feature-points li {
  position: relative; padding-left: 26px; font-size: 14px; font-weight: 500; color: var(--ink);
}
.feature-points li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 8px;
  border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

/* specs */
.specs { columns: 2; column-gap: 48px; }
.spec-group { break-inside: avoid; margin-bottom: 22px; }
.spec-group h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-row dt { color: var(--ink-soft); margin: 0; }
.spec-row dd { margin: 0; font-weight: 600; text-align: right; }

/* review card */
.review-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; background: var(--ink); color: #fff; border-radius: var(--radius); overflow: hidden; }
.review-video { position: relative; aspect-ratio: 16/9; }
.review-video img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink); border: 0; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.review-body { padding: 28px 28px 28px 0; }
.review-body .rq { font-size: 19px; font-weight: 600; line-height: 1.4; margin: 0 0 16px; }
.review-meta { color: #b9bcc4; font-size: 13px; }
.review-meta b { color: #fff; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rev { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.rev .stars { font-size: 14px; }
.rev h4 { margin: 8px 0 6px; font-size: 15px; }
.rev p { margin: 0 0 12px; color: var(--ink-soft); font-size: 14px; }
.rev .who { color: var(--muted); font-size: 13px; font-weight: 600; }

/* faq */
.faq { max-width: 800px; }
.qa { border-bottom: 1px solid var(--line); }
.qa-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 0; font-size: 16px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; }
.qa-q .chev { transition: transform .2s ease; color: var(--muted); }
.qa.open .qa-q .chev { transform: rotate(45deg); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--ink-soft); }
.qa-a p { margin: 0 0 18px; }
.qa.open .qa-a { max-height: 240px; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; margin-top: 24px; background: var(--bg-soft); }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.fbadge { font-size: 12px; font-weight: 700; border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 7px 14px; }
.footer-note { color: var(--muted); font-size: 12px; margin: 0; }

/* sticky mobile bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  align-items: center; gap: 14px; background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 12px 18px;
  box-shadow: 0 -4px 20px rgba(20,22,26,.08);
}
.sticky-info { flex: 1; display: flex; flex-direction: column; }
.sticky-name { font-weight: 700; font-size: 14px; }
.sticky-price { color: var(--muted); font-size: 13px; }
.sticky-bar .add-btn { flex: none; width: 160px; }

/* toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%);
  background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; z-index: 70; box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.2,.9,.3,1); white-space: nowrap;
}
.toast.show { transform: translate(-50%, 0); }

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .product { grid-template-columns: 1fr; gap: 28px; padding-top: 20px; }
  .gallery { position: static; }
  .build-grid { grid-template-columns: 1fr; }
  .build-summary { position: static; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .review-card { grid-template-columns: 1fr; }
  .review-body { padding: 0 24px 28px; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px; gap: 2px;
  }
  .nav.open .nav-link.active::after { display: none; }
  .hamburger { display: block; }
  .header-inner { gap: 12px; }
  .brand-row { flex: 1; min-width: 0; }
  .brand { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; font-size: 17px; }
  .quote-btn { display: none; }
  .cart-subtotal { display: none; }
  .title { font-size: 27px; }
  .highlights { grid-template-columns: 1fr; }
  .accessories { grid-template-columns: 1fr; }
  .features { gap: 40px; }
  .feature-row { grid-template-columns: 1fr; gap: 20px; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-headline { font-size: 23px; }
  .specs { columns: 1; }
  .sticky-bar { display: flex; }
  main.wrap { padding-bottom: 90px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   EVOLVE3 ADDITIONS — configurator, status badge, feature video, certs
   ══════════════════════════════════════════════════════════════════════════ */

/* status badge (e.g. "Coming Soon") */
.status-badge { display: none; }
.status-badge.show {
  display: inline-block; margin: 0 0 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 6px; background: var(--bg-soft); color: var(--ink-soft);
}
.status-badge.status-coming-soon { background: #e6f0fc; color: var(--blue); }
.status-badge.status-sold-out { background: #fbe3f8; color: var(--magenta); }

/* configurator: segmented option cards */
#config .selector { margin-bottom: 18px; }
.tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.tab {
  flex: 1; min-width: 120px; border: 1.5px solid var(--line); background: var(--bg);
  border-radius: var(--radius-sm); padding: 12px; font-weight: 600; font-size: 14px;
  color: var(--ink-soft); text-align: center; cursor: pointer; transition: border-color .12s ease, box-shadow .12s ease;
}
.tab small { display: block; margin-top: 3px; color: var(--accent-ink); font-weight: 600; font-size: 12px; }
.tab:hover { border-color: var(--ink-soft); }
.tab.active { border-color: var(--ink); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

/* color swatch captions */
.swatches { align-items: flex-start; }
.swatch-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.swatch-cap { font-size: 12px; color: var(--muted); }
.swatch-wrap.active .swatch-cap { color: var(--ink); font-weight: 600; }

/* stock/config line: coming-soon variant */
.stock-soon { color: var(--blue); }

/* buy button: coming-soon style */
.add-btn.soon { background: var(--navy); }
.add-btn.soon:hover { opacity: .92; }

/* promo line uses the existing .promo (dashed) block — no change needed */

/* (feature media autoplay styling now lives with the feature-row rules above) */

/* full-bleed scroll-scrubbed video: pin a canvas, advance frames on scroll.
   The section escapes the centered .wrap via the left/-50vw full-bleed trick;
   its height (the scroll track) is set in JS from the `track` config. */
.scrollvid {
  position: relative; left: 50%; margin-left: -50vw; width: 100vw;
  margin-top: 52px; margin-bottom: 52px; background: #000;
}
.scrollvid-pin { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#scrollvid-canvas { display: block; width: 100%; height: 100%; }

/* review card: real <video> when played */
.review-video video { width: 100%; height: 100%; object-fit: cover; background: #000; }

/* certifications strip */
.certs { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 40px; }
.cert { height: 56px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .15s ease, opacity .15s ease; }
.cert:hover { filter: none; opacity: 1; }

@media (max-width: 720px) {
  .tab { min-width: 0; }
  .cert { height: 44px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   UC BRAND COMPONENTS — value-prop row, gradient CTA banner (DESIGN.md 4.3, 4.5)
   ══════════════════════════════════════════════════════════════════════════ */

/* value-prop / trust row */
.valueprops {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.vp { display: flex; flex-direction: column; gap: 10px; }
.vp-ico {
  width: 46px; height: 46px; border-radius: 50%; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.vp-ico svg { width: 24px; height: 24px; }
.vp h3 { margin: 0; font-size: 15px; color: var(--navy); }
.vp p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

/* gradient CTA banner */
.cta-banner {
  display: flex; align-items: center; gap: 24px; margin: 44px 0 8px;
  background: var(--grad); border-radius: 20px; padding: 32px 36px; color: #fff;
}
.cta-ico {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.cta-ico svg { width: 34px; height: 34px; }
.cta-text { flex: 1; }
.cta-text h2 { margin: 0 0 6px; font-size: 22px; }
.cta-text p { margin: 0; font-size: 15px; opacity: .95; max-width: 620px; }
.cta-btn {
  background: #fff; color: var(--blue); border: 0; border-radius: 999px;
  font-weight: 700; font-size: 15px; padding: 13px 24px; white-space: nowrap; flex: none;
}
.cta-btn:hover { background: #f0f5ff; }

@media (max-width: 900px) {
  .valueprops { grid-template-columns: 1fr 1fr; gap: 22px 24px; }
}
@media (max-width: 720px) {
  .valueprops { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding: 24px 0; }
  .cta-banner { flex-direction: column; text-align: center; align-items: center; padding: 28px 22px; }
  .cta-text p { margin: 0 auto; }
}
