@charset "UTF-8";
:root {
  --navy:        #1B2A6B;
  --navy-dark:   #111D4A;
  --navy-deeper: #0B1330;
  --road-grey:   #8A9099;
  --teal:        #0AD191;
  --teal-dim:    #08A573;
  --teal-faint:  rgba(10, 209, 145, 0.10);
  --white:       #FFFFFF;
  --ink:         #1B2A6B;
  --body:        #3D4556;
  --muted:       #6B7280;
  --border:      #E2E8F0;
  --mist:        #F4F6FA;
  --danger:      #EF4444;
  --warn:        #F59E0B;
  --success:     #10B981;
  --sap:         #1872B8;
  --navy-card:   #18245C;
  --font-display:'Plus Jakarta Sans', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max:         1160px;
  --r:           10px;
}

/* ── Flaticon uicons alignment ── */
.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--body); background: var(--white); -webkit-font-smoothing: antialiased; padding-top: var(--header-h, 104px); }

/* ── FIXED HEADER ── */
body > header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transition: top 0.3s ease;
  box-shadow: 0 1px 0 var(--navy-dark);
}
/* nav--scrolled: nav-top slides above viewport, main nav stays pinned at top.
   Uses `top` rather than `transform` so it doesn't create a new containing
   block for the fixed-position .nav__mobile/.nav__overlay children. */
body > header.nav--scrolled {
  top: -36px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container2 { max-width: var(--max); margin: 0 auto; padding: 0 28px 90px 0px; }

.nav-top { background: var(--navy-deeper); border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-top__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 7px 28px;
}
.nav-top__left { display: flex; align-items: center; gap: 20px; }
.nav-top__item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgb(255 255 255 / 80%); font-weight: 500; }
.nav-top__item svg { flex-shrink: 0; color: var(--teal); }
.nav-top__item a { color: rgb(255 255 255 / 80%); transition: color .18s; }
.nav-top__item a:hover { color: var(--white); }
.nav-top__right { display: flex; align-items: center; gap: 14px; }
.nav-top__cta {
  font-size: 12px; font-weight: 700; color: var(--teal);
  border: 1px solid rgba(10,209,145,0.3); padding: 4px 12px;
  border-radius: 5px; transition: all .18s;
}
.nav-top__cta:hover { background: var(--teal); color: var(--navy-deeper); }

.nav {
  background: var(--navy-dark);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; max-width: var(--max); margin: 0 auto; padding: 0 28px;
}
.nav__logo img { height: 48px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links > li > a {
  font-size: 16px; font-weight: 500;
  color: rgb(255 255 255 / 80%);
  transition: color .2s ease;
  white-space: nowrap;
}
.nav__links > li > a:hover { color: var(--teal); }
.nav__links > li > a.nav__active { color: var(--teal); }
.nav__right { display: flex; align-items: center; }
.nav__cta {
  background: var(--teal); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 9px 18px; border-radius: 7px; transition: background .18s; white-space: nowrap;
}
.nav__cta:hover { background: var(--teal-dim); }
.hc-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: rgb(255 255 255 / 80%); border: 1.5px solid rgba(255,255,255,0.15);
  padding: 7px 14px; border-radius: 7px; transition: color .18s, border-color .18s;
  white-space: nowrap;
}
.hc-back-btn:hover { color: var(--white); border-color: rgb(255 255 255 / 80%); }

.nav__dd-wrap { position: relative; }
.nav__dd-trigger:hover,
.nav__dd-trigger.platform-active { color: var(--white); }
.nav__dd-caret { transition: transform .2s; flex-shrink: 0; }
.nav__dd-wrap:hover .nav__dd-caret { transform: rotate(180deg); }
.nav__dd-panel--sm { width: 180px; }
.nav__dd-item:hover { background: rgba(255,255,255,0.07); }
.nav__dd-item--dim { opacity: 0.6; }
.nav__dd-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--teal-faint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal); font-size: 13px;
  transition: background .25s cubic-bezier(.16,1,.3,1);
}
.nav__dd-label { font-size: 15px; font-weight: 400; color: rgb(255 255 255 / 80%); line-height: 1.3; }
.nav__dd-item:hover .nav__dd-label { color: var(--white); }
.nav__soon {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  background: rgba(10,209,145,0.15); color: var(--teal);
  padding: 1px 6px; border-radius: 3px; margin-left: 4px; letter-spacing: 0.06em;
}

.nav__dropdown-wrap { position: relative; }
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  font-size: 14px; font-weight: 500;
  color: rgb(255 255 255 / 80%);
  padding: 9px 12px;
  transition: color .2s ease;
}
.nav__dropdown-wrap:hover .nav__dropdown-trigger {
  color: var(--teal);
}
.nav__dropdown-trigger .fi {
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}
.nav__dropdown-wrap:hover .nav__dropdown-trigger .fi { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: 100%; left: 0;
  width: 230px; list-style: none;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 8px;
  z-index: 300;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s cubic-bezier(.16,1,.3,1), visibility .28s;
  box-shadow: 0 18px 36px -12px rgba(9,14,34,0.45), 0 6px 16px rgba(9,14,34,0.2);
}
.nav__dropdown-wrap:hover .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
}
.nav__dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px;
  font-size: 15px; font-weight: 400; color: rgb(255 255 255 / 80%);
  transition: background .2s cubic-bezier(.16,1,.3,1), color .2s;
}
.nav__dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav__coming { opacity: 0.65; }

/* Mega variant: 3x3 icon-card grid, used by the Platform dropdown */
.nav__dropdown--mega {
  width: 640px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px 8px;
}
.nav__dropdown--mega li a {
  padding: 10px; border-radius: 10px;
  font-size: 15px; font-weight: 400; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.88);
}
.nav__dropdown--mega .nav__dd-icon {
  width: 34px; height: 34px; border-radius: 8px; font-size: 15px;
}

.nav__hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: rgb(255 255 255 / 80%); padding: 4px;
}
.nav__overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 490; opacity: 0; visibility: hidden; transition: all .25s;
}
.nav__overlay.open { opacity: 1; visibility: visible; }
.nav__mobile {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: var(--navy-dark); z-index: 500;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile-close { background: none; border: none; cursor: pointer; color: rgb(255 255 255 / 80%); }
.nav__mobile-links { flex: 1; padding: 10px 8px; }
.nav__mobile-links > li > a,
.nav__mobile-group-btn,
.nav__mobile-group-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; font-size: 16px; font-weight: 600;
  color: rgb(255 255 255 / 80%); border-radius: 8px;
  transition: background .15s, color .15s;
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-display);
}
.nav__mobile-links > li > a:hover,
.nav__mobile-group-btn:hover,
.nav__mobile-group-link:hover { background: rgba(255,255,255,0.06); color: var(--white); }

.nav__mobile-group-head { display: flex; align-items: stretch; }
.nav__mobile-group-head .nav__mobile-group-link { flex: 1; }
.nav__mobile-group-head .nav__mobile-group-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; background: none; border: none; cursor: pointer;
  color: rgb(255 255 255 / 80%); border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav__mobile-group-head .nav__mobile-group-toggle:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav__mobile-sub { padding: 2px 0 6px 14px; display: none; }
.nav__mobile-sub.open { display: block; }
.nav__mobile-sub li a {
  display: block; padding: 8px 14px; font-size: 13px;
  color: rgb(255 255 255 / 80%); border-radius: 6px; transition: all .15s;
}
.nav__mobile-sub li a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav__mobile-footer { padding: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.nav__mobile-footer .nav__cta { display: block; text-align: center; padding: 13px; }

.platform-nav { background: var(--white); border-bottom: 2px solid var(--border); overflow-x: auto; }
.platform-nav__inner { display: flex; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.platform-nav__link:hover { color: var(--navy); }
.platform-nav__link.active { color: var(--navy); border-color: var(--teal); }

.btn-primary {
  background: var(--teal); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 12px 24px; border-radius: 9px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .18s;
}
.btn-primary:hover { background: var(--teal-dim); }
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.22); color: rgb(255 255 255 / 80%);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  padding: 12px 22px; border-radius: 9px; transition: all .18s; display: inline-block;
}
.btn-outline-light:hover { border-color: var(--white); color: var(--white); }
.btn-outline-dark {
  border: 1.5px solid rgba(255,255,255,0.2); color: rgb(255 255 255 / 80%);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 22px; border-radius: 9px; transition: all .18s; background: transparent;
}
.btn-outline-dark:hover { border-color: var(--white); color: var(--white); }
.btn-ghost {
  color: rgb(255 255 255 / 80%); font-weight: 500; font-size: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}
.btn-ghost:hover { color: var(--white); border-color: rgb(255 255 255 / 82%); }

.hero {
  background: var(--navy-dark); padding: 100px 0 84px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -180px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10,209,145,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,209,145,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero__road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--road-grey) 0%, #C8CDD4 50%, var(--road-grey) 100%);
  opacity: 0.25;
}
.hero__road::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 24px, rgba(255,255,255,0.5) 24px, rgba(255,255,255,0.5) 44px);
  transform: translateY(-50%);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 72px; align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  position: relative; z-index: 1;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,209,145,0.12); border: 1px solid rgba(10,209,145,0.28);
  color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 22px;
}
.hero__tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px;
  color: var(--white); margin-bottom: 20px;
}
.hero__h1 .accent { color: var(--teal); }
.hero__h1 .road-word { position: relative; display: inline-block; }
.hero__h1 .road-word::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--road-grey));
  border-radius: 2px;
}
.hero__sub {
  font-size: 17px; line-height: 1.72; color: var(--white);
  max-width: 500px; margin-bottom: 14px;
}
.hero__sub strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 34px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgb(255 255 255 / 80%); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; font-family: var(--font-display);
}
.pill__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.09);
}
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-item__check {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item__check svg { width: 9px; height: 9px; stroke: var(--teal); }
.trust-item span { font-size: 12px; color: rgb(255 255 255 / 82%); font-weight: 500; }

.hero__visual {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; overflow: hidden;
}
.hv__topbar {
  background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 11px 16px; display: flex; align-items: center; gap: 7px;
}
.hv__dot { width: 8px; height: 8px; border-radius: 50%; }
.hv__title { font-size: 11px; color: rgb(255 255 255 / 80%); margin-left: 6px; font-weight: 500; letter-spacing: 0.03em; }
.hv__body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.hv__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hv__kpi {
  background: rgba(255,255,255,0.045); border-radius: 8px; padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hv__kpi-val { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.hv__kpi-val--teal { color: var(--teal); }
.hv__kpi-label { font-size: 10px; color: rgb(255 255 255 / 80%); margin-top: 3px; }
.hv__crm {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 12px;
}
.hv__crm-head { font-size: 10px; font-weight: 700; color: rgb(255 255 255 / 80%); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 9px; }
.hv__crm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hv__crm-row:last-child { border-bottom: none; }
.hv__crm-name { font-size: 11px; color: rgb(255 255 255 / 80%); }
.hv__stage { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.s-hot { background: rgba(10,209,145,0.15); color: var(--teal); }
.s-warm { background: rgba(245,158,11,0.12); color: var(--warn); }
.s-new { background: rgba(255,255,255,0.07); color: rgb(255 255 255 / 80%); }
.hv__chart-head { font-size: 10px; font-weight: 700; color: rgb(255 255 255 / 80%); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.hv__bars { display: flex; align-items: flex-end; gap: 5px; height: 40px; }
.hv__bar { flex: 1; border-radius: 3px 3px 0 0; }

.hv__bar--h1 { height: 52%; background: rgba(10,209,145,0.20); }
.hv__bar--h2 { height: 65%; background: rgba(10,209,145,0.26); }
.hv__bar--h3 { height: 60%; background: rgba(10,209,145,0.22); }
.hv__bar--h4 { height: 76%; background: rgba(10,209,145,0.30); }
.hv__bar--h5 { height: 86%; background: rgba(10,209,145,0.38); }
.hv__bar--h6 { height: 100%; background: rgba(10,209,145,0.65); }

.trust-bar { background: var(--navy); border-bottom: 3px solid var(--navy-dark); overflow: hidden; }
.trust-bar__inner { width: 100%; overflow: hidden; }
.trust-bar__item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap; flex-shrink: 0;
}
.trust-bar__item-icon { font-size: 15px; color: #ffffff; }
.trust-bar__item-text { font-size: 13px; color: rgb(255 255 255 / 80%); font-weight: 600; }
.trust-bar__item-text strong { color: rgba(255,255,255,0.88); }
.sap-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(24,114,184,0.15); border: 1px solid rgba(24,114,184,0.3);
  padding: 5px 12px; border-radius: 6px;
}
.sap-pill__text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.88); }
.sap-pill__sub { font-size: 16px; color: rgb(255 255 255 / 80%); }

.section { padding: 80px 0; }
.section--alt { background: var(--mist); }
.section--white { background: var(--white); }
.section--dark { background: var(--navy-dark); }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.eyebrow--light { color: rgba(10,209,145,0.85); }
.h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.6px;
  color: var(--ink); margin-bottom: 12px;
}
.h2--light { color: var(--white); }
.lead { font-size: 16px; line-height: 1.75; 
  color: var(--muted); 
  margin-bottom: 17px;
  max-width: 780px; }
.lead--light { color: rgb(255 255 255 / 80%); }
.section__head { margin-bottom: 48px; }
.section__head--c { text-align: center; }
.section__head--c .lead { margin: 0 auto; }

/* ── SHARED HERO BASE (all dark page heroes) ── */
.nl-hero, .wb-art-hero, .pr-hero {
  background: var(--navy-dark); position: relative; overflow: hidden;
}
.pr-hero__road, .wb-art-hero__road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: rgba(138,144,153,0.18);
}
.pr-hero__road::before, .wb-art-hero__road::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 18px, rgba(255,255,255,0.22) 18px, rgba(255,255,255,0.22) 34px);
  transform: translateY(-50%);
}
.nl-hero__h1, .pr-hero__h1 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.9px; color: var(--white);
}
.nl-hero__h1 em, .pr-hero__h1 em, .hub-hero__h1 em {
  color: var(--teal); font-style: normal;
}

/* stats strip (used on health-check.html) */
.hc__stats {
  display: flex; align-items: center; gap: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hc__stat { flex: 1; display: flex; flex-direction: column; gap: 4px; padding: 0 20px; }
.hc__stat:first-child { padding-left: 0; }
.hc__stat-num {
  font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.hc__stat-label { font-size: 11px; color: rgb(255 255 255 / 80%); font-weight: 500; letter-spacing: 0.02em; }
.hc__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.hc__h2 {
  font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.hc__h2 em { color: var(--teal); font-style: normal; }
.hc__sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.7; margin-bottom: 28px; }

/* ── Logo Marquee ── */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
  flex-shrink: 0;
  opacity: 0.85;
}
.marquee__logo:hover { opacity: 1; }

.journey__grid,
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.jstep,
.step { background: var(--white); padding: 24px 20px; }
.jstep__num,
.step__num {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: rgba(27,42,107,0.07); margin-bottom: 8px;
}
.jstep__title,
.step__title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.jstep__desc,
.step__desc { font-size: 16px; color: var(--muted); line-height: 1.65; }

.callout-wrap { padding: 0 28px 90px; max-width: var(--max); margin: 0 auto; }
.callout,
.cta-block {
  max-width: var(--max); margin: 0 auto;
  background: var(--navy); border-radius: 20px; padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; border-left: 4px solid var(--teal);
}
.callout__left,
.cta-block__left { max-width: 480px; }
.callout__eyebrow,
.cta-block__eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 8px; }
.callout__h3,
.cta-block__h3 { font-family: var(--font-display); font-size: clamp(20px,2.6vw,28px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.callout__sub,
.cta-block__sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.7; }
.callout__btns,
.cta-block__btns { display: flex; flex-direction: column; gap: 10px; width: fit-content; }
.callout__btns a, .cta-block__btns a { white-space: nowrap; }
.callout__note { font-size: 11px; color: rgb(255 255 255 / 80%); text-align: center; }

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 36px;
  max-width: 640px;
  margin-top: 10px;
}
.industry-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
/* ── Feature chips modifier ── */
.industry-list--chips {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: none;
  max-width: 560px;
  gap: 10px;
}
.industry-list--chips .industry-list__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--mist);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: background .18s, border-color .18s, transform .18s;
}
.industry-list--chips .industry-list__item:hover {
  background: var(--border);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.img-section { padding: 80px 0; background: var(--white); }
.img-section--alt { background: var(--mist); }
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.img-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(27,42,107,0.06); }
.img-card__ph {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 28px; text-align: center;
}
.img-card__ph-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); }
.img-card__ph-sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.5; }
.img-card__caption { padding: 16px 20px; background: var(--white); border-top: 1px solid var(--border); }
.img-card__caption-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.img-card__caption-desc { font-size: 16px; color: var(--muted); line-height: 1.55; }
.img-replace-note svg { flex-shrink: 0; color: var(--warn); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story__img-main { border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
.story__img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story__img-row > div { border-radius: 10px; overflow: hidden; }
.story__content p { font-size: 16px; line-height: 1.8; color: var(--body); margin-bottom: 16px; }
.story__highlight {
  border-left: 3px solid var(--teal); padding: 14px 20px;
  background: var(--teal-faint); border-radius: 0 8px 8px 0; margin: 20px 0;
  font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.6;
}
.img-ph {
  background: var(--mist); border: 2px dashed var(--border);
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--muted); font-size: 13px; font-weight: 500; text-align: center; padding: 20px;
}
.img-ph svg { opacity: 0.4; }
.img-ph__label { font-size: 11px; color: var(--muted); opacity: 0.6; margin-top: 4px; }
.img-ph--main { height: 320px; }
.img-ph--thumb { height: 160px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 17px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -31px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 2px solid var(--teal); }
.tl-dot--active { background: var(--teal); border-color: var(--navy); }
.tl-year { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.tl-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tl-desc { font-size: 16px; color: var(--muted); line-height: 1.65; }
.creds__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cred { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; text-align: center; }
.cred__icon { width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.cred__icon--navy { background: rgba(27,42,107,0.07); }
.cred__icon--teal { background: var(--teal-faint); }
.cred__icon--sap { background: var(--teal-faint); }
.cred__title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.cred__desc { font-size: 16px; color: var(--muted); line-height: 1.65; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); border-radius: 14px; overflow: hidden; }
.gallery-item { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.gallery-item__caption { padding: 14px 16px; background: var(--white); border-top: 1px solid var(--border); }
.gallery-item__title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.gallery-item__desc { font-size: 16px; color: var(--muted); }
.platform-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.platform-gallery--3 { grid-template-columns: repeat(3, 1fr); }

.progress-wrap {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 14px 0; position: sticky; top: 70px; z-index: 90;
}
.progress__inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.progress__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.progress__label { font-size: 13px; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.progress__count { font-size: 12px; color: var(--muted); }
.progress__track { height: 5px; background: var(--mist); border-radius: 3px; overflow: hidden; margin-bottom: 7px; }
.progress__bar { height: 100%; background: var(--teal); border-radius: 3px; transition: width .4s cubic-bezier(.4,0,.2,1); width: 0%; }
.progress__dots { display: flex; gap: 4px; }
.progress__dot { flex: 1; height: 3px; border-radius: 2px; background: var(--border); transition: background .3s; }
.progress__dot.done { background: var(--teal); }
.progress__dot.active { background: rgba(10,209,145,0.38); }
.assessment-wrap {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 40px; max-width: var(--max); margin: 0 auto; padding: 40px 28px 80px;
  align-items: start;
}
.section-intro {
  background: var(--mist); border: 1px solid var(--border);
  border-left: 3px solid var(--teal); border-radius: var(--r);
  padding: 20px 24px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.section-intro__icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--teal-faint); border: 1px solid rgba(10,209,145,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
}
.section-intro__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); }
.section-intro__sub { font-size: 16px; color: var(--muted); margin-top: 3px; }
.question { margin-bottom: 24px; }
.question__num { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.question__text { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 16px; }
.options { display: flex; flex-direction: column; gap: 9px; }
.option {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--white); user-select: none;
}
.option:hover { border-color: var(--teal); background: var(--teal-faint); }
.option.selected { border-color: var(--teal); background: var(--teal-faint); }
.option__radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.option.selected .option__radio { border-color: var(--teal); background: var(--teal); }
.option.selected .option__radio::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--white); }
.option__text { font-size: 16px; color: var(--body); line-height: 1.55; }
.question-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.btn-nav {
  padding: 11px 22px; border-radius: 9px; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all .18s; border: 1.5px solid transparent;
  font-family: var(--font-display);
}
.btn-nav--prev { background: var(--white); border-color: var(--border); color: var(--body); }
.btn-nav--prev:hover { border-color: var(--navy); color: var(--navy); }
.btn-nav--next { background: var(--navy); color: var(--white); display: flex; align-items: center; gap: 7px; }
.btn-nav--next:hover:not(:disabled) { background: var(--teal); color: var(--navy); }
.btn-nav--next:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-nav--submit { background: var(--teal); color: var(--navy); }
.btn-nav--submit:hover:not(:disabled) { background: var(--teal-dim); }
.sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 80px; }
.bench-val.t { color: var(--teal); }
.level2 { background: var(--navy); border-radius: 14px; padding: 36px; margin-top: 32px; text-align: center; }
.level2__tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(10,209,145,0.12); border: 1px solid rgba(10,209,145,0.22);
  color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.level2__h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.level2__sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.65; max-width: 480px; margin: 0 auto 24px; }
.level2__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; text-align: left; }
.level2__feat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 9px; padding: 16px; }
.level2__feat-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.level2__feat-desc { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.6; }
.level2__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.level2__slots { font-size: 12px; color: rgb(255 255 255 / 80%); }
.apply-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; margin-top: 20px; }
.apply-form__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.apply-form__sub { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select {
  padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: var(--font-body); color: var(--ink);
  transition: border-color .15s; background: var(--white);
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--teal); }
.form-submit {
  width: 100%; padding: 13px; background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  border: none; border-radius: 9px; cursor: pointer; margin-top: 8px; transition: background .18s;
}
.form-submit:hover { background: var(--teal); color: var(--navy); }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px; line-height: 1.6; }
.footer { background: var(--navy-deeper); padding: 52px 0 22px; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px;
  max-width: var(--max); margin: 0 auto;
  padding: 0 28px 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 22px;
}
.footer__logo img { height: 28px; width: auto; margin-bottom: 10px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer__tagline { font-size: 13px; color: rgb(255 255 255 / 80%); line-height: 1.65; max-width: 220px; }
.footer__path { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-top: 12px; }
.footer__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgb(255 255 255 / 80%); margin-bottom: 12px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; color: rgb(255 255 255 / 80%); transition: color .18s; }
.footer__bottom {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer__copy { font-size: 12px; color: rgb(255 255 255 / 80%); }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: 12px; color: rgb(255 255 255 / 80%); }
.footer__legal a:hover { color: rgb(255 255 255 / 82%); }

.nav--minimal .nav__inner { justify-content: space-between; }
.nav__back:hover { color: var(--white); }
.nav__back svg { flex-shrink: 0; }
.hc-footer { background: var(--navy-deeper); padding: 28px 0; }
.hc-footer__logo img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.hc-footer__copy { font-size: 12px; color: rgb(255 255 255 / 80%); }
.hc-footer__links { display: flex; gap: 18px; }
.hc-footer__links a { font-size: 12px; color: rgb(255 255 255 / 80%); transition: color .18s; }
.hc-footer__links a:hover { color: rgb(255 255 255 / 80%); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-bar__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.trust-bar__track:hover { animation-play-state: paused; }
.trust-bar__group { display: flex; flex-shrink: 0; }

.footer__inner .footer__logo img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer__inner .footer__copy { font-size: 12px; color: rgb(255 255 255 / 80%); }
.footer__inner .footer__links { display: flex; gap: 18px; }
.footer__inner .footer__links a { font-size: 12px; color: rgb(255 255 255 / 80%); transition: color .18s; }
.footer__inner .footer__links a:hover { color: rgb(255 255 255 / 80%); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2); color: rgb(255 255 255 / 80%);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;text-align: center;
  padding: 12px 22px; border-radius: 9px; transition: all .18s; background: transparent;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

.img-ph--media {
  display: block; background: none; border: none; padding: 0;
  border-radius: 10px 10px 0 0; overflow: hidden;
}
.img-ph--media img { width: 100%; height: auto; display: block; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-section { margin-top: 48px; }

@media (max-width: 960px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none; }
  .nav__right { display: none; }
  .nav-top__item:first-child { display: none; }
  .nav-top__right { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__visual { display: none; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .beyond__grid { grid-template-columns: 1fr; }
  .hc__inner { grid-template-columns: 1fr; gap: 40px; }
  .hc__col-img { display: none; }
  .hc__levels { grid-template-columns: 1fr; }
  .hc__cta-row { flex-direction: column; align-items: flex-start; }
  .hc__stat { padding: 0 12px; }
  .hc__stat-num { font-size: 20px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .journey__grid,
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .callout,
  .cta-block { padding: 32px 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .capabilities { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: 1fr; }
  .platform-gallery--3 { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .creds__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .assessment-wrap { grid-template-columns: 1fr; }
  .level2__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .compare__table { min-width: 560px; }
  .callout-wrap { padding: 0 16px 60px; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .journey__grid,
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .platform-gallery { grid-template-columns: 1fr; }
  .platform-gallery--3 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .story__img-row { grid-template-columns: 1fr; }
  .creds__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .results-cta__btns { flex-direction: column; }
}

.timeline-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.img-card__ph--wide-sm { border-radius: 10px 10px 0 0; }

.compare__cta-wrap { text-align: center; margin-top: 28px; }
.compare__cta-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ══════════════════════════════════════════
   THE GAP SECTION
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   THE AVANUE WAY
══════════════════════════════════════════ */
.aw-section {
  background: var(--navy-dark);
  padding: 96px 0 80px;
}
.aw__header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.aw__eyebrow { color: var(--teal); }
.aw__h2 {
  color: var(--white);
  margin: 10px 0 18px;
  line-height: 1.18;
}
.aw__lead {
  color: rgb(255 255 255 / 80%);
  font-size: 14.5px;
  line-height: 1.65;
}
/* ══════════════════════════════════════════
   INTEGRATIONS SECTION
══════════════════════════════════════════ */
.integ__head { max-width: 800px; margin-bottom: 48px; }
.integ__categories { display: flex; flex-direction: column; gap: 36px; }
.integ__cat-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); margin-bottom: 14px;
}
.integ__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.integ__pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  transition: border-color .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}
.integ__pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 2px 12px rgba(10,209,145,0.08);
}
.integ__note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.integ__note svg { color: var(--teal); flex-shrink: 0; }

/* ── Integrations v2: three-column board (peec.ai style) ── */
.integ2__board {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
}
.integ2__board-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
}
.integ2__col {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.integ2__col:last-child { border-right: none; }
.integ2__col-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.integ2__badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.integ2__grid {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  padding: 36px 32px;
  gap: 32px 20px;
}
.integ2__logo {
  flex: 0 0 auto;
  width: auto;
  max-width: 128px;
  height: 40px;
  object-fit: contain;
  opacity: 1;
}
.integ2__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--muted);
}
.integ2__note svg { color: var(--teal); flex-shrink: 0; }
@media (max-width: 900px) {
  .integ2__board-inner { grid-template-columns: 1fr 1fr; }
  .integ2__col:nth-child(2) { border-right: none; }
  .integ2__col:nth-child(3) { border-top: 1px solid var(--border); grid-column: 1 / -1; border-right: none; }
}
@media (max-width: 580px) {
  .integ2__board-inner { grid-template-columns: 1fr; }
  .integ2__col { border-right: none; border-bottom: 1px solid var(--border); }
  .integ2__col:last-child { border-bottom: none; }
  .integ2__col:nth-child(3) { grid-column: auto; border-top: none; }
}

.results-cta__sub-note { font-size: 13px; color: var(--muted); line-height: 1.65; }

@media (max-width: 960px) {
  .timeline-layout { grid-template-columns: 1fr; gap: 40px; }
}

.nl-hero { padding:90px 0 80px; }
.nl-hero::before { content:''; position:absolute; top:-160px; right:-80px; width:600px; height:600px; background:radial-gradient(circle,rgba(10,209,145,0.10) 0%,transparent 70%); pointer-events:none; }
.nl-hero::after { content:''; position:absolute; bottom:-180px; left:-60px; width:440px; height:440px; background:radial-gradient(circle,rgba(10,209,145,0.08) 0%,transparent 70%); pointer-events:none; }
.nl-hero__inner { display:grid; grid-template-columns:1fr 420px; gap:64px; align-items:center; position:relative; z-index:1; }
.nl-hero__h1 { font-size:clamp(32px,4vw,48px); margin-bottom:16px; }
.nl-hero__sub { font-size:16px; line-height:1.72; color:var(--white); margin-bottom:32px; max-width:500px; }
.nl-hero__form { margin-top:0; }
.nl-hero__fields { display:flex; gap:10px; flex-wrap:wrap; }
.nl-input { flex:1; min-width:200px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.14); border-radius:9px; padding:12px 16px; font-family:var(--font-body); font-size:16px; color:var(--white); transition:border-color .18s; outline:none; }
.nl-input::placeholder { color: rgb(255 255 255 / 80%); }
.nl-input:focus { border-color:var(--teal); }
.nl-input--dark { width:100%; min-width:unset; margin-bottom:10px; }
.nl-hero__note { font-size:12px; color: rgb(255 255 255 / 80%); margin-top:10px; }
.nl-hero__stats { display:flex; align-items:center; gap:24px; margin-top:36px; padding-top:28px; border-top:1px solid rgba(255,255,255,0.08); }
.nl-hero__stat { display:flex; flex-direction:column; gap:4px; }
.nl-hero__stat-num { font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--white); line-height:1; }
.nl-hero__stat-label { font-size:11px; color: rgb(255 255 255 / 80%); font-weight:500; }
.nl-hero__divider { width:1px; height:36px; background:rgba(255,255,255,0.1); }

.nl-preview-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:14px; overflow:hidden; }
.nl-preview-card__header { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; background:rgba(10,209,145,0.07); border-bottom:1px solid rgba(255,255,255,0.07); }
.nl-preview-card__meta { display:flex; align-items:center; gap:8px; font-size:11px; font-weight:700; color:var(--teal); text-transform:uppercase; letter-spacing:0.07em; }
.nl-preview-card__dot { width:6px; height:6px; border-radius:50%; background:var(--teal); }
.nl-preview-card__date { font-size:11px; color: rgb(255 255 255 / 80%); font-weight:500; }
.nl-preview-card__body { padding:22px 18px; }
.nl-preview-card__tag { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--teal); margin-bottom:10px; }
.nl-preview-card__title { font-family:var(--font-display); font-size:16px; font-weight:800; color:var(--white); line-height:1.35; margin-bottom:10px; }
.nl-preview-card__excerpt { font-size:16px; color: rgb(255 255 255 / 80%); line-height:1.65; }
.nl-preview-card__divider { height:1px; background:rgba(255,255,255,0.07); margin:16px 0; }
.nl-preview-card__also-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; color: rgb(255 255 255 / 80%); margin-bottom:10px; }
.nl-preview-card__also-item { display:flex; align-items:flex-start; gap:8px; font-size:12px; color: rgb(255 255 255 / 80%); line-height:1.5; padding:5px 0; border-bottom:1px solid rgba(255,255,255,0.04); }
.nl-preview-card__also-item:last-child { border-bottom:none; }
.nl-preview-card__also-dot { width:4px; height:4px; border-radius:50%; background:var(--teal); flex-shrink:0; margin-top:6px; }
.nl-preview-card__footer { padding:12px 18px; border-top:1px solid rgba(255,255,255,0.06); font-size:11px; color: rgb(255 255 255 / 80%); text-align:center; }

.nl-archive-head { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; margin-bottom:40px; flex-wrap:wrap; }
.nl-filter { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.nl-filter__btn { background:var(--white); border:1px solid var(--border); color:var(--muted); font-family:var(--font-display); font-size:16px; font-weight:600; padding:7px 16px; border-radius:100px; cursor:pointer; transition:all .18s; }
.nl-filter__btn:hover { border-color:var(--teal); color:var(--teal); }
.nl-filter__btn--active { background:var(--teal); border-color:var(--teal); color:var(--white); }

.nl-issue--featured { background:var(--navy); border-radius:16px; padding:36px; margin-bottom:32px; }
.nl-issue__featured-label { display:inline-flex; align-items:center; gap:6px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--teal); margin-bottom:16px; }
.nl-issue__featured-label::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--teal); }
.nl-issue__featured-meta { display:flex; align-items:center; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
.nl-issue__number { font-family:var(--font-display); font-size:12px; font-weight:700; color: rgb(255 255 255 / 80%); text-transform:uppercase; letter-spacing:0.07em; }
.nl-issue-card .nl-issue__number { color:var(--muted); }
.nl-issue__date { font-size:12px; color: rgb(255 255 255 / 80%); }
.nl-issue-card .nl-issue__date { color:var(--muted); }
.nl-issue__category { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; padding:3px 9px; border-radius:100px; }
.nl-issue__category--finance { background:rgba(16,185,129,0.12); color:#059669; }
.nl-issue__category--ops     { background:rgba(10,209,145,0.12);  color:var(--teal); }
.nl-issue__category--sales   { background:rgba(10,209,145,0.12);  color:var(--teal); }
.nl-issue__featured-title { font-family:var(--font-display); font-size:clamp(20px,2.4vw,26px); font-weight:800; color:var(--white); line-height:1.2; margin-bottom:14px; }
.nl-issue__featured-desc { font-size:16px; color: rgb(255 255 255 / 80%); line-height:1.72; max-width:620px; margin-bottom:24px; }

.nl-issue-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.nl-issue-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:24px; transition:box-shadow .18s,border-color .18s; }
.nl-issue-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.08); border-color:rgba(10,209,145,0.25); }
.nl-issue-card__meta { display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.nl-issue-card__title { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--ink); line-height:1.35; margin-bottom:8px; }
.nl-issue-card__desc { font-size:16px; color:var(--muted); line-height:1.65; margin-bottom:16px; }
.nl-issue-card__link { font-size:13px; font-weight:600; color:var(--teal); transition:color .15s; display:inline-flex; align-items:center; gap:5px; }
.nl-issue-card__link:hover { color:var(--teal-dim); }

.nl-cta-form { display:flex; flex-direction:column; gap:10px; }

.nav__dd-item--current .nav__dd-label { color:var(--teal); }

@media(max-width:960px) { .nl-hero__inner{grid-template-columns:1fr} .nl-hero__preview{display:none} .nl-issue-grid{grid-template-columns:1fr 1fr} .nl-archive-head{flex-direction:column;gap:16px} }
@media(max-width:560px) { .nl-issue-grid{grid-template-columns:1fr} .nl-hero__fields{flex-direction:column} .nl-input{min-width:unset} }

.blog-search-wrap { position:relative; max-width:420px; }
.blog-search-icon { position:absolute; left:14px; top:50%; transform:translateY(-50%); color: rgb(255 255 255 / 80%); pointer-events:none; }
.blog-search { width:100%; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.13); border-radius:10px; padding:13px 16px 13px 40px; font-family:var(--font-body); font-size:16px; color:var(--white); transition:border-color .18s; outline:none; }
.blog-search::placeholder { color: rgb(255 255 255 / 80%); }
.blog-search:focus { border-color:var(--teal); }

.blog-topics { background:var(--white); border-bottom:2px solid var(--border); position:sticky; top:var(--header-h, 68px); z-index:100; }
.blog-topics__inner { display:flex; gap:4px; overflow-x:auto; padding:0 28px; max-width:var(--max); margin:0 auto; scrollbar-width:none; }
.blog-topics__inner::-webkit-scrollbar { display:none; }
.blog-topic-btn { background:none; border:none; border-bottom:2px solid transparent; margin-bottom:-2px; padding:13px 16px; font-family:var(--font-display); font-size:16px; font-weight:600; color:var(--muted); cursor:pointer; white-space:nowrap; transition:color .18s,border-color .18s; }
.blog-topic-btn:hover { color:var(--navy); }
.blog-topic-btn--active { color:var(--navy); border-color:var(--teal); }

.blog-card { background:var(--white); border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:box-shadow .18s,border-color .18s; }
.blog-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.08); border-color:rgba(10,209,145,0.25); }
.blog-card__thumb { height:160px; overflow:hidden; }
.blog-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.blog-card__thumb--crm  { background:linear-gradient(135deg,#0B1330,#0E2D5A); }
.blog-card__thumb--erp  { background:linear-gradient(135deg,#111D4A,#1B2A6B); }
.blog-card__body { padding:22px; }
.blog-card__meta { display:flex; align-items:center; gap:10px; margin-bottom:10px; flex-wrap:wrap; }
.blog-card__title { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--ink); line-height:1.35; margin-bottom:8px; }
.blog-card__excerpt { font-size:16px; color:var(--muted); line-height:1.65; margin-bottom:16px; }
.blog-card__footer { display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid var(--border); }
.blog-card__link { font-size:13px; font-weight:600; color:var(--teal); transition:color .15s; display:inline-flex; align-items:center; gap:5px; }
.blog-card__link:hover { color:var(--teal-dim); }

@media(max-width:960px) { .blog-featured{grid-template-columns:1fr} .blog-featured__visual{height:220px} .blog-featured__content{padding:28px} .blog-grid{grid-template-columns:1fr 1fr} }
@media(max-width:560px) { .blog-grid{grid-template-columns:1fr} .blog-topics__inner{gap:0} }

.art-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--navy-dark);
}
.art-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.45;
}
.art-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,29,74,0.3) 0%,
    rgba(17,29,74,0.75) 60%,
    rgba(11,19,48,0.95) 100%
  );
}
.art-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 0 48px;
}
.art-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.art-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.art-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border-radius: 100px;
}
.art-cat--recap      { background: rgba(10,209,145,0.18); color: var(--teal); }
.art-cat--solutions  { background: rgba(16,185,129,0.18); color: #34D399; }
.art-hero__date {
  font-size: 13px;
  color: rgb(255 255 255 / 80%);
  font-weight: 500;
}
.art-hero__read {
  font-size: 13px;
  color: rgb(255 255 255 / 80%);
}
.art-hero__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.8px;
  max-width: 760px;
  margin-bottom: 20px;
}
.art-hero__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.art-hero__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,209,145,0.35);
  object-fit: cover; flex-shrink: 0;
  display: block;
}
.art-hero__author-name {
  font-size: 13px; font-weight: 600;
  color: rgb(255 255 255 / 80%);
}
.art-hero__author-role {
  font-size: 12px;
  color: rgb(255 255 255 / 80%);
}

.art-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.art-body { min-width: 0; }

.art-body p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--body);
  margin-bottom: 22px;
}
.art-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 40px 0 16px;
}
.art-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 32px 0 12px;
}
.art-body ul,
.art-body ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.art-body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 8px;
}
.art-body li::marker { color: var(--teal); }
.art-body strong { color: var(--ink); font-weight: 700; }
.art-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.art-body a:hover { color: var(--teal-dim); }

.art-body .art-img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  margin: 32px auto;
  display: block;
  border: 1px solid var(--border);
}
.art-body .art-img--sm {
  max-width: 160px;
  margin: 24px 0;
}
.art-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.art-logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-height: 100px;
}
.art-logo-grid__item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90px;
  display: block;
}
@media (max-width: 640px) {
  .art-logo-grid { grid-template-columns: repeat(2, 1fr); }
}
.art-body .art-img-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 32px;
}

.art-quote {
  border-left: 3px solid var(--teal);
  margin: 36px 0;
  padding: 20px 28px;
  background: var(--mist);
  border-radius: 0 10px 10px 0;
}
.art-quote__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}
.art-quote__attr {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.art-quote__attr strong { color: var(--navy); font-weight: 700; }

.art-highlight {
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.22);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.art-highlight__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.art-highlight ul { margin-bottom: 0; padding-left: 18px; }
.art-highlight li { font-size: 16px; color: var(--body); margin-bottom: 6px; }

.art-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.art-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  flex-wrap: wrap;
}
.art-share__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: 4px;
}
.art-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--body);
  cursor: pointer;
  transition: all .18s;
}
.art-share__btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-faint);
}
.art-share__btn svg { flex-shrink: 0; }

.art-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color .18s;
  margin-bottom: 28px;
}
.art-back:hover { color: var(--navy); }

.art-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.art-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.art-sidebar-card__head {
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--border);
}
.art-sidebar-card__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.art-sidebar-card__body { padding: 14px 18px; }

.art-toc-list { display: flex; flex-direction: column; gap: 3px; }
.art-toc-item {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .14s, color .14s;
  line-height: 1.45;
}
.art-toc-item:hover { background: var(--mist); color: var(--navy); }
.art-toc-item--active { background: var(--teal-faint); color: var(--teal); font-weight: 600; }

.art-latest-list { display: flex; flex-direction: column; }
.art-latest-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity .15s;
}
.art-latest-item:last-child { border-bottom: none; padding-bottom: 0; }
.art-latest-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.art-latest-item__cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
}
.art-latest-item__date {
  font-size: 11px;
  color: var(--muted);
}
.art-latest-item__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  transition: color .15s;
}
.art-latest-item:hover .art-latest-item__title { color: var(--teal); }

.art-subscribe-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.art-subscribe-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.art-subscribe-card__sub {
  font-size: 16px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.6;
  margin-bottom: 16px;
}
.art-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.art-subscribe-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  transition: border-color .18s;
  outline: none;
}
.art-subscribe-input::placeholder { color: rgb(255 255 255 / 80%); }
.art-subscribe-input:focus { border-color: var(--teal); }
.art-subscribe-note {
  font-size: 11px;
  color: rgb(255 255 255 / 80%);
  margin-top: 4px;
}

.art-hc-card {
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.22);
  border-radius: 12px;
  padding: 20px 18px;
}
.art-hc-card__eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
}
.art-hc-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.art-hc-card__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.art-cta {
  background: var(--navy);
  border-radius: 20px;
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border-left: 4px solid var(--teal);
  margin: 0 28px 80px;
  max-width: calc(var(--max) - 0px);
  margin: 0 auto 80px;
}
.art-cta-wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px 80px; }
.art-cta-wrap .art-cta { margin: 0; }
.art-cta__eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--teal); margin-bottom: 6px;
}
.art-cta__h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: var(--white); line-height: 1.22; margin-bottom: 12px;
}
.art-cta__sub {
  font-size: 16px; color: rgb(255 255 255 / 80%);
  line-height: 1.72; max-width: 500px;
}
.art-cta__btns { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.art-cta__note { font-size: 11px; color: rgb(255 255 255 / 80%); text-align: center; }

@media (max-width: 960px) {
  .art-hero { height: 320px; }
  .art-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 20px 60px;
  }
  .art-sidebar { position: static; }
  .art-cta { padding: 32px 28px; }
}
@media (max-width: 560px) {
  .art-hero { height: 260px; }
  .art-hero__title { font-size: 22px; }
  .art-body p, .art-body li { font-size: 15px; }
  .art-cta-wrap { padding: 0 16px 60px; }
  .art-share { gap: 8px; }
}

.wb-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 3px 9px; border-radius: 100px;
}
.wb-cat--webinar  { background: rgba(10,209,145,0.15);  color: var(--teal); }
.wb-cat--live     { background: rgba(239,68,68,0.15);  color: #F87171; }
.wb-cat--recorded { background: rgba(99,102,241,0.15); color: #A5B4FC; }
.wb-date { font-size: 12px; color: rgb(255 255 255 / 80%); }
.wb-art-series { font-size: 12px; color: var(--white); }
.wb-host-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(10,209,145,0.3);
  object-fit: cover; flex-shrink: 0;
  display: block;
}
.wb-host-name { font-size: 13px; font-weight: 600; color: rgb(255 255 255 / 80%); }
.wb-host-role  { font-size: 12px; color: rgb(255 255 255 / 80%); }

.wb-art-hero { padding: 64px 0 52px; }
.wb-art-hero::before {
  content: '';
  position: absolute; top: -100px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(10,209,145,0.09) 0%, transparent 68%);
  pointer-events: none;
}
/* .wb-art-hero__road styles handled by shared rule */
.wb-art-hero__inner {
  max-width: var(--max);
  margin: 0 auto; padding: 0 28px;
  position: relative; z-index: 1;
}
.wb-art-hero__meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 18px;
}
.wb-art-hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800; color: var(--white);
  line-height: 1.12; letter-spacing: -0.8px;
  max-width: 780px; margin-bottom: 22px;
}
.wb-art-hero__host {
  display: flex; align-items: center; gap: 10px;
}

.wb-art-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.wb-art-body { min-width: 0; }
.wb-art-body p  { font-size: 16px; line-height: 1.82; color: var(--body); margin-bottom: 22px; }
.wb-art-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; line-height: 1.2; margin: 40px 0 16px; }
.wb-art-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; margin: 32px 0 12px; }
.wb-art-body ul, .wb-art-body ol { padding-left: 22px; margin-bottom: 22px; }
.wb-art-body li { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 8px; }
.wb-art-body li::marker { color: var(--teal); }
.wb-art-body strong { color: var(--ink); font-weight: 700; }
.wb-art-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.wb-art-body a:hover { color: var(--teal-dim); }

.wb-highlight {
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.22);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.wb-highlight__title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--teal); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 12px;
}
.wb-highlight ul { margin-bottom: 0; padding-left: 18px; }
.wb-highlight li { font-size: 16px; color: var(--body); margin-bottom: 6px; }

.wb-divider { height: 1px; background: var(--border); margin: 40px 0; }

.wb-video-section { margin: 40px 0; }
.wb-video-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--teal); margin-bottom: 14px;
}
.wb-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-dark);
  border: 1px solid var(--border);
}
.wb-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.wb-share {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 0; border-top: 1px solid var(--border);
  margin-top: 48px; flex-wrap: wrap;
}
.wb-share__label {
  font-size: 12px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em;
}
.wb-share__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px; font-size: 16px; font-weight: 600;
  border: 1px solid var(--border); background: var(--white);
  color: var(--body); cursor: pointer; transition: all .18s;
}
.wb-share__btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-faint); }

.wb-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--muted); transition: color .18s; margin-bottom: 28px;
}
.wb-back:hover { color: var(--navy); }

.wb-sidebar {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 24px;
}
.wb-sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.wb-sidebar-card__head {
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--border);
}
.wb-sidebar-card__title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
}
.wb-sidebar-card__body { padding: 14px 18px; }

.wb-toc-list { display: flex; flex-direction: column; gap: 3px; }
.wb-toc-item {
  display: block; font-size: 13px; color: var(--muted);
  padding: 6px 10px; border-radius: 6px;
  transition: background .14s, color .14s; line-height: 1.45;
}
.wb-toc-item:hover { background: var(--mist); color: var(--navy); }
.wb-toc-item--active { background: var(--teal-faint); color: var(--teal); font-weight: 600; }

.wb-latest-list { display: flex; flex-direction: column; }
.wb-latest-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: opacity .15s;
}
.wb-latest-item:last-child { border-bottom: none; padding-bottom: 0; }
.wb-latest-item__meta { display: flex; align-items: center; gap: 8px; }
.wb-latest-item__cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--teal); }
.wb-latest-item__date { font-size: 11px; color: var(--muted); }
.wb-latest-item__title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--ink); line-height: 1.4; transition: color .15s;
  display: flex; align-items: center; gap: 6px;
}
.wb-latest-item__title .fi { font-size: 15px; color: var(--navy); transition: color .15s; }
.wb-latest-item:hover .wb-latest-item__title { color: var(--teal); }
.wb-latest-item:hover .wb-latest-item__title .fi { color: var(--teal); }
.wb-latest-item__duration { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }

.wb-hc-card {
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.22);
  border-radius: 12px; padding: 20px 18px;
}
.wb-hc-card__eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 8px; }
.wb-hc-card__title { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.35; margin-bottom: 8px; }
.wb-hc-card__sub { font-size: 16px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.wb-cta-wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px 80px; }
.wb-cta {
  background: var(--navy); border-radius: 14px;
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; border-left: 4px solid var(--teal);
}
.wb-cta__eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--teal); margin-bottom: 6px; }
.wb-cta__h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.wb-cta__sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.65; max-width: 400px; }
.wb-cta__btns { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }

@media (max-width: 960px) {
  .wb-featured { grid-template-columns: 1fr; }
  .wb-featured__visual { min-height: 200px; }
  .wb-grid { grid-template-columns: 1fr 1fr; }
  .wb-art-layout { grid-template-columns: 1fr; gap: 40px; padding: 36px 20px 60px; }
  .wb-sidebar { position: static; }
  .wb-cta { padding: 32px 28px; }
  .wb-cta-wrap { padding: 0 20px 60px; }
}
@media (max-width: 560px) {
  .wb-grid { grid-template-columns: 1fr; }
  .wb-share { gap: 8px; }
  .wb-cta-wrap { padding: 0 16px 56px; }
  .wb-filter-bar__inner { gap: 0; }
}

.pr-hero { padding: 80px 0 72px; text-align: center; }
.pr-hero::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(10,209,145,0.12) 0%, transparent 68%);
  pointer-events: none;
}
/* .pr-hero__road styles handled by shared rule */
.pr-hero__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.pr-hero__h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; }
.pr-hero__sub {
  font-size: 17px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 32px;
}
.pr-hero__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 4px;
}
.pr-toggle-btn {
  background: none;
  border: none;
  color: rgb(255 255 255 / 82%);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: all .18s;
}
.pr-toggle-btn--active {
  background: var(--teal);
  color: var(--navy-dark);
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, border-color .18s;
  position: relative;
  overflow: hidden;
}
.pr-card:hover {
  box-shadow: 0 12px 36px rgba(27,42,107,0.10);
  border-color: rgba(10,209,145,0.3);
}

.pr-card--featured {
  background: var(--navy);
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(27,42,107,0.2);
  transform: translateY(-6px);
}
.pr-card--featured:hover {
  box-shadow: 0 20px 56px rgba(27,42,107,0.25);
  border-color: var(--teal);
}

.pr-card--enterprise {
  background: var(--mist);
  border-style: dashed;
}

.pr-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--teal);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pr-card__tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 6px;
}
.pr-card--featured .pr-card__tier { color: var(--teal); margin-top: 20px; }

.pr-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.pr-card--featured .pr-card__name { color: var(--white); }
.pr-card--enterprise .pr-card__name { color: var(--ink); }

.pr-card__target {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pr-card--featured .pr-card__target { color: rgb(255 255 255 / 82%); }

.pr-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pr-price__currency {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.pr-price__amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.pr-price__period {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.pr-card--featured .pr-price__currency,
.pr-card--featured .pr-price__amount { color: var(--white); }
.pr-card--featured .pr-price__period { color: rgb(255 255 255 / 80%); }
.pr-price__custom {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.pr-price__saving {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: rgba(10,209,145,0.12);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.pr-card--featured .pr-price__saving {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.pr-card__divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.pr-card--featured .pr-card__divider { background: rgba(255,255,255,0.12); }

.pr-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pr-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--body);
  line-height: 1.5;
}
.pr-card--featured .pr-feature { color: rgb(255 255 255 / 80%); }
.pr-feature__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}
.pr-card--featured .pr-feature__check {
  background: rgba(10,209,145,0.2);
  border-color: rgba(10,209,145,0.4);
}
.pr-feature__check svg { width: 9px; height: 9px; }

.pr-card__cta {
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  text-align: center;
  display: block;
}
.pr-card__cta--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.pr-card__cta--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-faint);
}
.pr-card__cta--primary {
  background: var(--teal);
  border: none;
  color: var(--navy-dark);
}
.pr-card__cta--primary:hover { background: var(--teal-dim); }

.pr-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pr-addon {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color .18s, box-shadow .18s;
}
.pr-addon:hover {
  border-color: rgba(10,209,145,0.3);
  box-shadow: 0 6px 22px rgba(27,42,107,0.07);
}
.pr-addon__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 14px;
}
.pr-addon__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.pr-addon__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.pr-addon__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pr-addon__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--border);
  background: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-display);
  transition: all .18s;
}
.pr-addon__cta:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.pr-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.pr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.pr-table thead tr { background: var(--navy); }
.pr-table thead th {
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}
.pr-table thead th:first-child { color: rgb(255 255 255 / 80%); }
.pr-table thead th.th-core  { color: rgb(255 255 255 / 80%); }
.pr-table thead th.th-pro   { color: rgb(255 255 255 / 80%); }
.pr-table thead th.th-elite { color: var(--teal); }
.pr-table thead th.th-ent   { color: rgb(255 255 255 / 80%); }
.pr-table tbody tr { border-bottom: 1px solid var(--border); }
.pr-table tbody tr:last-child { border-bottom: none; }
.pr-table tbody tr:nth-child(even) { background: var(--mist); }
.pr-table td {
  padding: 13px 20px;
  font-size: 16px;
  color: var(--muted);
}
.pr-table td:first-child { color: var(--body); font-weight: 500; }
.pr-table td.td-center { text-align: center; }
.pr-check { color: var(--teal); font-size: 16px; }
.pr-dash  { color: #CBD5E1; font-size: 16px; }
.pr-text  { font-size: 12px; color: var(--muted); font-weight: 500; }
.pr-table tfoot tr { background: var(--navy); }
.pr-table tfoot td {
  padding: 14px 20px;
  font-weight: 700;
  font-family: var(--font-display);
}
.pr-table tfoot td:first-child { color: rgb(255 255 255 / 82%); font-size: 13px; }
.pr-table tfoot td.td-center { color: var(--white); font-size: 15px; }
.pr-table tfoot td.td-elite  { color: var(--teal); font-size: 15px; text-align: center; }

.pr-faq { display: flex; flex-direction: column; gap: 12px; }
.pr-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.pr-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background .15s;
  gap: 16px;
}
.pr-faq-question:hover { background: var(--mist); }
.pr-faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-faint);
  border: 1px solid rgba(10,209,145,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: transform .22s;
}
.pr-faq-item.open .pr-faq-icon { transform: rotate(180deg); }
.pr-faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.pr-faq-item.open .pr-faq-answer { display: block; }

.pr-cta-wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px 80px; }
.pr-cta {
  background: var(--navy);
  border-radius: 14px;
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border-left: 4px solid var(--teal);
  text-align: left;
}
.pr-cta__eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--teal); margin-bottom: 8px; }
.pr-cta__h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.pr-cta__sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.65; max-width: 460px; }
.pr-cta__btns { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.pr-cta__note { font-size: 12px; color: rgb(255 255 255 / 80%); text-align: center; }

@media (max-width: 1020px) {
  .pr-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pr-card--featured { transform: none; }
  .pr-addons { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .pr-cta { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .pr-grid { grid-template-columns: 1fr; }
  .pr-addons { grid-template-columns: 1fr; }
  .pr-cta-wrap { padding: 0 16px 60px; }
}

.pr-toggle-save { font-size: 10px; opacity: 0.8; }

.pr-faq-inner { max-width: 760px; margin: 0 auto; }

.pr-faq-question[aria-expanded="true"] { background: var(--mist); }


.ct-info-list { display: flex; flex-direction: column; gap: 16px; }
.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: border-color .18s;
}
.ct-info-item:hover { border-color: rgba(10,209,145,0.3); }
.ct-info-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(10,209,145,0.12);
  border: 1px solid rgba(10,209,145,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.ct-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgb(255 255 255 / 80%);
  margin-bottom: 4px;
}
.ct-info-value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}
.ct-info-value a {
  color: rgba(255,255,255,0.82);
  transition: color .15s;
}
.ct-info-value a:hover { color: var(--teal); }

.ct-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.ct-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.ct-form-panel__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.ct-form-panel__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.ct-subject-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ct-subject-tab {
  background: var(--mist);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .18s;
}
.ct-subject-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.ct-subject-tab--active {
  background: var(--teal-faint);
  border-color: var(--teal);
  color: var(--teal);
}

.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ct-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.ct-field label .req {
  color: var(--teal);
  margin-left: 2px;
}
.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.ct-input::placeholder,
.ct-textarea::placeholder { color: var(--muted); opacity: 0.7; }
.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,209,145,0.10);
}
.ct-select { cursor: pointer; }
.ct-select option[value=""] { color: var(--muted); }
.ct-select:invalid, .ct-select:has(option[value=""]:checked) { color: var(--muted); }
.ct-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.ct-submit {
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.ct-submit:hover { background: #08c47a; transform: translateY(-1px); }
.ct-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ct-form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

.ct-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.ct-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 2px solid #10B981;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #10B981;
}
.ct-success__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.ct-success__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.ct-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ct-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all .18s;
  user-select: none;
}
.ct-checkbox-item:hover {
  border-color: var(--teal);
  background: var(--teal-faint);
}
.ct-checkbox-item.checked {
  border-color: var(--teal);
  background: var(--teal-faint);
}
.ct-checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}
.ct-checkbox-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  line-height: 1.4;
}

.ct-hc-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.ct-hc-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.ct-hc-card__sub {
  font-size: 16px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ct-page-tab:hover { color: var(--navy); }

@media (max-width: 960px) {
  .ct-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ct-layout { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px 60px; }
  .ct-sidebar { position: static; }
}
@media (max-width: 640px) {
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-checkbox-grid { grid-template-columns: 1fr; }
  .ct-subject-tabs { gap: 6px; }
}

.ct-hc-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; }

.ct-hc-card--light {
  background: var(--mist);
  border: 1px solid var(--border);
}
.ct-hc-card--light .ct-hc-card__title { color: var(--ink); }
.ct-hc-card--light .ct-hc-card__sub   { color: var(--muted); }
.ct-hc-card--light .ct-hc-btn {
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: transparent;
}
.ct-hc-card--light .ct-hc-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-faint);
}

/* ══════════════════════════════════════════════
   HERO 3 - Light / blob background variant
   Used on: index.html main hero
══════════════════════════════════════════════ */

.hero3 {
  background: #111d4a;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Soft blobs */
.hero3__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.6;
}
.hero3__blob--1 {
  width: 700px; height: 500px;
  background: #071863;
  top: -80px; left: -100px;
}
.hero3__blob--2 {
  width: 400px; height: 320px;
   background: #071863;
  bottom: -60px; left: 30%;
}
.hero3__blob--3 {
  width: 700px; height: 380px;
   background: #071863;
  bottom: -80px; right: -80px;
}
.hero3__blob--4 {
  width: 340px; height: 280px;
  background: #071863;
  bottom: 0; right: 18%;
}

.hero3__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 28px 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Text block - centered */
.hero3__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

/* Shared badge row (used across all page heroes) */
.hero3__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero3__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(27,42,107,0.05);
  border: 1px solid rgba(27,42,107,0.1);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero3__badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.hero3__badge-sep {
  width: 1px; height: 14px;
  background: rgba(27,42,107,0.15);
}

.hero3__h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 66px);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero3__h1--sub {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  opacity: 1;
}
.hero3__accent { color: var(--teal); }
.hero3__highlight { color: var(--teal); }

.hero3__sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 900px;
  text-align: center;
}
.hero3__sub strong { color: var(--body); font-weight: 600; }

.hero3__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero3__btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0ad191;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hero3__btn-p:hover { background: #08b87d; color: #fff; }
.hero3__btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero3__btn-o:hover {
  border-color: #08b87d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,209,145,0.25);
  color: var(--navy-dark);
}
.hero3__btn-o--plain { border-color: rgb(255 255 255 / 80%); background: transparent; color: #fff; }
.hero3__btn-o--plain:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); box-shadow: none; color: #fff; }

.hero3__trust {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero3__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.hero3__trust-chk {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(10,209,145,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Dashboard - full-width below text */
.hero3__dash-wrap {
  position: relative;
  width: 100%;
  margin-top: 56px;
}

/* Browser chrome bar */
.hero3__dash-window {
  position: relative;
  overflow: hidden;
}
.hero3__dash-window img {
  width: 100%;
  height: auto;
  display: block;
}
.hero3__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(11,19,48,0.55);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background-color .25s ease, border-color .25s ease;
}
.hero3__play-btn::before {
  content: '';
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.hero3__play-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translate(-50%, -50%) scale(1.08);
}
.hero3__play-btn:hover::before {
  opacity: 1;
  transform: scale(1.06);
}
.hero3__play-btn i { transform: translateX(2px); }

/* Floating pill badges */
.hero3__float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(27,42,107,0.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(27,42,107,0.12);
  white-space: nowrap;
  z-index: 5;
}
.hero3__float-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.hero3__float-pill-dot--teal { background: var(--teal); }
.hero3__float-pill-dot--sap  { background: var(--sap); }
.hero3__float-pill--1 { top: 10%; left: -120px; animation: pill-float 3s ease-in-out infinite; }
.hero3__float-pill--2 { top: 35%; right: -120px; animation: pill-float 3s ease-in-out infinite 1.5s; }
@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 960px) {
  .hero3__inner { padding: 80px 20px 0; }
  .hero3__float-pill--1, .hero3__float-pill--2 { display: none; }
}
@media (max-width: 560px) {
  .hero3__h1 { font-size: 30px; }
  .hero3__actions { flex-direction: column; align-items: center; }
  .hero3__inner { padding: 60px 16px 0; }
  .hero3__btn-o--plain { padding: 10px 18px; font-size: 13px; }
}

/* Health-check hero areas panel */
.hc-hero__areas {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(27,42,107,0.08);
}
.hc-hero__areas-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 16px;
}
.hc-hero__area-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-hero__area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
}
.hc-hero__area-chk {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(10,209,145,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Pricing badges centered */
.hero3__badges--center {
  justify-content: center;
  margin-bottom: 20px;
}


/* ════════════════════════════════════════════════
   WHY DEALERS SWITCH - problem/solution grid
   ════════════════════════════════════════════════ */
.switch__grid {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
.switch__header {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  background: var(--mist);
  padding: 12px 24px;
  gap: 0;
}
.switch__col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.switch__col-label--solution {
  color: var(--teal-dim);
}
.switch__row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}
.switch__row:hover {
  background: var(--mist);
}
.switch__problem {
  font-size: 16px;
  font-weight: 500;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.switch__problem .fi {
  color: var(--danger);
  font-size: 14px;
  flex-shrink: 0;
}
.switch__arrow {
  display: flex;
  justify-content: center;
  color: var(--border);
  font-size: 16px;
}
.switch__solution {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.switch__solution .fi {
  color: var(--teal);
  font-size: 14px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   WHY DEALERS SWITCH - staggered flip cards
   ════════════════════════════════════════════════ */
.dswitch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 36px;
}
.dswitch__card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-card);
  transform: rotate(0deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(27,42,107,0.06);
  outline: none;
}
.dswitch__card:nth-child(1) { --tilt: -3deg; }
.dswitch__card:nth-child(2) { --tilt: 2.5deg; }
.dswitch__card:nth-child(3) { --tilt: -2deg; }
.dswitch__card:nth-child(4) { --tilt: 3deg; }

.dswitch__card:hover,
.dswitch__card:focus-within,
.dswitch__card.is-flipped {
  transform: rotate(var(--tilt, 2deg)) translateY(-8px);
  box-shadow: 0 12px 40px rgba(27,42,107,0.08);
  z-index: 2;
}

.dswitch__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dswitch__face--problem {
  opacity: 1;
  transform: translateY(0);
}
.dswitch__face--solution {
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  pointer-events: none;
}
.dswitch__card:hover .dswitch__face--problem,
.dswitch__card:focus-within .dswitch__face--problem,
.dswitch__card.is-flipped .dswitch__face--problem {
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
}
.dswitch__card:hover .dswitch__face--solution,
.dswitch__card:focus-within .dswitch__face--solution,
.dswitch__card.is-flipped .dswitch__face--solution {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  border-color: rgba(10,209,145,0.25);
}

.dswitch__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.dswitch__icon--warn { background: rgba(245,158,11,0.12); color: var(--warn); }
.dswitch__icon--check { background: var(--teal-faint); color: var(--teal); }

.dswitch__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}
.dswitch__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.dswitch__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.dswitch__benefits li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.dswitch__benefits li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--teal);
}
.dswitch__more {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.dswitch__more:hover { color: var(--teal-dim); }

@media (max-width: 960px) {
  .dswitch__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .dswitch__grid { grid-template-columns: 1fr; gap: 14px; padding-bottom: 8px; }
  .dswitch__card { --tilt: 0deg !important; margin-top: 0 !important; height: auto; }
  .dswitch__face { position: relative; inset: auto; }
  .dswitch__face--solution { display: none; }
  .dswitch__card.is-flipped .dswitch__face--problem { display: none; }
  .dswitch__card.is-flipped .dswitch__face--solution {
    display: flex;
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* ════════════════════════════════════════════════
   SAP + AVANIKO SECTION
   ════════════════════════════════════════════════ */

/* Two-column layout inside .container (max 1160px) */
.sap__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left: content column */
.sap__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.sap__content .h2 { margin-bottom: 14px; }
.sap__intro-lead { font-size: 15px; margin-bottom: 32px; }

.sap__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 28px;
}
.sap__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(10,209,145,0.10);
  color: var(--teal);
  font-size: 15px;
  margin-bottom: 10px;
}
.sap__feature-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.35;
  margin: 0 0 6px;
}
.sap__feature-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.sap__logos {
  margin: 0 0 28px;
}
.sap__logos-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.sap__logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sap__logo-chip {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.sap__logo-chip img {
  height: 38px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.sap__rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 24px;
  width: 100%;
}

/* Right: video */
.sap__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sap__video {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .sap__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .sap__visual { order: -1; }
}
@media (max-width: 560px) {
  .sap__features { grid-template-columns: 1fr; gap: 20px; }
}

/* ════════════════════════════════════════════════
   FINAL CTA - newsletter line + secondary btn
   ════════════════════════════════════════════════ */
.callout__newsletter {
  margin-top: 10px;
  font-size: 13px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.6;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgb(255 255 255 / 80%);
}

/* ════════════════════════════════════════════════
   FAQ SECTION - two-column accordion layout
   ════════════════════════════════════════════════ */
.faq-section {
  background: var(--mist);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.faq-section--white { background: var(--white); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

/* Left column */
.faq__left-card {
  /* border: 1px solid var(--border);
  border-radius: 16px; */
  padding: 36px 32px 32px;
}
.faq__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.faq__highlight {
  color: var(--teal);
}
.faq__subtext {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
/* Right column - accordion */
.faq__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq__item + .faq__item { margin-top: 12px; }
.faq__item[open] { border-color: rgba(10,209,145,0.35); box-shadow: 0 6px 22px rgba(10,209,145,0.07); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.25s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__item[open] .faq__q { background: rgba(10,209,145,0.06); }
.faq__q-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}
.faq__item[open] .faq__q-text { color: var(--teal-dim); }
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s, color 0.25s, border-color 0.25s;
}
.faq__item[open] .faq__icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: rotate(180deg);
}
.faq__a {
  display: block;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height 0.35s ease;
}
.faq__a-inner {
  padding: 0 22px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 768px) {
  .faq__inner { grid-template-columns: 1fr; gap: 32px; }
}


/* ════════════════════════════════════════════════════════════════
   HOMEPAGE DESIGN SYSTEM v2
   Premium SaaS visual harmony - inspired by Stripe / Linear / Vercel
   One consistent spacing, radius, border, and type hierarchy.
   ════════════════════════════════════════════════════════════════ */

/* ── Extended tokens ──────────────────────────────────────────── */
:root {
  --radius-card: 12px;
  --section-py:  96px;
}

/* ── Section spacing - one system ────────────────────────────── */
.section,
.section.section--alt,
.section.section--white { padding: var(--section-py) 0; }

/* ── Typography - one hierarchy ──────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Section head ─────────────────────────────────────────────── */
.section__head { margin-bottom: 56px; }
.section__head .h2 { margin-bottom: 14px; }
.section__head .lead { max-width: 520px; }
.section__head--c .lead { 
  margin-left: auto; 
  margin-right: auto;
  max-width: 800px; 
}


/* ════════════════════════════════════════════════
   CONNECTED PLATFORM - dark section
   ════════════════════════════════════════════════ */
.aw-section { padding: var(--section-py) 0; }
.aw__header { margin-bottom: 56px; }
.aw__highlight { color: var(--teal); }
.aw__h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.aw__lead {
  font-size: 15px;
  color: rgb(255 255 255 / 82%);
  line-height: 1.7;
}
/* ════════════════════════════════════════════════
   WHY DEALERS SWITCH
   ════════════════════════════════════════════════ */
.gap__intro { max-width: 800px; margin-bottom: 48px; }
.gap__intro .h2 { margin-bottom: 14px; }
.switch__grid {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: none;
}
.switch__header {
  background: #FAFBFF;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
}
.switch__col-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #C1C7D0;
}
.switch__col-label--solution { color: var(--teal-dim); }
.switch__row {
  padding: 15px 24px;
  border-top: 1px solid var(--border);
  transition: background 0.1s;
}
.switch__row:hover { background: #FAFBFF; }
.switch__problem { font-size: 16px; font-weight: 500; color: var(--muted); }
.switch__problem .fi { color: #D1D5DB; font-size: 12px; }
.switch__arrow { color: var(--border); }
.switch__solution { font-size: 16px; font-weight: 600; color: var(--navy); }
.switch__solution .fi { color: var(--teal); font-size: 12px; }


/* ════════════════════════════════════════════════
   TESTIMONIALS - single-quote carousel
   ════════════════════════════════════════════════ */
.testi__panel {
  position: relative;
  padding: 0 160px 36px 0;
}
.testi__slide { display: none; }
.testi__slide.is-active { display: block; }

.testi__quote {
  display: inline-flex;
  width: auto;
  font-size: 64px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.3;
  transform: scaleX(-1) scaleY(-1);
  transform-origin: center;
  margin-bottom: 4px;
}
.testi__text {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy-dark);
  max-width: 900px;
  margin: 0 0 28px;
}
.testi__rule { border-top: 1px solid var(--border); margin: 0 0 24px; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testi__avatar--logo { width: 80px; height: 32px; border: 1px solid var(--border); border-radius: 8px; object-fit: contain; background: #FFFFFF; padding: 6px 10px; }
.testi__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi__role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.testi__nav {
  position: absolute;
  right: 44px;
  bottom: 36px;
  display: flex;
  gap: 8px;
}
.testi__nav-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s, color .18s, background .18s;
}
.testi__nav-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-faint); }

@media (max-width: 700px) {
  .testi__panel { padding: 0 0 88px; }
  .testi__nav { right: 0; bottom: 0; }
}

/* ════════════════════════════════════════════════
   FINAL CTA - dark callout + health check
   ════════════════════════════════════════════════ */
.callout-wrap { padding: 0 28px 90px; max-width: var(--max); margin: 0 auto; }
.callout__h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.callout__sub {
  font-size: 16px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.7;
}
.callout__btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; min-width: 310px; }
.callout .btn-primary {
  background: var(--teal);
  color: white;
  border: none;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 13px 22px;
}
.callout .btn-primary:hover { background: #08C080; }
.callout .btn-secondary {
  justify-content: center;
  text-align: center;
  color: rgb(255 255 255 / 80%);
  border-color: rgb(255 255 255 / 80%);
  border-radius: 8px;
}
.callout .btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgb(255 255 255 / 80%);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .callout--hc { flex-direction: column; gap: 36px; padding: 36px 28px; }
  .callout__btns { min-width: 100%; }
  .callout--hc .hc__areas { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  :root { --section-py: 56px; }
  .callout, .cta-block { padding: 0px 0px; }
  .gap__intro { max-width: 100%; }
  .sap__intro { max-width: 100%; }
  .trust__kpi { padding: 0 20px; }
}

/* ════════════════════════════════════════════════
   FINAL CTA - gradient background, centered
   ════════════════════════════════════════════════ */
.cta-section .callout {
  background:
    radial-gradient(ellipse 70% 140% at 20% 50%, rgba(10,209,145,0.12) 0%, transparent 65%),
    var(--navy-dark);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}
.cta-section .callout__text {
  flex: 1;
  min-width: 0;
}
.cta-section .callout__h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 10px;
}
.cta-section .callout__sub {
  max-width: 520px;
  margin-bottom: 0;
}
.cta-section .callout__btns {
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .cta-section .callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .cta-section .callout__btns { width: 100%; }
  .cta-section .callout__btns a { justify-content: center; text-align: center; }
}

/* ════════════════════════════════════════════════
   CONNECTED PLATFORM - looping video
   ════════════════════════════════════════════════ */
.aw__video-wrap {
  margin-top: 10px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  transform: translateX(-40px) translateY(-40px);
}
.aw__video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transform: translateZ(0);
}
.aw__video-container video {
  display: block;
  width: 100%;
  height: auto;
}
#lottie-platform {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 715;
  position: relative;
  left: 70px;
  top: 30px;
  transform: translateZ(0);
  isolation: isolate;
  background: transparent;
  overflow: visible;
}
#lottie-platform svg {
  background: transparent;
  overflow: visible;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Force white on icon paths inside the green module squares.
   The green rounded rects use a teal/green fill - we leave those alone.
   Only paths/shapes that are black or currentColor get forced white. */
#lottie-platform svg path[fill="#000000"],
#lottie-platform svg path[fill="rgb(0,0,0)"],
#lottie-platform svg path[fill="rgba(0,0,0,1)"],
#lottie-platform svg path[stroke="#000000"],
#lottie-platform svg rect[fill="#000000"],
#lottie-platform svg circle[fill="#000000"],
#lottie-platform svg ellipse[fill="#000000"],
#lottie-platform svg polyline[fill="#000000"],
#lottie-platform svg polygon[fill="#000000"] {
  fill: #ffffff !important;
  stroke: none !important;
}
#lottie-platform svg path[stroke="#000000"],
#lottie-platform svg rect[stroke="#000000"],
#lottie-platform svg circle[stroke="#000000"],
#lottie-platform svg ellipse[stroke="#000000"] {
  stroke: #ffffff !important;
}
@property --cb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes cb-border-spin {
  to { --cb-angle: 360deg; }
}
.aw__center-box {
  position: absolute;
  top: 53%;
  left: calc(50% + 45px);
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(var(--navy-dark), var(--navy-dark)) padding-box,
    conic-gradient(from var(--cb-angle), #0ad191 0%, rgba(10,209,145,0.08) 40%, #0ad191 60%, rgba(10,209,145,0.08) 80%, #0ad191 100%) border-box;
  animation: cb-border-spin 20s linear infinite;
  padding: 28px 24px 24px;
  text-align: center;
  width: 400px;
  min-height: 210px;
  box-shadow: 0 0 48px rgba(10,209,145,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.aw__center-box__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,209,145,0.12);
  border: 1px solid rgba(10,209,145,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aw__center-box__icon-wrap i {
  font-size: 18px;
  color: var(--teal);
}
.aw__center-box__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.aw__center-box__desc {
  font-size: 16px;
  color: rgb(255 255 255 / 68%);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .aw__video-wrap { padding: 0; }
  .aw__center-box { width: 160px; min-height: auto; padding: 18px 14px; gap: 8px; }
  .aw__center-box__icon-wrap { width: 34px; height: 34px; }
  .aw__center-box__icon-wrap i { font-size: 14px; }
  .aw__center-box__title { font-size: 11px; }
  .aw__center-box__desc { display: none; }
}

/* ════════════════════════════════════════════════
   TRUST SECTION - combined KPI + logo marquee
   ════════════════════════════════════════════════ */
.trust-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
  overflow: hidden;
}
.trust-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* KPI row */
.trust-kpi-row {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 52px;
}
.trust-kpi-row__left {
  flex: 0 0 240px;
}
.trust-kpi-row__heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin: 0 0 10px;
}
.trust-kpi-row__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.trust-kpi-row__stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0;
}
.trust-kpi-row__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 32px;
  border-left: 1px solid var(--border);
}
.trust-kpi-row__stat:first-child {
  border-left: none;
  padding-left: 40px;
  padding-right: 32px;
}
.trust-kpi-row__num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.trust-kpi-row__label {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
}
.trust-kpi-row__sap-logo { height: 46px; width: auto; display: block; align-self: flex-start; }

/* Divider between KPI and logos */
.trust-section__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 36px;
}

/* Logo label */
.trust-section__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}

/* Responsive */
@media (max-width: 960px) {
  .trust-kpi-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .trust-kpi-row__left { flex: none; }
  .trust-kpi-row__stats { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .trust-kpi-row__stat:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 600px) {
  .trust-section__inner { padding: 0 20px; }
  .trust-kpi-row__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════
   ABOUT PAGE - hero gallery, mission, values, team
   ════════════════════════════════════════════════ */

/* Single-image variant of .story (Why We Built) */
.story__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27,42,107,0.08);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mission - centered pull statement */
.mission { max-width: 760px; margin: 0 auto; text-align: center; }
.mission .eyebrow { display: block; text-align: center; }
.mission__quote {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.3;
  margin: 4px 0 8px;
}
.mission__statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.45;
}

/* Values - dark full-bleed statement */
.values { max-width: 720px; margin: 0 auto; text-align: center; }
.values .eyebrow { display: block; text-align: center; }
.values__h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.values__p {
  font-size: 16px;
  line-height: 1.75;
  color: rgb(255 255 255 / 80%);
}

/* Leadership - intro + photo + department chips */
.leadership__media {
  max-width: 640px;
  margin: 40px auto 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(27,42,107,0.14);
}
.leadership__media img { width: 100%; display: block; }
.dept-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 32px auto 0;
}
.dept-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}
.dept-chip i { color: var(--teal); font-size: 11px; }

@media (max-width: 960px) {
  .about-hero__stack {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    height: 220px;
    margin-top: 32px;
  }
}
@media (max-width: 600px) {
  .leadership__media { margin-top: 32px; }
  .hero3__badge-sep { display: none; }
}

/* ════════════════════════════════════════════════
   ABOUT PAGE - full redesign
   ════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */
.about-hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.about-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.65;
}
.about-hero__blob--1 { width: 700px; height: 500px; background: #d6f5f1; top: -80px; left: -100px; }
.about-hero__blob--2 { width: 420px; height: 320px; background: #dce8fb; top: 40px; right: 4%; }
.about-hero__blob--3 { width: 500px; height: 340px; background: #d6f5f1; bottom: 20%; right: -60px; }
.about-hero__blob--4 { width: 340px; height: 280px; background: #dce8fb; bottom: 8%; left: 28%; }

.about-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 0 64px;
  position: relative;
  z-index: 1;
}
.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,42,107,0.05);
  border: 1px solid rgba(27,42,107,0.1);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.about-hero__badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.about-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 800;
  line-height: 1.07;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 820px;
}
.about-hero__accent { color: var(--teal); }
.about-hero__sub {
  font-size: 17px;
  line-height: 1.74;
  color: var(--white);
  max-width: 1000px;
  margin-bottom: 36px;
}
.about-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Photo mosaic - editorial 3-column grid */
.about-hero__mosaic {
  position: relative;
  margin-top: 12px;
  overflow: hidden;
}
.about-hero__mosaic::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  z-index: 2;
}
.about-hero__mosaic-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.35fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 480px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  border-radius: 16px 16px 8px 8px;
  overflow: hidden;
}
.ahm-img--left   { grid-column: 1; grid-row: 1 / 3; }
.ahm-img--top    { grid-column: 2; grid-row: 1; }
.ahm-img--bottom { grid-column: 2; grid-row: 2; }
.ahm-img--right  { grid-column: 3; grid-row: 1 / 3; }
.ahm-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Why Built Avanue ────────────────────────── */
.why-built {
  background: #fff;
  padding: 80px 0;
}
/* no outer card - content sits directly on white */
.why-built__card {
  background: transparent;
}
/* top two-column row - no dividers */
.why-built__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 0 52px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
/* left column - no right border */
.why-built__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-built__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
  width: fit-content;
}
.why-built__badge .fi { font-size: 11px; color: var(--teal); }
.why-built__h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.why-built__desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 32px;
}
.why-built__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.why-built__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
 background: #0ad191;
  color: #fff;
  padding: 11px 24px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  white-space: nowrap;
}
.why-built__cta:hover { background: var(--navy-dark); transform: translateY(-1px); }
.why-built__cta .fi { font-size: 15px; }
/* social proof inline */
.why-built__proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-built__proof-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.why-built__proof-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
}
.why-built__proof-sub {
  font-size: 16px;
  color: var(--muted);
}
.why-built__proof-arrow {
  font-size: 16px;
  color: var(--muted);
}
/* right column - individual cards with gap */
.why-built__right {
  display: flex;
  align-items: center;
}
.why-built__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}
/* each feature = its own mist-bg card */
.why-built__feat {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.why-built__feat:hover {
  border-color: rgba(27,42,107,0.2);
  box-shadow: 0 4px 16px rgba(27,42,107,0.07);
}
.why-built__feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.why-built__feat-icon--purple { background: rgba(27,42,107,0.1);  color: var(--navy); }
.why-built__feat-icon--orange { background: rgba(10,209,145,0.15); color: var(--teal-dim); }
.why-built__feat-icon--green  { background: rgba(27,42,107,0.1);  color: var(--navy); }
.why-built__feat-icon--teal   { background: rgba(10,209,145,0.15); color: var(--teal-dim); }
.why-built__feat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.why-built__feat p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
/* bottom quote - separated by top border only */
.why-built__quote {
  padding: 40px 0 0;
  text-align: center;
}
.why-built__quote p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
  max-width: 780px;
  margin: 0 auto;
}
.why-built__quote strong { color: var(--navy); font-weight: 700; }
.why-built__quote em {
  font-style: normal;
  color: var(--teal-dim);
  font-weight: 500;
}

/* ── Values ──────────────────────────────────── */
.val-section {
  background: var(--navy-dark);
  padding: 80px 0;
}
/* centered header */
.val__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.val__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(10,209,145,0.1);
  border: 1px solid rgba(10,209,145,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.val__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.val__sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgb(255 255 255 / 82%);
  margin: 0;
}
/* 3-column grid */
.val__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
/* left & right card columns */
.val__cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* each feature card */
.val__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1;
  transition: background 0.18s, border-color 0.18s;
}
.val__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(10,209,145,0.25);
}
.val__card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--teal);
  margin-bottom: 18px;
}
.val__card-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.val__card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(255 255 255 / 80%);
  margin: 0;
}
/* center image column */
.val__img-col {
  border-radius: 16px;
  overflow: hidden;
}
.val__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 340px;
}

/* ── Team ────────────────────────────────────── */
.team-section {
  background: #fff;
  padding: 100px 0;
}
/* top row */
.team__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.team__top-left { max-width: 480px; }
.team__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dim);
  background: rgba(10,209,145,0.1);
  border: 1px solid rgba(10,209,145,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.team__h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}
.team__desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}
/* nav arrows */
.team__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.team__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.team__nav-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
/* scrollable track */
.team__track-wrap {
  overflow: hidden;
}
.team__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.team__track::-webkit-scrollbar { display: none; }
/* each card */
.team__card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
}
.team__photo-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 3/4;
  margin-bottom: 16px;
}
.team__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s;
}
.team__card:hover .team__photo-wrap img { transform: scale(1.03); }
.team__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.team__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3px;
  line-height: 1.3;
}
.team__role {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
.team__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-decoration: none;
  margin-top: 2px;
}
.team__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ── Final CTA ───────────────────────────────── */
.about-cta-wrap {
  padding: 80px 28px 80px;
  max-width: var(--max);
  margin: 0 auto;
}
.about-cta {
  background: var(--navy);
  border-radius: 20px;
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  border-left: 4px solid var(--teal);
}
.about-cta__left { max-width: 520px; }
.about-cta__h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 12px;
}
.about-cta__sub {
  font-size: 16px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.72;
}
.about-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 180px;
}
.about-cta__actions .btn-primary,
.about-cta__actions .btn-outline-light { white-space: nowrap; text-align: center; }
.about-cta__note {
  font-size: 11px;
  color: rgb(255 255 255 / 80%);
  text-align: center;
  margin: 0;
}

/* ── About marquee wrapper ───────────────────── */
.about-marquee-wrap {
  background: var(--white);
  /* border-top: 1px solid var(--border); */
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.about-marquee__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
/* constrain marquee to container width on about page */
.about-marquee-wrap .marquee {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* ── Timeline - Our Journey ──────────────────── */
.tl-section {
  background: var(--navy-dark);
  padding: 96px 0 80px;
  overflow: hidden;
}
.tl-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* Header block */
.tl__header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
.tl__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.tl__h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}
.tl__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgb(255 255 255 / 80%);
  max-width: 480px;
  margin: 0 auto;
}

/* Rail */
.tl__rail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding-top: 18px;
  margin-bottom: 56px;
}
.tl__rail-line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}
.tl__rail-progress {
  height: 100%;
  background: var(--teal);
  width: 0%;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl__dot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.tl__dot-ring {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.22);
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl__dot--active .tl__dot-ring,
.tl__dot:hover .tl__dot-ring {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 5px rgba(10,209,145,0.18);
  transform: scale(1.25);
}
.tl__dot-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgb(255 255 255 / 80%);
  letter-spacing: 0.04em;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl__dot--active .tl__dot-label,
.tl__dot:hover .tl__dot-label {
  color: #fff;
}

/* Content body - two column + ghost year */
.tl__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 64px;
  position: relative;
  padding-bottom: 96px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 52px;
}
.tl__nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}
.tl__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.tl__nav-btn:hover { border-color: var(--teal); color: var(--teal); }
.tl__nav-btn:disabled { opacity: 0.2; cursor: not-allowed; pointer-events: none; }

/* Slides */
.tl__slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.tl__slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Left: big milestone heading */
.tl__body-left { align-self: start; position: relative; min-height: 120px; }
.tl__milestone {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0;
}

/* Right: body copy + link */
.tl__body-right { align-self: start; position: relative; min-height: 120px; }
.tl__body-right p {
  font-size: 16px;
  line-height: 1.78;
  color: rgb(255 255 255 / 82%);
  margin: 0 0 24px;
}
.tl__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tl__link .fi { font-size: 16px; }
.tl__link:hover { text-decoration: underline; }

/* Ghost year - bottom right */
.tl__ghost-year {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* ── About combined (Story / Mission / Vision) ── */
.abt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abt__h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
}
.abt__h2-light { color: #0ad191; }
.abt__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.abt__tab {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
}
.abt__tab:hover { border-color: var(--teal); color: var(--teal); }
.abt__tab--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.abt__panel { display: none; }
.abt__panel--active { display: block; }
.abt__panel p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 36px;
}
.abt__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.abt__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 24px;
  border-right: 1px solid var(--border);
  margin-right: 24px;
}
.abt__stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.abt__stat-bullet { color: var(--teal); font-size: 16px; }
.abt__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.abt__stat-plus { color: var(--teal); }
.abt__stat-label { font-size: 13px; color: var(--muted); }
.abt__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(27,42,107,0.1);
}
.abt__img-wrap img {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ── About page responsive ───────────────────── */
@media (max-width: 960px) {
  .about-hero__mosaic-grid { height: 280px; }
  .tl__body { grid-template-columns: 1fr; gap: 0; }
  .tl__ghost-year { display: none; }
  .abt { grid-template-columns: 1fr; gap: 48px; }
  .abt__img-wrap { order: -1; }
  .abt__img-wrap img { aspect-ratio: 16/9; }
  .about-mission { grid-template-columns: 1fr; gap: 48px; }
  .about-mission__stats { gap: 32px; }
  .about-story2 { grid-template-columns: 1fr; gap: 40px; }
  .about-story2__left { position: static; }
  .about-story2__img-wrap img { aspect-ratio: 16/9; }
  .about-story2__features { grid-template-columns: 1fr 1fr; }
  .why-built__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .why-built__quote { padding-top: 32px; }
  .val__grid { grid-template-columns: 1fr; }
  .val__heading { font-size: 26px; }
  .val__img-col { min-height: 280px; }
  .team__top { flex-direction: column; align-items: flex-start; }
  .team__card { flex: 0 0 240px; }
  .about-cta { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .about-hero__h1 { font-size: 34px; }
  .about-hero__mosaic { display: none; } /* hide on mobile - too cramped */
  .abt__stats { flex-wrap: wrap; gap: 20px; }
  .abt__stat { flex: 0 0 calc(50% - 10px); border-right: none; margin-right: 0; padding-right: 0; }
  .abt__stat-num { font-size: 28px; }
  .val__heading { font-size: 22px; }
  .team__card { flex: 0 0 200px; }
  .team__h2 { font-size: 24px; }
  .about-cta { flex-direction: column; align-items: flex-start; border-left: none; border-top: 4px solid var(--teal); }
  .about-cta__actions { width: 100%; }
  .why-built { padding: 48px 0; }
  .why-built__grid { grid-template-columns: 1fr; }
  .why-built__h2 { font-size: 26px; }
  .why-built__actions { gap: 14px; }
}


/* ══════════════════════════════════════════════
   PLATFORM PAGE - moved from platform.html <style>
══════════════════════════════════════════════ */

.plat-hero { background: #fff; position: relative; overflow: hidden; padding: 100px 0 80px; }
.plat-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.plat-hero__left { display: flex; flex-direction: column; align-items: flex-start; }
.plat-hero__h1 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; line-height: 1.07; color: var(--navy); letter-spacing: -0.03em; margin: 0 0 20px; }
.plat-hero__accent { color: var(--teal); }
.plat-hero__sub { font-size: 16px; line-height: 1.75; color: var(--white); margin: 0 0 32px; max-width: 520px; }
.plat-ov { background: white; padding: 80px 0; }
.plat-ov__header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.plat-ov__h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; margin: 0 0 14px; }
.plat-ov__sub { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0; }
.plat-ov__grid { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: 1fr 1fr; gap: 24px; }
.plat-ov__card {
  border-radius: 18px; padding: 32px;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.plat-ov__card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(27,42,107,0.09); border-color: rgba(10,209,145,0.3); }
.plat-ov__card--lg { grid-row: 1 / 3; display: flex; flex-direction: column; }
.plat-ov__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(10,209,145,0.12); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 18px; }
.plat-ov__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.plat-ov__desc { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }
.plat-ov__card--lg .plat-ov__img-wrap { margin-top: 24px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.plat-ov__card--lg .plat-ov__img-wrap img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
  .plat-ov__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .plat-ov__card--lg { grid-row: auto; }
}

.plat-explore { background: var(--navy-dark); padding: 100px 0 100px; }
.plat-explore__header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.plat-explore__h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; color: var(--white); margin: 0 0 12px; }
.plat-explore__sub { font-size: 16px; line-height: 1.7; color: rgb(255 255 255 / 80%); margin: 0; }

.plat-explore__panel {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
  align-items: center; max-width: 1220px; margin: 0 auto; width: 100%;
}
.plat-explore__list-wrap { position: relative; z-index: 1; }

.plat-explore__list { list-style: none; margin: 0; padding: 0; }
.plat-explore__item {
  padding: 14px 0 14px 16px; cursor: pointer;
  border-left: 2px solid rgba(255,255,255,0.14);
  transition: border-color .2s;
}
.plat-explore__item-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: rgb(255 255 255 / 80%); transition: color .2s; }
.plat-explore__item:hover { border-left-color: rgb(255 255 255 / 80%); }
.plat-explore__item:hover .plat-explore__item-name { color: rgba(255,255,255,0.8); }
.plat-explore__item.is-active { border-left-color: var(--teal); }
.plat-explore__item.is-active .plat-explore__item-name { color: var(--white); font-weight: 700; }

.plat-explore__item-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1);
}
.plat-explore__item-body-inner {
  overflow: hidden; padding-top: 10px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.plat-explore__item.is-active .plat-explore__item-body { grid-template-rows: 1fr; }
.plat-explore__item.is-active .plat-explore__item-body-inner {
  opacity: 1; transform: translateY(0); transition: opacity .3s ease .1s, transform .3s ease .1s;
}
.plat-explore__item-desc { font-size: 16px; line-height: 1.7; color: rgb(255 255 255 / 80%); margin: 0 0 12px; max-width: 420px; }
.plat-explore__item-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--teal); transition: gap .18s;
}
.plat-explore__item-link:hover { gap: 9px; }

.plat-explore__preview { position: relative; z-index: 1; }
.plat-explore__preview-img-wrap { border-radius: 16px; overflow: hidden; }
.plat-explore__preview-img { width: 100%; max-width: 630px; height: 575px; object-fit: contain; display: block; }
@media (max-width: 860px) {
  .plat-explore { padding: 80px 0; }
  .plat-explore__panel { grid-template-columns: 1fr; gap: 32px; }
  .plat-explore__preview-img { height: 220px; }
  .plat-explore__item { padding: 12px 0 12px 14px; }
  .plat-explore__item-name { font-size: 15px; }
}

/* ── Connected Sales Workflow - pinned horizontal timeline ── */
.flow-roadmap { background: var(--navy-dark); position: relative; padding: 96px 0; }

.flow-roadmap__inner {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 470px);
  gap: clamp(48px, 7vw, 100px);
  justify-content: center;
  align-items: start; max-width: 1240px; margin: 0 auto;
}

.flow-roadmap__intro { max-width: 460px; position: sticky; top: calc(var(--header-h, 68px) + 32px); }
.flow-roadmap__h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800; color: var(--white); margin: 0 0 10px; letter-spacing: -0.02em;
}
.flow-roadmap__accent { color: var(--teal); }
.flow-roadmap__lead {
  font-size: 15px; line-height: 1.7; color: rgb(255 255 255 / 80%);
  margin: 0 0 18px; max-width: 460px;
}

.flow-roadmap__viewport {
  position: relative; width: 100%; min-width: 0;
}

.flow-roadmap__list {
  list-style: none; margin: 0; padding: 0; position: relative;
  display: flex; flex-direction: column;
}

.flow-roadmap__item {
  min-width: 0;
  display: grid; grid-template-columns: 20px 1fr; column-gap: 24px; align-items: stretch;
  text-align: left;
}

.flow-roadmap__marker {
  display: flex; flex-direction: column; align-items: center;
}
.flow-roadmap__node {
  width: 14px; height: 14px; border-radius: 50%; flex: none; margin-top: 6px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.18);
  transition: background .4s cubic-bezier(.4,0,.2,1), border-color .4s cubic-bezier(.4,0,.2,1),
    box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.flow-roadmap__bar {
  flex: 1; width: 2px; min-height: 44px; margin: 8px 0;
  background: rgba(255,255,255,0.1); border-radius: 2px;
  position: relative; overflow: hidden;
}
.flow-roadmap__bar::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--teal) 0%, #2fe8b0 100%);
  transform-origin: top center; transform: scaleY(var(--bar-fill, 0));
  transition: transform .15s linear;
}

.flow-roadmap__content {
  padding: 2px 0 40px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.flow-roadmap__title {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); margin: 8px 0 0;
}
.flow-roadmap__desc {
  font-size: 16px; line-height: 1.65; color: rgb(255 255 255 / 80%);
  margin: 10px 0 0; max-width: 440px;
}
/* Scroll-reveal: item has entered the viewport */
.flow-roadmap__item.is-visible .flow-roadmap__content { opacity: 1; transform: translateY(0); }
.flow-roadmap__item.is-visible .flow-roadmap__node {
  background: var(--teal); border-color: var(--teal);
  box-shadow: 0 0 0 5px rgba(10,209,145,0.14);
}

@media (max-width: 900px) {
  .flow-roadmap { padding: 64px 0; }
  .flow-roadmap__inner { grid-template-columns: 1fr; gap: 28px; }
  .flow-roadmap__intro { position: static; max-width: none; }
  .flow-roadmap__lead { max-width: none; }
}
@media (max-width: 760px) {
  .flow-roadmap { padding: 52px 0; }
  .flow-roadmap__item { column-gap: 14px; }
  .flow-roadmap__title { font-size: 17px; }
  .flow-roadmap__content { padding-bottom: 30px; }
  .flow-roadmap__desc { font-size: 13px; }
}

/* ── Built for MPS Dealers - horizontal card rail ─────────────────── */
.plat-fit { background: #f4f6fa; padding: 60px 0 100px; }
.plat-fit__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.plat-fit__intro { max-width: 800px; }
.plat-fit__h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.15; margin: 0 0 12px; }
.plat-fit__sub { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0; }
.plat-fit__nav { display: flex; gap: 10px; flex-shrink: 0; }
.plat-fit__arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: background .18s, border-color .18s, color .18s;
}
.plat-fit__arrow:hover { border-color: var(--teal); color: var(--teal); }
.plat-fit__arrow--primary { background: var(--teal); border-color: var(--teal); color: var(--white); }
.plat-fit__arrow--primary:hover { background: var(--teal-dim); border-color: var(--teal-dim); color: var(--white); }
.plat-fit__arrow:disabled { opacity: .35; cursor: default; border-color: var(--border); color: var(--muted); background: var(--white); }

.plat-fit__track-wrap { overflow: hidden; margin-top: -12px; }
.plat-fit__track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-top: 12px; padding-bottom: 4px;
  scrollbar-width: none;
}
.plat-fit__track::-webkit-scrollbar { display: none; }
.plat-fit__card {
  scroll-snap-align: start; flex: 0 0 280px;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plat-fit__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,42,107,0.1);
  border-color: rgba(10,209,145,0.35);
}
.plat-fit__icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--teal);
  /* border: 1px solid var(--border); */
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; margin-bottom: 20px;
  transition: transform .25s ease;
}
.plat-fit__card:hover .plat-fit__icon { transform: scale(1.08); }
.plat-fit__card-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.plat-fit__card-desc { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }
@media (max-width: 720px) {
  .plat-fit__top { flex-direction: column; align-items: flex-start; }
  .plat-fit__card { flex-basis: 240px; }
}

/* ── Connected Workflow - diagram ─────────────────────────────────── */
.plat-flow { background: #ffffff; padding: 100px 0 100px; }
.plat-flow__card { text-align: center; }
.plat-flow__h2 { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.25; max-width: 640px; margin: 0 auto 14px; }
.plat-flow__accent { color: var(--teal); }
.plat-flow__sub { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 700px; margin: 0 auto; }
.plat-flow__diagram { margin-top: -40px; margin-left: -40px; }
.plat-flow__diagram img { width: 100%; height: auto; display: block; }
.plat-flow__caption { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--muted); margin: 20px 0 0; }
@media (max-width: 720px) {
  .plat-flow__diagram { overflow-x: auto; }
  .plat-flow__diagram img { min-width: 640px; }
}

.plat-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.plat-hero__actions .btn-primary { background: var(--navy); }
.plat-hero__actions .btn-primary:hover { background: var(--navy-dark); }
.plat-hero__proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.plat-hero__proof-stat { font-size: 13px; color: var(--muted); }
.plat-hero__proof-stat strong { color: var(--navy); font-weight: 700; }
.plat-hero__proof-divider { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }
.plat-hero__visual { display: flex; align-items: center; justify-content: center; }
.plat-hero__img-wrap { width: 125%; max-width: 125%; margin: 0 -12.5%; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 80px rgba(27,42,107,0.14); }
.plat-hero__img-wrap img { width: 100%; height: auto; display: block; }

.plat-feat { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.plat-feat + .plat-feat { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--border); }
.plat-feat--rev { direction: rtl; }
.plat-feat--rev > * { direction: ltr; }
.plat-feat--dark-border + .plat-feat--dark-border { border-top-color: rgb(255 255 255 / 80%); }
.plat-feat__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
.plat-feat__h3 { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.3px; margin: 0 0 14px; }
.plat-feat__h3--light { color: var(--white); }
.plat-feat__body { font-size: 16px; line-height: 1.75; color: var(--muted); margin: 0 0 20px; }
.plat-feat__body--dim { color: rgb(255 255 255 / 80%); }
.plat-checklist { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
.plat-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); line-height: 1.55; }
.plat-checklist--dim li { color: rgb(255 255 255 / 80%); }
.plat-checklist li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; background: var(--teal-faint); border: 1.5px solid rgba(10,209,145,0.3); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230ad191' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.plat-feat__more { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; border-bottom: 1.5px solid var(--navy); padding-bottom: 1px; transition: opacity 0.18s; }
.plat-feat__more--teal { color: var(--teal); border-bottom-color: var(--teal); }
.plat-feat__more:hover { opacity: 0.65; }
.plat-screen { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(27,42,107,0.10); }
.plat-screen--dark { border-color: rgb(255 255 255 / 80%); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.plat-screen__bar { height: 30px; background: rgba(27,42,107,0.05); border-bottom: 1px solid var(--border); background-image: radial-gradient(circle 4px at 14px 15px, rgba(27,42,107,0.18) 100%, transparent 0), radial-gradient(circle 4px at 26px 15px, rgba(27,42,107,0.12) 100%, transparent 0), radial-gradient(circle 4px at 38px 15px, rgba(27,42,107,0.08) 100%, transparent 0); }
.plat-screen--dark .plat-screen__bar { background: rgba(255,255,255,0.04); border-bottom-color: rgb(255 255 255 / 80%); background-image: radial-gradient(circle 4px at 14px 15px, rgba(255,255,255,0.25) 100%, transparent 0), radial-gradient(circle 4px at 26px 15px, rgba(255,255,255,0.15) 100%, transparent 0), radial-gradient(circle 4px at 38px 15px, rgba(255,255,255,0.08) 100%, transparent 0); }
.plat-screen img { width: 100%; display: block; }

.section--dark .h2 { color: var(--white); }
.section--dark .lead { color: rgb(255 255 255 / 80%); }
.section--dark .eyebrow { color: rgba(10,209,145,0.85); }

@media (max-width: 1024px) {
  .plat-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .plat-hero { padding: 72px 0 48px; }
  .plat-hero__img-wrap { width: 100%; max-width: 100%; margin: 0; }
  .plat-feat, .plat-feat--rev { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .plat-feat + .plat-feat { margin-top: 48px; padding-top: 48px; }
}


/* ══════════════════════════════════════════════
   UTILITY - replaces sitewide inline styles
══════════════════════════════════════════════ */

.nav__mobile-head img { filter: brightness(0) invert(1); }
.wb-video-thumb__img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.yt-stack { display: flex; flex-direction: column; gap: 20px; }
.yt-thumb { width: 100%; position: relative; cursor: pointer; border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 9; background: #000; }
.yt-thumb__img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.yt-thumb__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.yt-thumb__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 8px; }
.ct-field--error { border-color: #EF4444; }
.ct-field-error { font-size: 12px; color: #EF4444; margin-top: 4px; display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin-icon { animation: spin 0.8s linear infinite; display: inline-block; }
.hero-container--raised { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   CONTACT PAGE - Calendly-style 2-col layout
   Left: form card | Right: hero message + stats
══════════════════════════════════════════════ */

/* Horizontal 3-col stats */
.ct-page__hstats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
/* Avoid a doubled-up divider when the stats row sits directly under the checklist (demo.html) */
.dm2__points + .ct-page__hstats { border-top: none; padding-top: 0; }

.ct-page__hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 20px;
}

.ct-page__hstat:first-child { padding-left: 0; }

.ct-page__hstat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.ct-page__hstat-label {
  font-size: 12px;
  color: rgb(255 255 255 / 80%);
  font-weight: 500;
  line-height: 1.4;
}

.ct-page__hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

.ct-page__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.ct-page__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ct-page__info-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(10,209,145,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
  font-size: 14px;
}

.ct-page__info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgb(255 255 255 / 80%);
  margin-bottom: 2px;
}

.ct-page__info-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

a.ct-page__info-val { transition: color .15s; }
a.ct-page__info-val:hover { color: var(--teal); }

/* ══════════════════════════════════════════════
   COMPARISON PAGES - avanue-vs-*.html
══════════════════════════════════════════════ */

.cmp-page { background: white; padding: 56px 24px 80px; min-height: calc(100vh - 68px); }
.cmp-wrap { max-width: 1200px; margin: 0 auto; }

.cmp-card {
  background: var(--white);
  padding: 48px 0px 44px;
  margin-bottom: 28px;
}

.cmp-hd { text-align: center; margin-bottom: 36px; }
.cmp-hd h1 { font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1.28; color: var(--ink); letter-spacing: -0.01em; }
.cmp-hd h1 .cmp-accent { color: var(--teal-dim); }
.cmp-hd p { margin-top: 10px; font-size: 14.5px; color: var(--muted); max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.cmp-tbl-wrap { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }

.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table thead th { padding: 18px 20px; text-align: left; background: var(--mist); border-bottom: 1px solid var(--border); vertical-align: middle; }
.cmp-table thead th:first-child { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--muted); width: 24%; background: var(--white); }

.cmp-col-hd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.cmp-col-logo {
  display: block;
  width: 110px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.cmp-table thead th.cmp-col--av { background: var(--teal-faint); position: relative; }
.cmp-table thead th.cmp-col--av::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); }
.cmp-table thead th.cmp-col--dx,
.cmp-table thead th.cmp-col--ea { background: var(--white); }
.cmp-row-cat td { padding: 12px 20px 10px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--mist); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); }
.cmp-row-cat-tag { display: inline-block; margin-right: 8px; color: var(--teal-dim); font-family: var(--font-display); font-weight: 800; }

.cmp-table tbody tr:not(.cmp-row-cat) { border-bottom: 1px solid var(--border); }
.cmp-table tbody tr:not(.cmp-row-cat):last-child { border-bottom: none; }
.cmp-table tbody tr:not(.cmp-row-cat):hover { background: rgba(27,42,107,0.012); }
.cmp-table tbody td { padding: 14px 20px; font-size: 16px; color: var(--body); vertical-align: top; }

.cmp-label { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 13px; }
.cmp-label small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 11.5px; margin-top: 3px; }
.cmp-cell--av { background: var(--teal-faint); font-weight: 500; color: var(--navy); }

.cmp-chk { display: inline-flex; align-items: flex-start; gap: 8px; font-size: 13px; font-weight: 500; line-height: 1.4; }
.cmp-chk-icon { width: 17px; height: 17px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10.5px; font-weight: 800; margin-top: 1px; }
.cmp-chk--yes  .cmp-chk-icon { background: rgba(10,209,145,0.14); color: var(--teal-dim); }
.cmp-chk--no   .cmp-chk-icon { background: #F1F5F9; color: #8A9099; }
.cmp-chk--part .cmp-chk-icon { background: #FEF3C7; color: #F59E0B; }
.cmp-chk-text { color: var(--body); font-weight: 500; }
.cmp-cell--av .cmp-chk-text { color: var(--navy); font-weight: 600; }

.cmp-legend { display: flex; gap: 24px; flex-wrap: wrap; padding: 16px 4px 28px; font-size: 12.5px; color: var(--muted); }
.cmp-legend-item { display: flex; align-items: center; gap: 7px; }
.cmp-legend-icon { width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }
.cmp-legend-icon--yes  { background: rgba(10,209,145,0.14); color: var(--teal-dim); }
.cmp-legend-icon--part { background: #FEF3C7; color: #F59E0B; }
.cmp-legend-icon--no   { background: #F1F5F9; color: #8A9099; }

.cmp-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); border-radius: 16px; padding: 34px 40px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; position: relative; overflow: hidden; border-left: 4px solid var(--teal); }
.cmp-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(480px 260px at 100% 0%, rgba(10,209,145,0.16), transparent 60%); pointer-events: none; }
.cmp-cta__copy { position: relative; z-index: 1; }
.cmp-cta__eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.cmp-cta__title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 8px; }
.cmp-cta__sub { font-size: 16px; color: rgb(255 255 255 / 80%); line-height: 1.6; max-width: 600px; }
.cmp-cta__form { position: relative; z-index: 1; }
.cmp-cta__row { display: flex; gap: 10px; }
.cmp-cta__input { flex: 1; min-width: 0; padding: 13px 15px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.07); color: var(--white); font-family: var(--font-body); font-size: 13.5px; outline: none; transition: border-color .18s, background .18s; }
.cmp-cta__input::placeholder { color: rgb(255 255 255 / 80%); }
.cmp-cta__input:focus { border-color: var(--teal); background: rgba(255,255,255,0.10); }
.cmp-cta__btn { padding: 13px 20px; border-radius: 9px; border: none; background: var(--teal); color:white; font-family: var(--font-display); font-weight: 800; font-size: 16px; white-space: nowrap; cursor: pointer; transition: background .15s; }
.cmp-cta__btn:hover { background: var(--teal-dim); color: var(--white); }
.cmp-cta__success { display: none; align-items: center; gap: 10px; padding: 13px 15px; border-radius: 9px; border: 1px solid rgba(16,185,129,0.4); background: rgba(16,185,129,0.14); color: #d1fae5; font-size: 13.5px; font-weight: 600; }
.cmp-cta__success-icon { width: 18px; height: 18px; border-radius: 50%; background: #10B981; color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

.cmp-pg-footer { text-align: center; font-size: 12px; color: #8A9099; margin-top: 24px; line-height: 1.7; }
.cmp-pg-footer a { color: var(--navy); font-weight: 600; }

/* Cross-link CTA card (e.g. "Compare vs another platform") */
.cmp-crosslink {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: 56px 40px; text-align: center; margin-bottom: 20px;
}
.cmp-crosslink__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.cmp-crosslink__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.cmp-crosslink__title {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 800;
  color: var(--ink); line-height: 1.25; margin-bottom: 12px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.cmp-crosslink__sub { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.cmp-crosslink__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; border: none;
  background: var(--navy); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 16px;
  text-decoration: none; transition: background .18s, transform .15s;
}
.cmp-crosslink__btn:hover { background: var(--teal); color: var(--navy-dark); transform: translateY(-1px); }
@media (max-width: 700px) {
  .cmp-crosslink { padding: 40px 24px; }
}

@media (max-width: 700px) {
  .cmp-page { padding: 32px 12px 60px; }
  .cmp-card { padding: 32px 20px 28px; }
  .cmp-hd h1 { font-size: 23px; }
  .cmp-cta { grid-template-columns: 1fr; padding: 26px 24px; }
  .cmp-cta__row { flex-direction: column; }
  .cmp-table thead th, .cmp-table tbody td { padding: 12px 12px; font-size: 12px; }
  .cmp-col-name { font-size: 13px; }
  .cmp-col-logo { width: 68px; height: auto; }
}

/* ── Comparison page: Hero ─────────────────────────────────────── */
.cmp-hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 55%, #1a2f5e 100%);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cmp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(10,209,145,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cmp-hero__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.cmp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,209,145,0.12);
  border: 1px solid rgba(10,209,145,0.28);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.cmp-hero__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cmp-hero__vs-a {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1;
}
.cmp-hero__vs-sep {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: rgb(255 255 255 / 80%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cmp-hero__vs-b {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.cmp-hero__sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--white);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 32px;
  font-family: var(--font-body);
}
.cmp-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cmp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(255 255 255 / 80%);
}
.cmp-hero__chip-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal);
}
.cmp-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cmp-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .18s, transform .15s;
}
.cmp-hero__btn-primary:hover { background: #08c47a; transform: translateY(-2px); }
.cmp-hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgb(255 255 255 / 80%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.cmp-hero__btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

@media (max-width: 600px) {
  .cmp-hero { padding: 56px 20px 48px; }
  .cmp-hero__vs { gap: 12px; }
}

/* ══════════════════════════════════════════════
   MPS ERP HEALTH CHECK page (mps-erp-health-check.html)
   NOTE: intentionally NOT using the shared .page-hero
   class - the "PAGE HERO LIGHT THEME" override further
   up this file force-flips .page-hero to a white
   background sitewide, which breaks this page's dark
   hero + white quiz-card layout. Kept fully scoped here.
══════════════════════════════════════════════ */
.mhc-hero {
  background: var(--navy-dark); padding: 68px 0 0;
  position: relative; overflow: hidden;
}
.mhc-hero::before {
  content: ''; position: absolute; top: -160px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(10,209,145,0.11) 0%, transparent 68%);
  pointer-events: none;
}
.mhc-hero__inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 56px; align-items: start;
  max-width: var(--max); margin: 0 auto; padding: 0 28px 64px;
  position: relative; z-index: 1;
}
.mhc-hero__tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(10,209,145,0.12); border: 1px solid rgba(10,209,145,0.25);
  color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 18px;
}
.mhc-hero__tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.mhc-hero__h1 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.9px;
  color: var(--white); font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px;
}
.mhc-hero__h1 em { color: var(--teal); font-style: normal; }
.mhc-hero__sub { font-size: 16px; line-height: 1.72; color: var(--white); margin-bottom: 28px; }
.mhc-hero__checklist { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.09); margin-top: 6px; }
.mhc-hero__checklist .trust-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.mhc-hero__checklist .trust-item:last-child { border-bottom: none; }
.mhc-hero__checklist .trust-item span { font-size: 13.5px; color: rgb(255 255 255 / 80%); }
.mhc-hero__stats { padding-top: 26px; }

/* Quiz card */
.qc {
  background: var(--white); color: var(--ink); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(11,19,48,0.35);
  min-height: 452px; display: flex; flex-direction: column; overflow: hidden;
}
.qc__panel { padding: 30px 32px 30px; display: flex; flex-direction: column; height: 100%; }
.qc__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.qc__meta-count { color: var(--teal); white-space: nowrap; }
.qc__track { height: 4px; background: var(--mist); border-radius: 3px; overflow: hidden; margin: 13px 0 28px; }
.qc__bar { height: 100%; background: var(--teal); border-radius: 3px; width: 7%; transition: width .4s cubic-bezier(.4,0,.2,1); }
.qc__q { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1.28; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 22px; }
.qc__options { display: flex; flex-direction: column; gap: 9px; }
.qc__opt {
  display: flex; align-items: flex-start; gap: 13px; width: 100%; text-align: left;
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--white); font-family: var(--font-body); font-size: 14px; color: var(--body);
  cursor: pointer; transition: border-color .15s, background .15s, transform .15s; line-height: 1.4;
}
.qc__opt:hover { border-color: var(--teal); background: var(--teal-faint); transform: translateX(2px); }
.qc__opt.is-selected { border-color: var(--teal); background: var(--teal-faint); color: var(--ink); }
.qc__opt-radio {
  width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.qc__opt.is-selected .qc__opt-radio { border-color: var(--teal); background: var(--teal); }
.qc__opt.is-selected .qc__opt-radio::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--white); }
.qc__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; }
.qc__back { background: none; border: none; padding: 0; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--muted); cursor: pointer; }
.qc__back:disabled { opacity: 0.4; cursor: not-allowed; }
.qc__remaining { font-size: 11px; color: var(--muted); }

.qc__result { padding: 30px 32px 32px; display: flex; flex-direction: column; gap: 20px; }
.qc__result-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.qc__score-row { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.qc__score { font-family: var(--font-display); font-weight: 800;  color: var(--ink); }
.qc__score span { font-size: 17px; color: var(--muted); font-weight: 600; }
.qc__verdict { font-size: 13px; line-height: 1.5; color: var(--body); text-align: left; }
.qc__bench-track { position: relative; height: 7px; background: var(--mist); border-radius: 4px; }
.qc__bench-fill { height: 7px; background: var(--teal); border-radius: 4px; }
.qc__bench-marker { position: absolute; top: -5px; width: 2px; height: 17px; background: var(--warn); }
.qc__bench-caption { font-size: 11px; color: var(--muted); margin-top: 8px; }
.qc__result-cols { display: grid; grid-template-columns: 1fr 410px; gap: 36px; align-items: start; }
.qc__result-left { display: flex; flex-direction: column; gap: 20px; }
.qc__result-right-col { display: flex; flex-direction: column; gap: 20px; margin-left: auto; width: 100%; }
.qc__result-right { display: flex; flex-direction: column; gap: 16px; }
.mhc-hero__inner--result { grid-template-columns: 1fr; }
@media (max-width: 760px) {
  .qc__result-cols { grid-template-columns: 1fr; gap: 24px; }
  .qc__result-right-col { margin-left: 0; }
}
.qc__areas { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.qc__area-row { display: grid; grid-template-columns: 1.35fr 0.8fr 34px; gap: 10px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); }
.qc__area-row:last-child { border-bottom: none; }
.qc__area-name { font-size: 13px; line-height: 1.3; color: var(--ink); }
.qc__area-track { height: 6px; background: var(--mist); border-radius: 3px; overflow: hidden; }
.qc__area-fill { display: block; height: 6px; border-radius: 3px; }
.qc__area-pct { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--body); text-align: right; }
.qc__gaps { background: var(--navy-dark); color: var(--white); border-radius: 10px; padding: 18px 20px; }
.qc__gaps-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 10px; }
.qc__gap { display: grid; grid-template-columns: 20px 1fr; gap: 10px; padding: 5px 0; font-size: 13px; line-height: 1.5; color: rgb(255 255 255 / 80%); }
.qc__gap b { color: rgb(255 255 255 / 80%); font-weight: 700; font-family: var(--font-display); font-size: 11px; }
.qc__email { border: 1px solid var(--border); border-radius: 9px; padding: 16px 18px; background: var(--mist); }
.qc__email-title { font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.qc__email-sub { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.qc__email-note { font-size: 12px; color: var(--muted); margin-top: 10px; }
.qc__email-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.qc__email-actions { display: flex; }
.qc__email-actions .qc__send { padding: 11px 22px; }
.qc__email-row input {
  padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-family: var(--font-body); color: var(--ink); background: var(--white);
}
.qc__email-row input:focus { outline: none; border-color: var(--teal); }
.qc__send { background: var(--teal); color: #fff; border: none; padding: 0 18px; border-radius: 8px; font-family: var(--font-display); font-weight: 700; font-size: 16px; cursor: pointer; transition: background .18s; }
.qc__send:hover { background: var(--teal-dim); }
.qc__sent { border: 1px solid rgba(10,209,145,0.3); background: var(--teal-faint); border-radius: 9px; padding: 14px 16px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.qc__actions { display: flex; gap: 8px; flex-wrap: nowrap; justify-content: flex-start; }
.qc__actions .btn-primary { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 12px 16px; font-size: 15px; }
.qc__actions .qc__restart { flex: 0 0 auto; padding: 12px 14px; font-size: 15px; }
.qc__restart { background: none; border: 1.5px solid var(--border); padding: 12px 16px; border-radius: 9px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--body); cursor: pointer; transition: all .18s; }
.qc__restart:hover { border-color: var(--navy); color: var(--navy); }

/* Scored-across strip */
.scored-strip { background: var(--mist); border-bottom: 1px solid var(--border); }
.scored-strip__inner {
  max-width: var(--max); margin: 0 auto; padding: 18px 0 18px 28px;
  display: flex; align-items: center; gap: 28px;
}
.scored-strip__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.scored-strip__scroller {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 60px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 60px), transparent);
}
.scored-strip__track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.scored-strip__track:hover { animation-play-state: paused; }
.scored-strip__group { display: flex; flex-shrink: 0; }
.scored-strip__item {
  font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
  padding: 0 22px; border-right: 1px solid var(--border);
}

/* Why dealers score section */
.reason-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.reason-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.reason-row:last-child { border-bottom: none; }
.reason-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.2px; color: var(--ink); }
.reason-desc { font-size: 16px; line-height: 1.6; color: var(--muted); }

/* Level 2 section */
.l2 { background: var(--white); padding: 72px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.l2::before {
  content: ''; position: absolute; top: -160px; left: -100px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(10,209,145,0.07) 0%, transparent 68%); pointer-events: none;
}
.l2__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start;
  position: relative; z-index: 1;
}
.l2 .hc__h2 { color: var(--ink); }
.l2 .hc__sub { color: var(--muted); }
.l2__list { display: flex; flex-direction: column; border-top: 1px solid var(--border); margin-top: 8px; }
.l2__item { padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.6; color: var(--muted); }
.l2__item:last-child { border-bottom: none; }
.l2__item strong { color: var(--ink); }
.l2__card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 30px 32px; box-shadow: 0 20px 50px rgba(27,42,107,0.1); }

@media (max-width: 980px) {
  .mhc-hero__inner { grid-template-columns: 1fr; }
  .l2__inner { grid-template-columns: 1fr; }
  .reason-row { grid-template-columns: 1fr; gap: 8px; }
  .quote-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   DEMO PAGE - split-screen layout (demo.html)
   NOTE: .ct-form / .ct-field / .ct-input / .ct-submit /
   .ct-checkbox-* / .ct-success are SHARED with contact.html -
   left untouched here. Only new .dm2-* wrapper classes added.
══════════════════════════════════════════════ */
.dm2 {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h, 104px));
  align-items: stretch;
  background: var(--navy-dark);
}
.dm2__left {
  background: transparent;
  padding: 64px 64px 48px; display: flex; flex-direction: column; justify-content: flex-start;
      max-width: 700px;
    margin-left: 200px;
    margin-top: 70px;
}
.dm2__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.dm2__h1 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--white);
  font-size: clamp(32px, 3.6vw, 46px); margin-bottom: 18px;
}
.dm2__h1 em { color: var(--teal); font-style: normal; }
.dm2__sub { font-size: 16px; line-height: 1.65; color: var(--white); max-width: 460px; margin-bottom: 32px; }
.dm2__points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 32px; max-width: 520px;
}
.dm2__point { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.dm2__point i { color: var(--teal); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.dm2__right {
  position: relative; overflow: hidden;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center; padding: 56px 32px;
}
.dm2__right::before {
  content: ''; position: absolute; top: -140px; right: -100px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(10,209,145,0.14) 0%, transparent 70%); pointer-events: none;
}
.dm2__right::after {
  content: ''; position: absolute; bottom: -160px; left: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(10,209,145,0.08) 0%, transparent 70%); pointer-events: none;
}
.dm2__card {
  position: relative; z-index: 1; width: 100%; max-width: 760px;
  background: var(--white); border-radius: 18px; padding: 40px 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.dm2__card-title { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.dm2__card-sub { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 24px; }

@media (max-width: 1400px) {
  .dm2__left { margin-left: 40px; max-width: 560px; }
}
@media (max-width: 980px) {
  .dm2 { grid-template-columns: 1fr; min-height: 0; }
  .dm2__left { padding: 48px 24px; margin-left: 0; margin-top: 0; max-width: none; }
  .dm2__right { padding: 40px 24px; }
  .dm2__points { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   HERO DARK THEME
   All hero sections use one dark theme sitewide.
   Photo-background headers (art-hero, wb-art-hero) are
   intentionally excluded - inverting text color would break
   legibility over the photo.
══════════════════════════════════════════════ */

/* ── about-hero (about.html) ── */
.about-hero { background: var(--navy-dark); }
.about-hero__blob { background: #071863; }
.about-hero__badge {
  background: rgba(10,209,145,0.12); border-color: rgba(10,209,145,0.28); color: var(--teal);
}
.about-hero__h1 { color: var(--white); }
.about-hero__sub { color: var(--white); }
.about-hero__mosaic::after {
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
}

/* ── plat-hero (platform.html) ── */
.plat-hero { background: var(--navy-dark); }
.plat-hero__h1 { color: var(--white); }
.plat-hero__sub { color: var(--white); }
.plat-hero__proof-stat { color: rgb(255 255 255 / 80%); }
.plat-hero__proof-stat strong { color: var(--white); }
.plat-hero__proof-divider { background: rgba(255,255,255,0.15); }

/* ── hero3__badges row (blogs, case-studies, newsletter, webinars, pricing) ── */
.hero3__badge {
  background: rgba(10,209,145,0.12); border-color: rgba(10,209,145,0.28); color: var(--teal);
}
.hero3__badge-sep { background: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════════
   CRM HERO — platform-sales-crm.html
   Centered headline + CTAs, large floating dashboard
   screenshot layered over two faded side screenshots.
══════════════════════════════════════════════ */
.crm-hero {
  background: var(--navy-dark);
  text-align: center;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.crm-hero__text { max-width: 900px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.crm-hero__h1 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.14;
  font-size: clamp(32px, 4.6vw, 52px); letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 18px;
}
.crm-hero__h1 em { color: var(--teal); font-style: normal; }
.crm-hero__sub { font-size: 17px; line-height: 1.65; color: var(--white); max-width: 900px; margin: 0 auto 32px; }
.crm-hero__actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.crm-hero__stage { position: relative; max-width: 1160px; margin: 0 auto; padding: 0 28px 0px; z-index: 1; }
.crm-hero__main {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
  overflow: hidden;
}
.crm-hero__main img { width: 100%; height: auto; display: block; }
.crm-hero__side {
  position: absolute; top: 46%; width: 320px;
  border-radius: 14px; overflow: hidden; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0.35; filter: saturate(0.75);
}
.crm-hero__side--left  { left: -10px;  transform: translateY(-50%) rotate(-5deg); }
.crm-hero__side--right { right: -10px; transform: translateY(-50%) rotate(5deg); }

@media (max-width: 900px) {
  .crm-hero__side { display: none; }
}
@media (max-width: 560px) {
  .crm-hero { padding-top: 72px; }
  .crm-hero__actions { flex-direction: column; }
  .crm-hero__stage { padding-bottom: 56px; }
}

/* ── Video Modal (platform.html Explore the Platform) ── */
.video-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.is-open { display: flex; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(11,19,48,0.82); backdrop-filter: blur(2px); }
.video-modal__box { position: relative; width: 100%; max-width: 960px; z-index: 1; }
.video-modal__frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,0.5); background: #000; }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close {
  position: absolute; top: -44px; right: 0; width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); background: transparent;
  color: #fff; font-size: 18px; cursor: pointer; transition: border-color .18s, background .18s;
}
.video-modal__close:hover { border-color: var(--teal); background: rgba(10,209,145,0.12); color: var(--teal); }
@media (max-width: 640px) {
  .video-modal__close { top: -40px; width: 32px; height: 32px; }
}

/* ── CRM Overview - visual + 2x2 grid layout (platform-sales-crm.html) ── */
.crm-ov2 { padding: 90px 0; overflow: hidden; }
.crm-ov2__inner { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: center; }
.crm-ov2--rev .crm-ov2__inner { grid-template-columns: 1fr 0.85fr; }

.crm-ov2__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.crm-ov2__frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.crm-ov2__frame img { width: 100%; height: auto; display: block; }

.crm-ov2__content .eyebrow { margin-bottom: 16px; }
.crm-ov2__h2 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.14;
  font-size: clamp(28px, 3.2vw, 40px); color: var(--navy); letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.crm-ov2__lead { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 36px; max-width: 460px; }

.crm-ov2__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 28px; }
.crm-ov2__icon {
  width: 36px; height: 36px;
  border-radius: 9px; background: rgba(10,209,145,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--teal);
  margin-bottom: 12px;
}
.crm-ov2__title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.crm-ov2__desc { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .crm-ov2__inner, .crm-ov2--rev .crm-ov2__inner { grid-template-columns: 1fr; gap: 40px; }
  .crm-ov2 { padding: 64px 0; }
  .crm-ov2__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .crm-ov2__grid { grid-template-columns: 1fr; }
  .industry-list { grid-template-columns: 1fr; }
}

/* ── CRM Features - use-case card grid (platform-sales-crm.html) ── */
.crm-uc { padding: 90px 0; background: #f4f6fa; }
.crm-uc__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.crm-uc__eyebrow {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px;
}
.crm-uc__h2 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.15;
  font-size: clamp(28px, 3.4vw, 40px); color: var(--navy); letter-spacing: -0.02em; margin: 0;
}

.crm-uc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.crm-uc__card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.crm-uc__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,42,107,0.1); border-color: rgba(27,42,107,0.15); }
.crm-uc__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(10,209,145,0.1); border: 1px solid rgba(10,209,145,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--teal); margin-bottom: 20px;
}
.crm-uc__title { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.crm-uc__desc { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; flex: 1; }
.crm-uc__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--teal); text-decoration: none; }
.crm-uc__link:hover { color: #08b87d; }
.crm-uc__link i { font-size: 12px; transition: transform .18s; }
.crm-uc__link:hover i { transform: translateX(3px); }

.crm-uc__cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
  .crm-uc__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .crm-uc__grid { grid-template-columns: 1fr; }
  .crm-uc { padding: 64px 0; }
}

/* ══════════════════════════════════════════════════════════
   FAQ PAGE — extends style.css, reuses existing tokens
   (--navy, --navy-dark, --teal, --border, --mist, --muted, --ink)
   ══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.faq-hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
  text-align: center;
}
.faq-hero::before {
  content: '';
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 560px;
  background: radial-gradient(circle, rgba(10,209,145,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.faq-hero__road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: rgba(138,144,153,0.18);
}
.faq-hero__road::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 18px, rgba(255,255,255,0.22) 18px, rgba(255,255,255,0.22) 34px);
  transform: translateY(-50%);
}
.faq-hero__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.faq-hero .eyebrow { color: var(--teal); }
.faq-hero__h1 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.9px; color: var(--white);
  font-size: clamp(32px, 4.2vw, 48px);
  margin-bottom: 14px;
}
.faq-hero__sub {
  font-size: 16px; line-height: 1.7; color: var(--white);
  max-width: 520px; margin: 0 auto 32px;
}

/* search */
.faq-search {
  position: relative; max-width: 460px; margin: 0 auto;
}
.faq-search i {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: rgb(255 255 255 / 80%); font-size: 15px; pointer-events: none;
}
.faq-search input {
  width: 100%; height: 52px; border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white); font-family: var(--font-body); font-size: 16px;
  padding: 0 20px 0 46px;
  transition: border-color .15s, background .15s;
}
.faq-search input::placeholder { color: rgb(255 255 255 / 80%); }
.faq-search input:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,0.09); }

/* ── QUICK CATEGORY NAV ── */
.faq-quicknav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: var(--max); margin: 0 auto; padding: 22px 28px 0;
}
.faq-quicknav__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--white);
  color: var(--body); font-size: 16px; font-weight: 600;
  font-family: var(--font-display); cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.faq-quicknav__btn:hover { border-color: var(--teal); color: var(--navy); background: var(--teal-faint); }
.faq-quicknav__count {
  font-size: 11px; font-weight: 700; color: var(--muted);
  background: var(--mist); border-radius: 100px; padding: 1px 7px;
}

/* ── CATEGORY ROWS ── */
.faq-main { max-width: var(--max); margin: 0 auto; padding: 64px 28px 0; }
.faq-cat { display: grid; grid-template-columns: 300px 1fr; gap: 56px; padding-bottom: 72px; }
.faq-cat + .faq-cat { border-top: 1px solid var(--border); padding-top: 64px; }
.faq-cat__aside { position: sticky; top: 130px; align-self: start; }
.faq-cat__aside .eyebrow { margin-bottom: 10px; }
.faq-cat__title {
  font-family: var(--font-display); font-weight: 800; color: var(--navy);
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; margin-bottom: 12px;
}
.faq-cat__desc { font-size: 16px; line-height: 1.7; color: var(--muted); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

/* item — reuses pr-faq visual language for consistency with pricing page */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: rgba(10,209,145,0.35); }
.faq-item__q {
  width: 100%; background: none; border: none;
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--ink); text-align: left; gap: 16px; transition: background .15s;
}
.faq-item__q:hover { background: var(--mist); }
.faq-item__icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-faint); border: 1px solid rgba(10,209,145,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); transition: transform .22s; font-size: 11px;
}
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__a {
  display: none; padding: 0 22px 20px; font-size: 16px; color: var(--muted);
  line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px;
}
.faq-item.open .faq-item__a { display: block; }
.faq-item--hidden { display: none; }

/* empty state for search */
.faq-empty {
  display: none; text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px;
}
.faq-empty.show { display: block; }
.faq-empty i { font-size: 26px; color: var(--teal); margin-bottom: 12px; display: block; }

/* ── CTA (reuses cmp-cta shell, own buttons) ── */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .faq-cat { grid-template-columns: 1fr; gap: 20px; }
  .faq-cat__aside { position: static; }
  .faq-main { padding-top: 48px; }
}
@media (max-width: 560px) {
  .faq-hero { padding: 56px 0 44px; }
  .faq-quicknav { padding: 18px 16px 0; }
  .faq-main { padding: 40px 16px 0; }
  .faq-cat { padding-bottom: 48px; }
  .faq-cat + .faq-cat { padding-top: 44px; }
}

/* ══════════════════════════════════════════════
   CONTENT HUB (Blogs / Case Studies / Webinars listing)
══════════════════════════════════════════════ */
.hub-hero {
  background: var(--navy-dark); position: relative; overflow: hidden;
  padding: 88px 0 52px; text-align: center;
}
.hub-hero__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--teal);
  background: rgba(10,209,145,0.12); border: 1px solid rgba(10,209,145,0.28);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hub-hero__h1 {
  font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800; color: var(--white); margin: 0 0 14px; letter-spacing: -0.02em;
}
.hub-hero__sub {
  font-size: 16px; line-height: 1.7; color: var(--white);
  max-width: 620px; margin: 0 auto;
}

.hub-section { padding: 64px 0; }
.hub-section__head { max-width: 640px; margin: 0 0 28px; }
.hub-section__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--teal-dim); margin: 0 0 8px;
}
.hub-section__h2 {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800; color: var(--navy); margin: 0 0 8px; letter-spacing: -0.01em;
}
.hub-section__sub { font-size: 16px; line-height: 1.65; color: var(--muted); }

.hub-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin: 0 0 34px;
}
.hub-search { position: relative; flex: 1; min-width: 220px; max-width: 340px; }
.hub-search input {
  width: 100%; padding: 11px 16px 11px 40px; border-radius: 10px;
  border: 1px solid var(--border); font-size: 16px; font-family: var(--font-body);
  background: var(--white); color: var(--body);
}
.hub-search input:focus { outline: none; border-color: var(--teal); }
.hub-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 13px; }
.hub-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.hub-filter-btn {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--white); font-size: 16px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: border-color .18s, color .18s, background .18s; white-space: nowrap;
}
.hub-filter-btn:hover { border-color: var(--teal); color: var(--navy); }
.hub-filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.hub-card {
  display: flex; flex-direction: column; border-radius: 16px; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s cubic-bezier(.4,0,.2,1);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(15,23,42,0.10); }
.hub-card[hidden] { display: none; }
.hub-card__thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.hub-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hub-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.hub-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.hub-card__cat { color: var(--teal-dim); }
.hub-card__date { color: var(--muted); font-weight: 600; }
.hub-card__title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--navy); margin: 0 0 8px; line-height: 1.35;
}
.hub-card__excerpt { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; flex: 1; }
.hub-card__link {
  font-size: 13.5px; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.hub-card__link i { transition: transform .18s; }
.hub-card:hover .hub-card__link i { transform: translateX(3px); }

.hub-empty { display: none; text-align: center; color: var(--muted); font-size: 14px; padding: 48px 0; }

.hub-cta-wrap { background: var(--mist); padding: 72px 0; text-align: center; }
.hub-cta__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--teal-dim); margin: 0 0 10px;
}
.hub-cta__h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; color: var(--navy); margin: 0 0 12px; letter-spacing: -0.01em;
}
.hub-cta__sub { max-width: 560px; margin: 0 auto 28px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hub-cta__btns { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hub-cta__note { width: 100%; font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════════
   SCROLL REVEAL - generic fade/slide-up utility,
   applied via JS to sections without existing
   scroll animations. See script.js.
══════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-up.is-inview { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* Card thumbnail hover zoom - premium touch for card grids that
   don't already animate their thumbnail image. */
.hub-card__thumb img, .blog-card__thumb img, .wb-card__thumb img {
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.hub-card:hover .hub-card__thumb img,
.blog-card:hover .blog-card__thumb img,
.wb-card:hover .wb-card__thumb img { transform: scale(1.06); }

/* Subtle lift on primary/outline buttons - additive to existing
   color transitions, no spacing/layout change. */
.btn-primary { transition: background .18s, transform .18s; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline-light:hover, .btn-outline-dark:hover { transform: translateY(-1px); }

@media (max-width: 640px) {
  .hub-hero { padding: 64px 0 40px; }
  .hub-toolbar { flex-direction: column; align-items: stretch; }
  .hub-search { max-width: none; }
  .hub-section { padding: 48px 0; }
  .hub-cta-wrap { padding: 52px 0; }
}

/* ==========================================================================
   Avanue — SalesIQ site-level overrides
   ==========================================================================
   WHERE THIS GOES: NOT the SalesIQ "Upload Custom CSS" uploader.
   Add this to avanue.ai's own stylesheet (the same place your regular site
   CSS lives), loaded on any page where the SalesIQ embed script runs.

   Why: the window's outer shape/size and the floating launcher button are
   elements Zoho renders directly on your page, outside the chat window's
   own internal stylesheet — so CSS for them has to live on your site, not
   in the upload. Zoho's own examples confirm this: they write every one of
   these selectors prefixed with "body", meaning "your site's CSS".

   Class names to double check: Zoho doesn't publish these as a stable API,
   so if nothing below visibly changes, right-click the launcher bubble or
   the window edge > Inspect, and confirm the class matches what's here —
   Zoho has changed these before between versions.
   ========================================================================== */

:root {
  --av-ink:  #111D4A;
  --av-teal: #0AD191;
}

/* ---- Chat window: rounded corners + soft shadow ---- */
body .zsiq-newtheme.siqembed {
  border-radius: 14px !important;
  overflow: hidden !important; /* needed for the radius to actually clip the header/footer */
  box-shadow: 0 16px 48px rgba(17, 29, 74, 0.18) !important;
}

/* ---- Floating launcher button color ---- */
body .zsiq_flt_rel {
  background-color: var(--av-ink) !important;
}

/* ---- Floating launcher position (optional — adjust or delete) ---- */
body .zsiq_floatmain {
  right: 24px !important;
  bottom: 24px !important;
}

/* ---- Consent banner (gates RB2B) ---- */
.consent-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4999;
  background: rgba(5, 10, 25, 0.62);
  backdrop-filter: blur(2px);
}
.consent-banner {
  position: fixed;
  left: 20px; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 5000;
  max-width: 820px;
  margin: 0 auto;
  background: var(--navy-dark);
  color: rgb(255 255 255 / 90%);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  flex-wrap: wrap;
}
.consent-banner__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.consent-banner__text a { color: var(--teal); text-decoration: underline; }
.consent-banner__btns { display: flex; gap: 14px; justify-content: flex-end; }
.consent-banner__btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 9px;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  transition: background .18s, border-color .18s;
}
/* Accept and Reject are deliberately styled identically (same size,
   weight, and color) so neither is visually pushed as the "default"
   choice. */
.consent-banner__btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }
@media (max-width: 640px) {
  .consent-banner { padding: 24px; }
  .consent-banner__btn { flex: 1; }
}

/* Hide only Zoho SalesIQ's own cookie-consent banner UI.
   SalesIQ chat itself, its script, and its cookies are untouched. */
#consent_container.gdbr-banner-cont { display: none !important; }