
/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #004e93;
  --brand-deep: #00386b;
  --brand-light: #0a6ab5;
  --brand-navy: #062144;
  --accent: #FFCC33;
  --accent-soft: #ffe79a;
  --accent-deep: #e5a800;
  --ink: #0b1220;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e5e9f2;
  --bg-soft: #f7f9fc;
  --green: #10b981;
  --red: #ef4444;
  --orange-cta: #ff7a3c;
  --orange-cta-deep: #f0612a;
  --shadow-sm: 0 1px 2px rgba(13,21,45,.06), 0 1px 3px rgba(13,21,45,.08);
  --shadow-md: 0 10px 24px -8px rgba(0,78,147,.18), 0 4px 12px rgba(13,21,45,.06);
  --shadow-lg: 0 30px 60px -20px rgba(0,78,147,.28), 0 12px 30px -12px rgba(13,21,45,.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink); background: #fff;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER CHROME ============ */
/* The site-wide header (top utility strip + nav + mega menus) is owned by the
   LOCKED chrome — CHROME_HEADER_STYLE/CHROME_HEADER from chrome-data.ts, the
   same source every page renders. The old per-homepage header CSS that used to
   live here (.topstrip / nav.topnav / .nav-item / .mega / .mega-grid /
   .mega-col / .nav-actions) was a stale DUPLICATE: it shipped only on "/", so
   its rules (e.g. `.mega{min-width:720px;padding:28px 32px}`,
   `.mega-col a{display:block;padding:7px 0}`) collided with the locked header
   and made the homepage menu render differently from every other page. Removed
   so the header is byte-for-byte identical site-wide. The general `.btn*`
   button rules below stay — the hero CTAs depend on them. */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: all .2s cubic-bezier(.4,0,.2,1); white-space: nowrap;
}
.btn-cta {
  background: var(--accent); color: #000; padding: 12px 26px;
  box-shadow: 0 6px 16px -4px rgba(229,168,0,.5);
}
.btn-cta:hover { transform: translateY(-1px); background: #e5b800; box-shadow: 0 10px 22px -4px rgba(229,168,0,.65); }
.btn-yellow {
  background: var(--accent); color: #1a1a1a;
  box-shadow: 0 4px 0 rgba(179,131,0,.4), 0 8px 16px -4px rgba(255,204,51,.4);
}
.btn-yellow:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(179,131,0,.4), 0 12px 22px -4px rgba(255,204,51,.55); }
.btn-ghost-white { color: white; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.btn-lg { padding: 15px 28px; font-size: 15.5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(1100px 520px at 85% 0%, rgba(255,204,51,.22), transparent 60%),
    radial-gradient(900px 600px at 10% 100%, rgba(10,106,181,.5), transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  
  
  
  
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 7px; border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  font-size: 13px; font-weight: 500; color: white;
  margin-bottom: 22px;
  animation: slideUpNF .6s ease-out both;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center; color: var(--brand);
  font-size: 11px; font-weight: 800;
  box-shadow: 0 0 0 4px rgba(255,204,51,.35);
  animation: pulse-brand 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.3); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,.15); }
}
@keyframes pulse-brand {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,204,51,.35); }
  50% { box-shadow: 0 0 0 8px rgba(255,204,51,.18); }
}
/* Above-the-fold entrance: transform-only (NO opacity). An opacity 0->1 fade on
   the hero / LCP element makes Lighthouse defer "contentful" paint and drifts LCP
   to page-end (observed: LCP recorded at 11.9s though the hero paints by ~2s).
   Transform keeps the gentle slide while the element stays fully visible from the
   first paint, so LCP locks early — same approach as the RiskWatch hero. */
@keyframes slideUpNF { from { transform: translateY(16px); } to { transform: translateY(0); } }

.hero h1 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.02; letter-spacing: -0.04em; font-weight: 800;
  margin-bottom: 22px; color: white;
  animation: slideUpNF .7s ease-out .1s both;
}
.hero h1 .strike {
  position: relative; display: inline-block; color: rgba(255,255,255,.55);
}
.hero h1 .strike::after {
  content: ""; position: absolute; left: -4px; right: -4px; top: 50%;
  height: 5px; background: var(--red); transform: rotate(-3deg);
  box-shadow: 0 2px 12px rgba(239,68,68,.4);
}
.hero h1 .highlight {
  position: relative; display: inline-block; color: var(--accent);
  white-space: nowrap;
}
.hero h1 .highlight::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 4px; height: 14px;
  background: var(--accent); z-index: -1; opacity: .22;
  transform: skew(-8deg);
}
.hero .sub {
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.55;
  color: rgba(255,255,255,.82); margin-bottom: 30px; max-width: 560px;
  animation: slideUpNF .7s ease-out .2s both;
}

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
  animation: slideUpNF .7s ease-out .3s both;
}

.hero-miniproof {
  display: flex; gap: 14px; align-items: center;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  animation: slideUpNF .7s ease-out .4s both;
}
.hero-miniproof .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.hero-miniproof-divider { width: 1px; height: 22px; background: rgba(255,255,255,.15); }
.hero-miniproof-stat { font-size: 12.5px; color: rgba(255,255,255,.8); }
.hero-miniproof-stat b { color: white; font-weight: 700; }

/* Hero Product Mockup */
.hero-visual { position: relative; animation: slideUpNF .8s ease-out .3s both; }
.hero-mockup {
  position: relative;
  background: white; border-radius: 18px;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.hero-mockup:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-6px); }
.mock-top {
  background: #f4f6fa; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; } .mock-dot.y { background: #ffbd2e; } .mock-dot.g { background: #28ca42; }
.mock-url {
  margin-left: 14px; background: white; padding: 4px 12px; border-radius: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted);
  border: 1px solid var(--line);
}
.mock-body { padding: 22px; background: linear-gradient(180deg, #fcfdff 0%, #f6f9fd 100%); }
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mock-title { font-weight: 800; font-size: 15px; color: var(--ink); letter-spacing: -0.015em; }
.mock-pill {
  background: rgba(16,185,129,.1); color: #047857;
  font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 999px;
  display: inline-flex; gap: 5px; align-items: center;
}
.mock-pill .d { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 50% { opacity: .4; } }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.mk-kpi { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.mk-kpi .lbl { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.mk-kpi .val { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-top: 2px; }
.mk-kpi .delta { font-size: 10px; font-weight: 600; margin-top: 3px; }
.mk-kpi .delta.u { color: var(--green); }
.mk-kpi .delta.d { color: var(--red); }

.mock-chart {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; height: 190px; position: relative; overflow: hidden;
}
.mock-chart .ct { font-size: 11px; color: var(--ink-2); font-weight: 600; margin-bottom: 8px; }
.mock-chart svg.chartsvg { width: 100%; height: calc(100% - 24px); }
.cl { stroke: var(--brand); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 500; stroke-dashoffset: 500; animation: drawLine 2.2s ease-out .8s forwards; }
.cl2 { stroke: var(--accent); stroke-width: 2; fill: none; stroke-dasharray: 4 4; stroke-dashoffset: 500; animation: drawLine 2.2s ease-out 1.2s forwards; }
.ca { fill: url(#chartAreaGrad); opacity: 0; animation: fadeIn .6s ease-out 2s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

/* Floating badges around mockup */
.floater {
  position: absolute; background: white; border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-md);
  display: flex; gap: 10px; align-items: center; z-index: 2;
}
.floater .ic {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
}
.floater .ft { font-size: 11.5px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.floater .fs { font-size: 10px; color: var(--muted); margin-top: 1px; }
.fl-1 { top: -20px; left: -40px; animation: floatY 3.5s ease-in-out infinite, fadeSlideIn .6s ease-out 1.3s both; }
.fl-2 { bottom: 18%; right: -48px; animation: floatY 4s ease-in-out infinite .5s, fadeSlideIn .6s ease-out 1.5s both; }

@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-mockup { max-width: 540px; margin: 0 auto; }
}

/* ============ TRUST BAND (Platform Ratings + G2 Awards) ============ */
.trust-band {
  padding: 70px 0 60px;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(255,204,51,.08), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, white 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.trust-head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.trust-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 999px;
  background: rgba(0,78,147,.08);
  color: var(--brand); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.trust-kicker .tk-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.22);
  animation: pulse 1.8s infinite;
}
.trust-head h2 {
  font-size: clamp(20px, 2.4vw, 30px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--ink);
}
.trust-head h2 em {
  font-style: normal; color: var(--brand); position: relative; display: inline-block;
}
.trust-head h2 em::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 2px; height: 10px;
  background: var(--accent); z-index: -1; opacity: .5; transform: skew(-8deg);
}
.trust-subh {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 500;
  color: var(--ink-2); letter-spacing: -0.01em;
  display: inline-block; margin-top: 4px;
}

/* Platform rating cards */
.trust-platforms {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.trust-p {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 22px;
  background: white; border: 1px solid var(--line);
  border-radius: 16px; transition: all .3s;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; cursor: pointer;
}
.trust-p::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.trust-p:hover {
  transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(0,78,147,.18);
  border-color: transparent;
}
.trust-p:hover::before { transform: scaleX(1); }

.tp-logo {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
  flex-shrink: 0; font-family: Inter, sans-serif;
}
.tp-logo.tp-g2 { background: #FF492C; color: white; }
.tp-logo.tp-g2 span { font-size: 11px; vertical-align: super; margin-left: -2px; }
.tp-logo.tp-cap { background: #FF8200; color: white; font-size: 15px; }
.tp-logo.tp-ss { background: #0060EE; color: white; font-size: 16px; }
.tp-logo.tp-gg {
  background: white;
  color: #4285F4; font-size: 22px;
  border: 2px solid #e5e9f2;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
  position: relative;
}
.tp-logo.tp-gg::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  background: conic-gradient(from 0deg, #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
  opacity: 0; transition: opacity .3s;
}
.trust-p:hover .tp-logo.tp-gg::before { opacity: 0; }

.tp-info { flex: 1; min-width: 0; }
.tp-rating-row {
  display: flex; align-items: baseline; gap: 4px; line-height: 1;
}
.tp-rating {
  font-size: 28px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.tp-out { font-size: 13px; color: var(--muted); font-weight: 600; }
.tp-stars {
  color: var(--accent); font-size: 13px;
  letter-spacing: 2px; margin-top: 3px;
  text-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.tp-meta { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.tp-meta b { color: var(--brand); font-weight: 700; }

@media (max-width: 900px) { .trust-platforms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .trust-platforms { grid-template-columns: 1fr; } }

/* G2 Awards strip */
.trust-awards {
  padding-top: 36px;
  border-top: 1px dashed var(--line);
  text-align: center;
}
.trust-awards-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 24px;
}
.trust-awards-label svg { color: var(--accent); }
.trust-awards-row {
  display: flex; gap: 22px; justify-content: center;
  flex-wrap: wrap; align-items: flex-end;
}
.trust-badge-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .25s;
}
.trust-badge-item:hover { transform: translateY(-4px); }
.trust-badge-item img { height: 78px; width: auto; }
.trust-badge-item figcaption {
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  letter-spacing: .02em; text-align: center;
}

@media (max-width: 560px) {
  .trust-badge-item img { height: 64px; }
  .trust-awards-row { gap: 14px; }
}

/* ============ CLIENT LOGOS MARQUEE ============ */
.clients-band {
  padding: 56px 0 64px;
  background:
    radial-gradient(800px 300px at 90% 50%, rgba(255,204,51,.08), transparent 60%),
    radial-gradient(600px 300px at 10% 50%, rgba(0,78,147,.04), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fc 100%);
}
.clients-head {
  text-align: center; margin-bottom: 32px;
  font-size: 13px; font-weight: 700; color: var(--muted);
  letter-spacing: .14em; text-transform: uppercase;
}
.clients-head b { color: var(--brand); font-weight: 800; font-size: 14px; }
.clients-head .count { color: var(--brand); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }

/* Marquee scrolling logos */
.marquee {
  overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: scrollMarquee 35s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cbrand {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 22px; color: #8994a3;
  letter-spacing: -0.02em; white-space: nowrap;
  padding: 14px 20px; border-radius: 10px;
  transition: all .25s; flex-shrink: 0;
}
.cbrand:hover { color: var(--brand); background: white; box-shadow: var(--shadow-sm); }

.clogo {
  height: 70px; width: auto; max-width: 170px;
  object-fit: contain; flex-shrink: 0;
  padding: 12px 20px;
  background: white; border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px -2px rgba(13,21,45,.06);
  transition: all .3s ease;
}
.clogo:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px -6px rgba(0,78,147,.25);
  border-color: var(--accent);
}

/* ============ SECTION SHELL ============ */
.section { padding: 72px 0; position: relative; overflow: hidden; }
.section.light {
  background:
    radial-gradient(1000px 500px at 85% 5%, rgba(255,204,51,.1), transparent 60%),
    radial-gradient(900px 500px at 15% 95%, rgba(0,78,147,.06), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #f2f6fc 100%);
}
.section.blue {
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(255,204,51,.15), transparent 60%),
    radial-gradient(900px 600px at 10% 100%, rgba(10,106,181,.5), transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
}
.section.blue::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.section.blue .container { position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 750px; margin: 0 auto 40px; }
.kicker {
  display: inline-block; padding: 6px 14px; background: rgba(0,78,147,.08);
  color: var(--brand); border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.section.blue .kicker { background: rgba(255,204,51,.15); color: var(--accent); }
.section-head h2 {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.08; color: var(--ink); margin-bottom: 18px;
}
.section.blue .section-head h2 { color: white; }
.section-head h2 em { font-style: normal; color: var(--brand); position: relative; display: inline-block; }
.section.blue .section-head h2 em { color: var(--accent); }
.section-head h2 em::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 2px; height: 10px;
  background: var(--accent); z-index: -1; opacity: .5; transform: skew(-8deg);
}
.section.blue .section-head h2 em::after { opacity: .25; }
.section-head .lead { font-size: 17px; color: var(--ink-2); line-height: 1.6; }
.section.blue .section-head .lead { color: rgba(255,255,255,.78); }

/* ============ COST BAND ============ */
.cost-band {
  padding: 80px 0; background: var(--brand-navy); color: white; position: relative; overflow: hidden;
}
.cost-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(239,68,68,.14), transparent 60%),
    radial-gradient(700px 400px at 85% 50%, rgba(255,204,51,.1), transparent 60%);
  pointer-events: none;
}
.cost-band .container { position: relative; z-index: 1; }
.cost-head { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.cost-head .kicker {
  background: rgba(239,68,68,.12); color: #ff8b85;
  display: inline-flex; align-items: center; gap: 6px;
}
.cost-head .kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); animation: pulse 1.8s infinite;
}
.cost-head h2 {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15; color: white; margin-top: 14px;
}
.cost-head h2 b { color: var(--accent); font-weight: 800; }
.cost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cost-card {
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; text-align: center; position: relative; overflow: hidden;
  transition: all .3s;
}
.cost-card:hover { transform: translateY(-4px); border-color: rgba(239,68,68,.3); }
.cost-card .num {
  font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; color: var(--red);
  letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums;
}
.cost-card .label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 10px; line-height: 1.45; }
@media (max-width: 800px) { .cost-grid { grid-template-columns: 1fr 1fr; } }

/* ============ MODULE TABS (Interactive) ============ */
.modules-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.mod-tab {
  padding: 11px 20px; border-radius: 999px;
  background: white; border: 1.5px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: all .25s;
  display: inline-flex; align-items: center; gap: 7px;
}
.mod-tab:hover { border-color: var(--brand-light); color: var(--brand); }
.mod-tab.active {
  background: var(--brand); color: white; border-color: var(--brand);
  box-shadow: 0 6px 18px -4px rgba(0,78,147,.35);
}
.mod-tab svg { width: 14px; height: 14px; flex-shrink: 0; }

.mod-panels { position: relative; min-height: 460px; }
.mod-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center;
  opacity: 0; transform: translateY(10px); transition: all .4s;
}
.mod-panel.active { display: grid; opacity: 1; transform: translateY(0); animation: panelIn .5s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.mod-copy h3 {
  font-size: clamp(18px, 2vw, 24px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; color: var(--ink);
}
.mod-copy h3 em { font-style: normal; color: var(--brand); }
.mod-copy p {
  font-size: 16px; color: var(--ink-2); line-height: 1.6; margin-bottom: 22px;
}
.mod-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.mod-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.mod-features .t {
  width: 22px; height: 22px; border-radius: 6px; background: var(--brand); color: white;
  display: grid; place-items: center; flex-shrink: 0; font-size: 12px; font-weight: 800;
  box-shadow: 0 4px 8px -2px rgba(0,78,147,.3);
}
.mod-stats { display: flex; gap: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.mod-stats .big { font-size: 24px; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; line-height: 1; }
.mod-stats .small { font-size: 12px; color: var(--muted); margin-top: 4px; }

.mchip-label{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--brand);margin-bottom:12px}
.mchip-label .mcl-dot{width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 3px rgba(255,204,51,.28)}
.module-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 26px;
}
.mchip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: white; border: 1.5px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  transition: all .25s;
  font-family: inherit; cursor: pointer;
}
.mchip::before {
  content: "»"; color: var(--brand); font-weight: 800;
}
.mchip:hover {
  background: #f3f6fb; color: var(--brand);
  border-color: var(--brand-light);
  transform: translateY(-1px);
}
.mchip.active {
  background: var(--brand); color: white; border-color: var(--brand);
  box-shadow: 0 6px 14px -3px rgba(0,78,147,.4);
  transform: translateY(-1px);
}
.mchip.active::before { color: var(--accent); }

/* Pillar section eyebrow — makes Modules / Testimonials read as highlighted pillars */
.kicker-pillar{display:inline-flex;align-items:center;gap:8px;padding:7px 16px 7px 12px;font-size:12px;font-weight:800;background:linear-gradient(90deg,rgba(0,78,147,.1),rgba(255,204,51,.16));border:1px solid rgba(0,78,147,.14)}
.kicker-pillar::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 3px rgba(255,204,51,.28)}
.vtesti-section .kicker-pillar{background:linear-gradient(90deg,rgba(255,204,51,.18),rgba(0,78,147,.08))}

/* Visual switcher */
.mvis { display: none; animation: mvisIn .4s ease-out; }
.mvis.active { display: block; }
@keyframes mvisIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Employee hub visual */
.eh-header {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.eh-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: grid; place-items: center; color: white; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.eh-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.eh-role { font-size: 11.5px; color: var(--muted); }
.eh-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.eh-tile {
  padding: 12px 14px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 10px;
}
.eh-tile .tl { font-size: 11px; color: var(--muted); font-weight: 600; }
.eh-tile .tv { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-top: 2px; }
.eh-tile .tt { font-size: 10.5px; color: var(--muted); margin-top: 3px; }

.mod-visual {
  background: white; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.mod-vis-head {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: #fbfcff;
}
.mod-vis-head h4 { font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -0.005em; }
.mod-vis-body { padding: 20px; min-height: 340px; }

/* Payroll visual */
.flow-row { display: flex; align-items: center; gap: 11px; padding: 12px 14px; background: var(--bg-soft); border-radius: 10px; margin-bottom: 8px; transition: all .3s; }
.flow-row.active { background: linear-gradient(90deg, rgba(255,204,51,.15), rgba(0,78,147,.06)); border-left: 3px solid var(--accent); padding-left: 11px; }
.flow-icon { width: 32px; height: 32px; border-radius: 8px; background: white; display: grid; place-items: center; border: 1px solid var(--line); font-size: 14px; flex-shrink: 0; }
.flow-text { flex: 1; font-size: 13px; color: var(--ink); font-weight: 500; }
.flow-time { font-size: 11px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.flow-check { color: var(--green); font-size: 16px; font-weight: 700; }

/* Payroll summary compact stats row */
.pay-summary {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 12px; color: white;
  position: relative; overflow: hidden;
}
.pay-summary::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,204,51,.2), transparent 70%);
  pointer-events: none;
}
.pay-sum-item { flex: 1; position: relative; z-index: 1; }
.pay-sum-lbl { font-size: 10.5px; opacity: .85; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.pay-sum-val { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-top: 2px; line-height: 1.15; }
.pay-sum-tr { font-size: 10.5px; color: var(--accent); font-weight: 700; margin-top: 2px; }
.pay-sum-divider { width: 1px; height: 38px; background: rgba(255,255,255,.2); flex-shrink: 0; position: relative; z-index: 1; }


/* Compliance visual */
.comp-top { display: flex; gap: 12px; margin-bottom: 16px; }
.comp-card { flex: 1; padding: 14px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line); }
.comp-card-title { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.comp-card-val { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-top: 2px; }
.comp-card.accent { background: linear-gradient(135deg, var(--brand), var(--brand-light)); color: white; border: none; }
.comp-card.accent .comp-card-title, .comp-card.accent .comp-card-val { color: white; }
.comp-list { display: flex; flex-direction: column; gap: 8px; }
.comp-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; }
.comp-status { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; color: white; font-size: 11px; }
.comp-status.ok { background: var(--green); }
.comp-status.pend { background: var(--accent); color: #1a1a1a; }
.comp-item-name { flex: 1; color: var(--ink); font-weight: 500; }
.comp-item-date { font-size: 11px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* Performance visual */
.perf-goals { display: flex; flex-direction: column; gap: 10px; }

/* 360° Feedback summary card */
.perf-360-card {
  padding: 16px; border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(0,78,147,.03), rgba(255,204,51,.04));
}
.perf-360-head {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.perf-360-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white; display: grid; place-items: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.perf-360-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.perf-360-role { font-size: 11px; color: var(--muted); }
.perf-360-rating {
  font-size: 22px; font-weight: 800; color: var(--brand);
  letter-spacing: -0.02em; line-height: 1;
}
.perf-360-rating span { font-size: 13px; color: var(--muted); font-weight: 500; }
.perf-360-bars { display: flex; flex-direction: column; gap: 7px; }
.p3-bar {
  display: grid; grid-template-columns: 68px 1fr 24px; gap: 10px;
  align-items: center; font-size: 11.5px;
}
.p3-bar span { color: var(--ink-2); font-weight: 600; }
.p3-bar b { color: var(--brand); font-weight: 800; text-align: right; }
.p3b { height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.p3f { height: 100%; border-radius: 999px; transform-origin: left; animation: fillUp 1s ease-out both; }

.perf-goals-compact { display: flex; flex-direction: column; gap: 8px; }
.perf-goal-mini { padding: 10px 12px; background: var(--bg-soft); border-radius: 8px; }
.pg-lbl { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink); margin-bottom: 5px; font-weight: 600; }

.perf-goal {
  padding: 14px; border: 1px solid var(--line); border-radius: 10px;
  display: flex; gap: 12px; align-items: center;
}
.perf-bar-wrap { flex: 1; }
.perf-goal-t { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.perf-bar { height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; position: relative; }
.perf-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-light)); transform-origin: left; animation: fillUp 1.2s ease-out both; }
@keyframes fillUp { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.perf-pct { font-size: 14px; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; min-width: 46px; text-align: right; }

/* Hiring visual */
.ats-candidates { display: flex; flex-direction: column; gap: 10px; }
.ats-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: var(--bg-soft); border-radius: 10px; }
.ats-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-light)); display: grid; place-items: center; color: white; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.ats-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.ats-role { font-size: 11px; color: var(--muted); }
.ats-score { margin-left: auto; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.ats-score.high { background: rgba(16,185,129,.12); color: var(--green); }
.ats-score.med { background: rgba(255,204,51,.2); color: #a87800; }

/* Experience visual */
.ee-grid-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ee-mock-big { grid-column: span 2; background: linear-gradient(135deg, var(--brand), var(--brand-light)); color: white; border-radius: 12px; padding: 20px; }
.ee-mock-big .lbl { font-size: 11px; opacity: .85; }
.ee-mock-big .score { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 4px; }
.ee-mock-big .bar { height: 6px; background: rgba(255,255,255,.25); border-radius: 999px; margin-top: 12px; overflow: hidden; }
.ee-mock-big .bfill { height: 100%; background: var(--accent); width: 87%; border-radius: 999px; animation: fillUp 1.4s ease-out both; transform-origin: left; }
.ee-tile-sm { padding: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; }
.ee-tile-sm .tl { font-size: 11px; color: var(--muted); font-weight: 600; }
.ee-tile-sm .tv { font-size: 20px; font-weight: 800; color: var(--brand); margin-top: 2px; letter-spacing: -0.02em; }
.ee-tile-sm .tt { font-size: 11px; color: var(--green); margin-top: 2px; font-weight: 600; }

/* AI visual */
.ai-insight-card {
  padding: 16px; background: linear-gradient(135deg, #fffbe6, #fff);
  border: 1px solid var(--accent-soft); border-radius: 12px;
  display: flex; gap: 12px; margin-bottom: 12px;
}

/* === Workplace Culture / Winning Workplaces styles === */
.iith-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,78,147,.1), rgba(255,204,51,.12));
  border: 1px solid rgba(0,78,147,.15);
  color: var(--brand); font-size: 11.5px; font-weight: 700;
  letter-spacing: .01em; margin-bottom: 14px;
}
.iith-badge svg { color: var(--brand); }

.wb-quotients {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(0,78,147,.04), rgba(255,204,51,.06));
  border: 1px dashed rgba(0,78,147,.15);
  border-radius: 12px;
}
.wb-q {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 10px 4px 4px; background: white;
  border-radius: 999px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--ink);
}
.wb-q-ico {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px;
}

/* Winning Workplaces visual score card */
.ww-score-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white; border-radius: 14px; margin-bottom: 16px;
  position: relative; overflow: hidden;
}
.ww-score-card::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,204,51,.25), transparent 70%);
  pointer-events: none;
}
.ww-score-left { flex: 1; position: relative; z-index: 1; }
.ww-score-lbl { font-size: 11px; opacity: .85; font-weight: 600; }
.ww-score-val {
  font-size: 36px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; margin-top: 2px;
}
.ww-score-out { font-size: 15px; opacity: .7; font-weight: 500; margin-left: 2px; }
.ww-score-meta { margin-top: 10px; }
.ww-cert {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--accent); color: #1a1a1a;
  font-size: 10px; font-weight: 800; letter-spacing: .02em;
}
.ww-cert svg { color: #1a1a1a; }
.ww-score-right { position: relative; z-index: 1; }
@keyframes dashFill { from { stroke-dashoffset: 213.6; } }

.ww-quot-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
}
.ww-quot-row {
  display: grid; grid-template-columns: 92px 1fr 34px;
  gap: 12px; align-items: center;
}
.ww-quot-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.ww-quot-bar {
  height: 8px; background: var(--bg-soft);
  border-radius: 999px; overflow: hidden;
}
.ww-quot-fill {
  height: 100%; border-radius: 999px;
  transform-origin: left; animation: fillUp 1.2s cubic-bezier(.4,0,.2,1) both;
}
.ww-quot-val {
  font-size: 13px; font-weight: 800; color: var(--brand);
  font-variant-numeric: tabular-nums; text-align: right;
}

.ww-channels {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px; background: var(--bg-soft);
  border-radius: 8px; border: 1px dashed var(--line);
  font-size: 11.5px; color: var(--ink-2); font-weight: 600;
  flex-wrap: wrap;
}

/* ============ PER-MODULE MINI VISUALS ============ */

/* Profile card (Employee Management) */
.mv-profile-head {
  display: flex; gap: 12px; align-items: center;
  padding: 14px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white; border-radius: 12px; position: relative; overflow: hidden;
}
.mv-profile-head::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,204,51,.22), transparent 70%);
}
.mv-profile-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.25); color: white;
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,.5); flex-shrink: 0;
  position: relative; z-index: 1;
}
.mv-profile-info { flex: 1; position: relative; z-index: 1; }
.mv-profile-info .n { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.mv-profile-info .r { font-size: 11.5px; opacity: .85; }
.mv-pro-tag {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 999px;
  background: var(--accent); color: #1a1a1a;
}
.mv-profile-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mv-prof-field {
  padding: 9px 11px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 8px;
}
.mv-prof-field .k { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.mv-prof-field .v { font-size: 12.5px; color: var(--ink); font-weight: 600; margin-top: 2px; }

/* Attendance weekly grid */
.mv-att-week {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-bottom: 12px;
}
.mv-att-day {
  padding: 10px 4px; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 8px;
}
.mv-att-day.on { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.3); }
.mv-att-day.late { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.3); }
.mv-att-day.off { opacity: .5; }
.mv-att-day .dy { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.mv-att-day .tm { font-size: 10.5px; font-weight: 700; color: var(--ink); margin-top: 4px; font-family: 'JetBrains Mono', monospace; }
.mv-att-day .ic { font-size: 12px; margin-top: 2px; }
.mv-att-meta {
  display: flex; gap: 10px; padding: 10px 12px; background: var(--bg-soft);
  border: 1px dashed var(--line); border-radius: 8px; font-size: 11.5px; color: var(--ink-2);
  align-items: center; flex-wrap: wrap;
}
.mv-att-meta b { color: var(--brand); font-weight: 800; }
.mv-att-chip { padding: 3px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 700; }
.mv-att-chip.g { background: rgba(16,185,129,.12); color: var(--green); }

/* Leave management */
.mv-leave-bal {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 12px;
}
.mv-leave-card {
  padding: 12px; background: linear-gradient(180deg, #fbfcff, var(--bg-soft));
  border: 1px solid var(--line); border-radius: 10px; text-align: center;
}
.mv-leave-card .tp { font-size: 10.5px; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.mv-leave-card .vl { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin: 4px 0 2px; }
.mv-leave-card .sb { font-size: 10px; color: var(--muted); }
.mv-leave-card.cl .vl { color: var(--brand); }
.mv-leave-card.sl .vl { color: var(--green); }
.mv-leave-card.el .vl { color: #a16207; }
.mv-leave-req {
  padding: 11px 13px; background: var(--bg-soft);
  border-left: 3px solid var(--accent); border-radius: 8px;
  margin-bottom: 8px; font-size: 12px; display: flex; justify-content: space-between; align-items: center;
}
.mv-leave-req .rt { color: var(--ink); font-weight: 600; }
.mv-leave-req .rd { font-size: 10.5px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.mv-leave-req .rs { padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 800; }
.mv-leave-req .rs.ap { background: rgba(16,185,129,.12); color: var(--green); }
.mv-leave-req .rs.pn { background: rgba(255,204,51,.2); color: #a87800; }

/* Claims list */
.mv-claim {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px;
  background: var(--bg-soft); border-radius: 10px; margin-bottom: 8px;
  border: 1px solid var(--line);
}
.mv-claim-ico { width: 32px; height: 32px; border-radius: 8px; background: white; display: grid; place-items: center; border: 1px solid var(--line); font-size: 14px; flex-shrink: 0; }
.mv-claim-info { flex: 1; }
.mv-claim-t { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.mv-claim-s { font-size: 10.5px; color: var(--muted); }
.mv-claim-amt { font-size: 14px; font-weight: 800; color: var(--brand); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.mv-claim-st { font-size: 9.5px; font-weight: 800; padding: 3px 8px; border-radius: 999px; margin-left: 6px; }
.mv-claim-st.ap { background: rgba(16,185,129,.12); color: var(--green); }
.mv-claim-st.pn { background: rgba(255,204,51,.2); color: #a87800; }

/* Loans */
.mv-loan-card {
  padding: 18px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand));
  color: white; border-radius: 12px; position: relative; overflow: hidden;
}
.mv-loan-card::before {
  content: ""; position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,204,51,.22), transparent 70%);
}
.mv-loan-card .lbl { font-size: 10.5px; opacity: .8; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.mv-loan-card .amt { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-top: 3px; position: relative; z-index: 1; }
.mv-loan-card .meta { display: flex; gap: 16px; margin-top: 12px; font-size: 11px; opacity: .85; }
.mv-loan-emi {
  padding: 10px 13px; background: var(--bg-soft);
  border-radius: 8px; margin-bottom: 6px; border: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}
.mv-loan-emi .e-l { font-weight: 600; color: var(--ink); }
.mv-loan-emi .e-d { color: var(--muted); font-size: 10.5px; font-family: 'JetBrains Mono', monospace; }
.mv-loan-emi .e-a { font-weight: 800; color: var(--brand); }
.mv-loan-emi.paid .e-a { color: var(--green); }

/* Timesheets */
.mv-ts-row {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 10px;
  padding: 10px 12px; background: var(--bg-soft);
  border-radius: 8px; margin-bottom: 6px; align-items: center;
  border: 1px solid var(--line);
}
.mv-ts-row .dt { font-size: 10.5px; color: var(--muted); font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.mv-ts-row .pj { font-size: 12.5px; color: var(--ink); font-weight: 600; }
.mv-ts-row .ts-tag { font-size: 9.5px; color: var(--brand); font-weight: 700; background: rgba(0,78,147,.08); padding: 2px 7px; border-radius: 999px; }
.mv-ts-row .hrs { font-size: 13px; color: var(--brand); font-weight: 800; font-variant-numeric: tabular-nums; }

/* Phone mockup (ESS) */
.mv-phone-wrap { display: flex; justify-content: center; padding: 10px 0; }
.mv-phone {
  width: 200px; padding: 8px; background: #1a1a1a; border-radius: 26px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.3);
}
.mv-phone-screen { background: white; border-radius: 20px; padding: 16px 14px; }
.mv-phone-nth {
  font-size: 10px; color: var(--muted); text-align: center;
  margin-bottom: 10px; letter-spacing: .2em;
}
.mv-phone-g { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mv-phone-tile {
  padding: 12px 6px; background: linear-gradient(135deg, #fbfcff, var(--bg-soft));
  border: 1px solid var(--line); border-radius: 11px; text-align: center;
}
.mv-phone-tile .ic { font-size: 18px; margin-bottom: 4px; }
.mv-phone-tile .lbl { font-size: 9.5px; color: var(--ink); font-weight: 700; }

/* Payroll Outsourcing service card */
.mv-serv-card {
  padding: 20px; border-radius: 12px; margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0,78,147,.06), rgba(255,204,51,.08));
  border: 1px solid var(--line);
}
.mv-serv-head { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.mv-serv-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white; display: grid; place-items: center;
}
.mv-serv-t { font-size: 14px; font-weight: 800; color: var(--ink); }
.mv-serv-s { font-size: 11px; color: var(--muted); }
.mv-serv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mv-serv-st { text-align: center; padding: 10px; background: white; border-radius: 8px; border: 1px solid var(--line); }
.mv-serv-st .v { font-size: 16px; font-weight: 800; color: var(--brand); letter-spacing: -0.01em; }
.mv-serv-st .l { font-size: 9.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.mv-serv-sla {
  margin-top: 12px; padding: 10px 12px; background: white;
  border-radius: 8px; border-left: 3px solid var(--green);
  font-size: 11.5px; color: var(--ink-2);
}
.mv-serv-sla b { color: var(--green); }

/* 9-box talent matrix */
.mv-9box {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin-bottom: 10px; padding: 10px;
  background: linear-gradient(135deg, var(--bg-soft), white);
  border-radius: 10px;
}
.mv-9box-cell {
  aspect-ratio: 1.6; border-radius: 6px;
  padding: 8px 6px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,.95);
  font-weight: 700; position: relative;
}
.mv-9box-cell .ct {
  font-size: 14px; font-weight: 800; line-height: 1;
  align-self: flex-end; font-variant-numeric: tabular-nums;
}
.mv-9box-cell .lab { font-size: 9px; font-weight: 700; opacity: .92; line-height: 1.2; }
.mv-9box-axis {
  display: flex; justify-content: space-between; padding: 0 4px;
  font-size: 10px; color: var(--muted); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}

/* Smart Auth */
.mv-auth-card {
  padding: 22px; border-radius: 14px; text-align: center;
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand) 100%);
  color: white; margin-bottom: 12px; position: relative; overflow: hidden;
}
.mv-auth-card::before {
  content: ""; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,51,.3), transparent 60%);
}
.mv-auth-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--accent); margin: 0 auto 14px;
  display: grid; place-items: center; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(255,204,51,.15), 0 0 40px rgba(255,204,51,.25);
}
.mv-auth-msg { font-size: 13px; font-weight: 700; position: relative; z-index: 1; }
.mv-auth-sub { font-size: 11px; opacity: .8; margin-top: 4px; position: relative; z-index: 1; }
.mv-auth-methods {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mv-auth-m {
  flex: 1; min-width: 0;
  padding: 10px 8px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 10px;
  display: flex; gap: 8px; align-items: center; font-size: 11.5px;
}
.mv-auth-m .ic { width: 28px; height: 28px; border-radius: 7px; background: white; display: grid; place-items: center; flex-shrink: 0; }
.mv-auth-m .nm { font-weight: 700; color: var(--ink); font-size: 11px; }
.mv-auth-m .sn { font-size: 9.5px; color: var(--green); font-weight: 700; }

/* Learning Management */
.mv-lms-course {
  padding: 12px; background: white; border: 1px solid var(--line);
  border-radius: 10px; margin-bottom: 8px;
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center;
}
.mv-lms-ico {
  width: 40px; height: 40px; border-radius: 8px;
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}
.mv-lms-ico.a { background: rgba(0,78,147,.1); }
.mv-lms-ico.b { background: rgba(255,204,51,.18); }
.mv-lms-ico.c { background: rgba(16,185,129,.12); }
.mv-lms-t { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.mv-lms-meta { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.mv-lms-prog {
  width: 60px; height: 5px; background: var(--bg-soft); border-radius: 999px; overflow: hidden;
  margin-top: 4px;
}
.mv-lms-prog div { height: 100%; border-radius: 999px; background: var(--brand); transform-origin: left; animation: fillUp 1s ease-out both; }
.mv-lms-pct { font-size: 12px; font-weight: 800; color: var(--brand); font-variant-numeric: tabular-nums; }

/* Engagement quotients */
.mv-eng-card {
  padding: 16px; border-radius: 12px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white; text-align: center; position: relative; overflow: hidden;
}
.mv-eng-card::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 140px; height: 140px; background: radial-gradient(circle, rgba(255,204,51,.22), transparent 70%);
}
.mv-eng-card .l { font-size: 11px; opacity: .85; position: relative; z-index: 1; }
.mv-eng-card .v { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 4px; position: relative; z-index: 1; }
.mv-eng-card .t { font-size: 11px; color: var(--accent); margin-top: 6px; font-weight: 700; position: relative; z-index: 1; }
.mv-eng-q {
  display: grid; grid-template-columns: 95px 1fr 34px; gap: 10px; align-items: center;
  margin-bottom: 8px; font-size: 12px;
}
.mv-eng-q .n { font-weight: 700; color: var(--ink); }
.mv-eng-q .bw { height: 7px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.mv-eng-q .bf { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-light)); animation: fillUp 1.1s ease-out both; transform-origin: left; }
.mv-eng-q .vl { font-size: 12.5px; color: var(--brand); font-weight: 800; text-align: right; font-variant-numeric: tabular-nums; }

/* Survey builder */
.mv-survey-q {
  padding: 11px 13px; background: var(--bg-soft);
  border-left: 3px solid var(--brand); border-radius: 8px;
  margin-bottom: 8px;
}
.mv-survey-q .qt { font-size: 10px; color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.mv-survey-q .qx { font-size: 12.5px; color: var(--ink); font-weight: 600; margin-top: 3px; margin-bottom: 6px; }
.mv-survey-opts { display: flex; gap: 5px; flex-wrap: wrap; }
.mv-survey-opt {
  padding: 4px 10px; background: white; border: 1px solid var(--line);
  border-radius: 999px; font-size: 10.5px; color: var(--ink-2); font-weight: 600;
}
.mv-survey-opt.sel { background: var(--accent); border-color: var(--accent); color: #1a1a1a; font-weight: 800; }
.mv-survey-scale {
  display: flex; gap: 4px; margin-top: 4px;
}
.mv-survey-scale span {
  flex: 1; height: 28px; border-radius: 6px;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--ink-2);
}
.mv-survey-scale span.sel { background: var(--brand); color: white; border-color: var(--brand); }

/* Rewards & Recognition kudos */
.mv-kudo {
  padding: 11px 13px; background: var(--bg-soft);
  border-radius: 10px; margin-bottom: 8px;
  display: flex; gap: 10px; align-items: flex-start;
  border: 1px solid var(--line);
}
.mv-kudo-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.mv-kudo-av.g { background: linear-gradient(135deg, #f59e0b, var(--accent)); color: #1a1a1a; }
.mv-kudo-av.p { background: linear-gradient(135deg, #be185d, #ec4899); }
.mv-kudo-body { flex: 1; }
.mv-kudo-txt { font-size: 12px; color: var(--ink); line-height: 1.5; }
.mv-kudo-txt b { color: var(--brand); font-weight: 800; }
.mv-kudo-meta { display: flex; gap: 10px; margin-top: 5px; font-size: 10.5px; color: var(--muted); }
.mv-kudo-badge { padding: 2px 7px; border-radius: 999px; background: white; font-weight: 700; font-size: 10px; }
.mv-kudo-badge.g { background: var(--accent); color: #1a1a1a; }
.mv-kudo-badge.b { background: rgba(0,78,147,.1); color: var(--brand); }
.mv-kudo-badge.p { background: rgba(190,24,93,.1); color: #be185d; }

/* Certificate card */
.mv-cert-card {
  padding: 22px 18px; border-radius: 14px; text-align: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white; border: 3px solid var(--accent);
  margin-bottom: 10px; position: relative; overflow: hidden;
}
.mv-cert-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 8px, transparent 8px 16px),
    radial-gradient(circle at 50% 20%, rgba(255,204,51,.25), transparent 60%);
}
.mv-cert-seal {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--accent); color: var(--brand);
  display: grid; place-items: center; margin: 0 auto 12px;
  box-shadow: 0 0 0 4px rgba(255,204,51,.25), 0 8px 20px rgba(0,0,0,.25);
  font-weight: 800; font-size: 20px; letter-spacing: -0.03em;
  position: relative; z-index: 1;
  border: 3px solid white;
}
.mv-cert-title {
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  opacity: .8; position: relative; z-index: 1;
}
.mv-cert-name {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  margin-top: 6px; position: relative; z-index: 1;
}
.mv-cert-pill {
  display: inline-block; padding: 5px 12px; margin-top: 10px;
  background: var(--accent); color: #1a1a1a;
  border-radius: 999px; font-size: 11px; font-weight: 800;
  position: relative; z-index: 1;
}
.mv-cert-meta {
  display: flex; justify-content: space-between;
  padding: 10px 14px; background: var(--bg-soft);
  border-radius: 8px; font-size: 11.5px; color: var(--ink-2);
  border: 1px solid var(--line);
}
.mv-cert-meta b { color: var(--brand); font-weight: 800; }

.ai-insight-card .ico {
  width: 36px; height: 36px; background: var(--accent); border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.ai-insight-card .tt { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.ai-insight-card .body { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; }
.ai-bars-wrap { background: var(--bg-soft); padding: 14px; border-radius: 10px; border: 1px solid var(--line); }
.ai-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-top: 8px; }
.ai-bar { flex: 1; background: linear-gradient(180deg, var(--brand-light), var(--brand)); border-radius: 4px 4px 0 0; animation: barGrow 1.2s ease-out both; transform-origin: bottom; }
.ai-bar.highlight { background: linear-gradient(180deg, #ffcc33, #e5a800); }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (max-width: 900px) { .mod-panel { grid-template-columns: 1fr; gap: 36px; } }

/* ============ INDUSTRY SECTION ============ */
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.industry-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: 16px; transition: all .3s; position: relative; overflow: hidden;
}
.industry-card::before {
  content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,204,51,.15), transparent 70%);
  transform: translate(30%, -30%); transition: transform .5s;
}
.industry-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: rgba(255,204,51,.3); }
.industry-card:hover::before { transform: translate(10%, -10%); }
.industry-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,204,51,.15); border: 1px solid rgba(255,204,51,.3);
  display: grid; place-items: center; color: var(--accent);
  margin-bottom: 18px; position: relative; z-index: 1;
}
.industry-card h3 { font-size: 17px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.015em; }
.industry-card p { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.55; position: relative; z-index: 1; margin-bottom: 12px; }
.industry-count { font-size: 12px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: 1fr; } }

/* ============ ROI & BENEFITS SECTION ============ */
.roi-section {
  padding: 72px 0;
  background:
    radial-gradient(900px 500px at 85% 5%, rgba(255,204,51,.1), transparent 60%),
    radial-gradient(800px 400px at 15% 95%, rgba(16,185,129,.06), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #f2f6fc 100%);
  position: relative; overflow: hidden;
}

.roi-hero-stat {
  max-width: 920px; margin: 0 auto 50px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: 24px; padding: 36px 40px; color: white;
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
  box-shadow: 0 30px 60px -20px rgba(0,78,147,.4);
  position: relative; overflow: hidden;
}
.roi-hero-stat::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,204,51,.3), transparent 70%);
  pointer-events: none;
}
.roi-hero-big {
  font-size: clamp(30px, 3.8vw, 46px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--accent); position: relative; z-index: 1;
}
.roi-hero-big small { font-size: 18px; color: white; font-weight: 600; margin-left: 4px; }
.roi-hero-text { position: relative; z-index: 1; }
.roi-hero-text .t { font-size: 20px; font-weight: 800; letter-spacing: -0.015em; }
.roi-hero-text .s { font-size: 13.5px; color: rgba(255,255,255,.8); margin-top: 4px; line-height: 1.5; }
.roi-hero-cta {
  padding: 14px 22px; background: var(--accent); color: #1a1a1a;
  border-radius: 12px; font-weight: 800; font-size: 13.5px;
  position: relative; z-index: 1; box-shadow: 0 6px 16px -4px rgba(255,204,51,.5);
  transition: all .2s;
}
.roi-hero-cta:hover { transform: translateY(-2px); }
@media (max-width: 780px) { .roi-hero-stat { grid-template-columns: 1fr; text-align: center; padding: 28px; } }

.roi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.roi-card {
  background: white; border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px; transition: all .3s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.roi-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-accent, linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.roi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.roi-card:hover::before { transform: scaleX(1); }
.roi-card-head {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--line);
}
.roi-card-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,78,147,.1), rgba(255,204,51,.08));
  color: var(--brand); display: grid; place-items: center;
  flex-shrink: 0; transition: all .3s;
}
.roi-card:hover .roi-card-ic {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white;
}
.roi-card-name {
  font-size: 14.5px; font-weight: 800; color: var(--ink); letter-spacing: -0.015em;
}
.roi-card-sub { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

.roi-transform {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px;
  align-items: center; margin-bottom: 16px;
}
.roi-before, .roi-after {
  padding: 11px 12px; border-radius: 10px; text-align: center;
}
.roi-before {
  background: #fef2f2;
  border: 1px dashed rgba(239,68,68,.3);
}
.roi-after {
  background: linear-gradient(135deg, #fef9c3, #fefce8);
  border: 1.5px solid var(--accent);
}
.roi-transform .lab {
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; opacity: .75;
}
.roi-before .lab { color: var(--red); }
.roi-after .lab { color: #a16207; }
.roi-transform .v {
  font-size: 16px; font-weight: 800; letter-spacing: -0.015em;
  margin-top: 3px; line-height: 1.15;
}
.roi-before .v { color: var(--ink-2); }
.roi-after .v { color: var(--brand); }
.roi-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand); color: white;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px -2px rgba(0,78,147,.4);
  font-size: 14px; font-weight: 800;
}

.roi-metric {
  padding: 14px; background: var(--bg-soft);
  border-radius: 12px; border-left: 4px solid var(--accent);
  display: flex; gap: 12px; align-items: center; margin-bottom: 10px;
}
.roi-metric-big {
  font-size: clamp(18px, 2vw, 22px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1; color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.roi-metric-txt {
  font-size: 12px; color: var(--ink-2); line-height: 1.4;
}
.roi-metric-txt b { color: var(--ink); font-weight: 800; }

.roi-foot {
  padding-top: 12px; margin-top: auto;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: var(--muted);
}
.roi-foot b { color: var(--green); font-weight: 800; }

@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .roi-grid { grid-template-columns: 1fr; } }

/* ============ SUPPORT & IMPLEMENTATION SECTION ============ */
.support-section {
  padding: 76px 0;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(255,204,51,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 100%, rgba(10,106,181,.35), transparent 60%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand) 100%);
  color: white; position: relative; overflow: hidden;
}
.support-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.support-section .container { position: relative; z-index: 1; }
.support-section .section-head h2 { color: white; }
.support-section .kicker {
  background: rgba(255,204,51,.16); color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.support-section .kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: pulse 1.8s infinite;
}
.support-section .section-head h2 em {
  color: var(--accent); font-style: normal; position: relative;
}
.support-section .section-head .lead { color: rgba(255,255,255,.78); }

/* Implementation timeline + Support pillars layout */
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}

/* Implementation timeline */
.impl-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: 20px; padding: 32px; position: relative;
}
.impl-head {
  display: flex; gap: 14px; align-items: center; margin-bottom: 28px;
}
.impl-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #e5a800);
  color: var(--brand-navy); display: grid; place-items: center;
  box-shadow: 0 8px 18px -4px rgba(255,204,51,.4);
}
.impl-head h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: white; }
.impl-head p { font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 2px; }

.impl-time {
  position: relative; padding-left: 32px;
}
.impl-time::before {
  content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--accent) 0%, rgba(255,204,51,.1) 100%);
}
.impl-step {
  padding: 10px 0 18px; position: relative;
}
.impl-step::before {
  content: ""; position: absolute; left: -26px; top: 14px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,204,51,.2), 0 0 0 1px var(--brand-navy);
}
.impl-step:last-child { padding-bottom: 0; }
.impl-day {
  font-size: 10.5px; font-weight: 800; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase;
}
.impl-title { font-size: 14.5px; font-weight: 700; color: white; margin-top: 3px; letter-spacing: -0.01em; }
.impl-desc { font-size: 12.5px; color: rgba(255,255,255,.68); margin-top: 4px; line-height: 1.55; }

.impl-footer {
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.impl-foot-stat { text-align: center; }
.impl-foot-stat .v {
  font-size: 22px; font-weight: 800; color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
}
.impl-foot-stat .l { font-size: 10.5px; color: rgba(255,255,255,.7); margin-top: 4px; font-weight: 600; }

/* Support pillars */
.support-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column;
}
.support-head {
  display: flex; gap: 14px; align-items: center; margin-bottom: 22px;
}
.support-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #059669);
  color: white; display: grid; place-items: center;
  box-shadow: 0 8px 18px -4px rgba(16,185,129,.4);
}
.support-head h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: white; }
.support-head p { font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 2px; }

.support-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.support-pillar {
  padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s;
}
.support-pillar:hover {
  background: rgba(255,204,51,.06);
  border-color: rgba(255,204,51,.25);
  transform: translateY(-3px);
}
.support-pillar-ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,204,51,.12);
  border: 1px solid rgba(255,204,51,.3);
  color: var(--accent);
  display: grid; place-items: center; margin-bottom: 12px;
}
.support-pillar-t { font-size: 13.5px; font-weight: 800; color: white; letter-spacing: -0.01em; margin-bottom: 4px; }
.support-pillar-d { font-size: 11.5px; color: rgba(255,255,255,.65); line-height: 1.5; }
.support-pillar-m {
  margin-top: 9px; font-size: 13px; font-weight: 800;
  color: var(--accent); letter-spacing: -0.01em;
}

.support-footer {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.support-foot-stat { text-align: center; }
.support-foot-stat .v {
  font-size: 20px; font-weight: 800; color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
}
.support-foot-stat .l { font-size: 10px; color: rgba(255,255,255,.65); margin-top: 4px; font-weight: 600; }

.support-testimonial {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255,204,51,.08), rgba(16,185,129,.04));
  border: 1px solid rgba(255,204,51,.2);
  border-radius: 20px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
}
.support-testi-av {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e5a800);
  color: var(--brand-navy); display: grid; place-items: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,204,51,.2);
}
.support-testi-q { font-size: 15.5px; line-height: 1.55; color: white; font-style: italic; font-weight: 500; }
.support-testi-q b { color: var(--accent); font-weight: 700; font-style: normal; }
.support-testi-src { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 6px; font-style: normal; }
.support-testi-rating {
  text-align: center; flex-shrink: 0; padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.support-testi-rating .r {
  font-size: 36px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1;
}
.support-testi-rating .s { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-top: 4px; }
.support-testi-rating .l { font-size: 10.5px; color: rgba(255,255,255,.65); margin-top: 4px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 900px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-pillars { grid-template-columns: 1fr 1fr; }
  .support-footer { grid-template-columns: 1fr 1fr; }
  .support-testimonial { grid-template-columns: 1fr; text-align: center; }
  .support-testi-rating { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); }
}

/* ============ AI SHOWCASE ============ */
.ai-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b1426 0%, #0a1a30 100%);
  color: white; position: relative; overflow: hidden;
}
.ai-showcase::before {
  content: ""; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,204,51,.18), transparent 60%);
  pointer-events: none;
}
.ai-showcase .section-head h2 { color: white; }
.ai-showcase .section-head .lead { color: rgba(255,255,255,.72); }
.ai-showcase .kicker { background: rgba(255,204,51,.15); color: var(--accent); }
.ai-showcase .section-head h2 em { color: var(--accent); }

.ai-stat-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: -30px; margin-bottom: 50px; position: relative; z-index: 1; }
.ai-spill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; color: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
}
.ai-spill b { color: white; font-weight: 800; }
.ai-spill .d { width: 8px; height: 8px; border-radius: 50%; }
.ai-spill .d.g { background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.2); animation: pulse 1.5s infinite; }
.ai-spill .d.y { background: var(--accent); }
.ai-spill .d.b { background: var(--brand-light); }

.ai-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
.ai-cat-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 32px; transition: border-color .3s;
  backdrop-filter: blur(6px);
}
.ai-cat-card:hover { border-color: rgba(255,204,51,.3); }
.ai-cat-head {
  display: flex; gap: 14px; align-items: center; margin-bottom: 22px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ai-cat-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,204,51,.18), rgba(255,204,51,.05));
  border: 1px solid rgba(255,204,51,.25);
  display: grid; place-items: center; color: var(--accent);
  flex-shrink: 0;
}
.ai-cat-ttl { flex: 1; }
.ai-cat-ttl h3 { font-size: 18px; font-weight: 800; color: white; letter-spacing: -0.015em; }
.ai-cat-ttl span { font-size: 12px; color: rgba(255,255,255,.55); }
.ai-cat-count { background: rgba(16,185,129,.15); color: var(--green); font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 999px; display: inline-flex; gap: 6px; align-items: center; }
.ai-cat-count::before { content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }

.ai-feat-list { display: flex; flex-direction: column; gap: 9px; }
.ai-feat-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06); border-radius: 10px;
  transition: all .25s;
}
.ai-feat-item:hover { background: rgba(255,204,51,.06); border-color: rgba(255,204,51,.2); transform: translateX(4px); }
.ai-feat-item .feat-ico-sm {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center; color: var(--accent); flex-shrink: 0;
}
.ai-feat-nm { flex: 1; font-size: 13px; font-weight: 600; color: white; }
.ai-feat-st { font-size: 10px; font-weight: 800; letter-spacing: .06em; padding: 3px 8px; border-radius: 999px; display: inline-flex; gap: 4px; align-items: center; background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.25); }
.ai-feat-st::before { content: ""; width: 5px; height: 5px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }

@media (max-width: 860px) { .ai-cat-grid { grid-template-columns: 1fr; } }

/* ===== AI showcase v2: narrative + capability cloud ===== */
.ai-showcase{padding:84px 0}
.ai-wrap{display:grid;grid-template-columns:0.92fr 1.18fr;gap:48px;align-items:center;position:relative;z-index:1}
.ai-lead .kicker{display:inline-block;margin-bottom:14px}
.ai-lead h2{font-family:'Epilogue',Inter,sans-serif;font-size:clamp(24px,3vw,36px);font-weight:800;line-height:1.08;letter-spacing:-.03em;color:#fff;margin:0 0 14px}
.ai-lead h2 em{font-style:normal;color:var(--accent)}
.ai-lead p{font-size:15.5px;line-height:1.6;color:rgba(255,255,255,.74);margin:0 0 24px;max-width:440px}
.ai-counts{display:flex;gap:14px;margin-bottom:26px}
.ai-count{flex:1;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:16px 14px;text-align:center}
.ai-count b{display:block;font-family:'Epilogue',Inter,sans-serif;font-size:30px;font-weight:800;color:#fff;line-height:1;letter-spacing:-.03em}
.ai-count.soon b{color:var(--accent)}
.ai-count span{display:block;font-size:11px;font-weight:600;color:rgba(255,255,255,.6);margin-top:6px;letter-spacing:.02em}
.ai-grid{display:flex;flex-direction:column;gap:18px;position:relative;z-index:1}
.ai-group{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:22px 24px;backdrop-filter:blur(6px);transition:border-color .3s}
.ai-group:hover{border-color:rgba(255,204,51,.28)}
.ai-group-head{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.ai-group-ico{width:40px;height:40px;border-radius:11px;background:linear-gradient(135deg,rgba(255,204,51,.18),rgba(255,204,51,.05));border:1px solid rgba(255,204,51,.25);display:grid;place-items:center;color:var(--accent);flex-shrink:0}
.ai-group-ttl{flex:1}
.ai-group-ttl h3{font-size:16px;font-weight:800;color:#fff;letter-spacing:-.01em;margin:0}
.ai-group-ttl span{font-size:11.5px;color:rgba(255,255,255,.55)}
.ai-group-count{background:rgba(16,185,129,.15);color:var(--green);font-size:11px;font-weight:800;padding:5px 11px;border-radius:999px;display:inline-flex;gap:6px;align-items:center;flex-shrink:0}
.ai-group-count::before{content:"";width:6px;height:6px;background:var(--green);border-radius:50%;animation:pulse 1.5s infinite}
.ai-pills{display:flex;flex-wrap:wrap;gap:8px}
.ai-pill{display:inline-flex;align-items:center;gap:7px;padding:8px 13px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09);border-radius:999px;font-size:12.5px;font-weight:600;color:#fff;transition:all .2s}
.ai-pill:hover{background:rgba(255,204,51,.1);border-color:rgba(255,204,51,.35);transform:translateY(-2px)}
.ai-pill::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 0 3px rgba(16,185,129,.18);flex-shrink:0}
@media(max-width:920px){.ai-wrap{grid-template-columns:1fr;gap:34px}.ai-lead p{max-width:none}}

/* ============ METRICS BAND ============ */
.metrics-band {
  padding: 70px 0;
  background:
    radial-gradient(800px 400px at 20% 50%, rgba(255,204,51,.1), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white; position: relative; overflow: hidden;
}
.metrics-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.metrics-row .big { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -0.03em; color: var(--accent); font-variant-numeric: tabular-nums; }
.metrics-row .lb { font-size: 14px; color: rgba(255,255,255,.8); margin-top: 10px; font-weight: 500; }
.metrics-row > div { padding: 0 10px; border-right: 1px solid rgba(255,255,255,.12); }
.metrics-row > div:last-child { border-right: none; }
@media (max-width: 700px) { .metrics-row { grid-template-columns: 1fr 1fr; gap: 36px 14px; } .metrics-row > div:nth-child(2) { border-right: none; } }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
.testi-card {
  background: white; padding: 30px; border-radius: 20px;
  border: 1px solid var(--line); position: relative; transition: all .3s;
  display: flex; flex-direction: column;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.testi-logo {
  height: 36px; font-weight: 800; font-size: 14px; color: var(--brand);
  letter-spacing: -0.01em; display: flex; align-items: center;
  margin-bottom: 14px; padding: 6px 0;
}
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.testi-quote { font-size: 15px; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 22px; flex: 1; }
.testi-person { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-light)); display: grid; place-items: center; color: white; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============ PRICING PREVIEW ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card {
  background: white; border: 2px solid var(--line); border-radius: 18px;
  padding: 28px 24px; position: relative; transition: all .3s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.price-card.popular { border-color: var(--accent); box-shadow: 0 20px 40px -12px rgba(255,204,51,.3); }
.price-card.popular::before {
  content: "POPULAR"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #1a1a1a; font-size: 10px; font-weight: 800;
  padding: 4px 11px; border-radius: 999px; letter-spacing: .08em;
}
.price-tier { font-size: 14px; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.price-desc { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; min-height: 36px; line-height: 1.4; }
.price-num { font-size: 32px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; line-height: 1; }
.price-num small { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.price-unit { font-size: 11px; color: var(--muted); margin-top: 4px; margin-bottom: 18px; }
.price-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.price-features li { font-size: 12.5px; color: var(--ink-2); display: flex; gap: 7px; align-items: flex-start; }
.price-features li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.price-btn {
  display: block; text-align: center; padding: 11px; border-radius: 10px;
  background: var(--bg-soft); color: var(--brand); font-size: 13px; font-weight: 700;
  transition: all .2s; border: 1.5px solid var(--line);
}
.price-btn:hover { background: var(--brand); color: white; border-color: var(--brand); }
.price-card.popular .price-btn { background: var(--brand); color: white; border-color: var(--brand); }
.price-card.popular .price-btn:hover { background: var(--brand-deep); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 90px 0 80px;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(255,204,51,.2), transparent 60%),
    radial-gradient(900px 600px at 80% 100%, rgba(10,106,181,.4), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white; position: relative; overflow: hidden;
  text-align: center;
}
.final-cta h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.final-cta h2 span.ac { color: var(--accent); }
.final-cta p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 32px; line-height: 1.55; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .bullets { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 32px; font-size: 13.5px; color: rgba(255,255,255,.85); }
.final-cta .bullets div { display: flex; gap: 8px; align-items: center; }
.final-cta .bullets .dt { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ============ FOOTER ============ */
footer { background: var(--brand-navy); color: rgba(255,255,255,.7); padding: 64px 0 28px; position: relative; overflow: hidden; }
footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 50%, var(--brand) 100%); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand .foot-logo { margin-bottom: 20px; }
.foot-brand .foot-logo img { height: 44px; width: auto; }
.foot-brand .foot-addr { font-size: 13.5px; line-height: 1.65; margin-bottom: 18px; max-width: 340px; }
.foot-contact { display: flex; flex-direction: column; gap: 9px; }
.foot-contact a { display: inline-flex; gap: 8px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,.85); transition: color .2s; }
.foot-contact a:hover { color: var(--accent); }
.foot-contact svg { color: var(--accent); flex-shrink: 0; }
.foot-offices { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 18px; line-height: 1.5; }
.foot-offices b { color: rgba(255,255,255,.85); font-weight: 700; }
.foot-col h5 { color: white; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.foot-col h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--accent); }
.foot-col a { display: block; padding: 5px 0; font-size: 13.5px; color: rgba(255,255,255,.65); transition: all .2s; }
.foot-col a:hover { color: var(--accent); padding-left: 4px; }
/* Certifications ,  clean image row, no boxes */
.foot-certs {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-bottom: 22px; align-items: center;
}
.foot-cert {
  display: block;
  transition: all .25s;
  flex-shrink: 0;
}
.foot-cert:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 14px rgba(255,204,51,.35));
}
.foot-cert img {
  height: 56px; width: auto; max-width: 180px;
  object-fit: contain; display: block;
}
/* 27701 is tall (near-square) */
.foot-cert:nth-child(2) img { height: 64px; max-width: 64px; }
/* GDPR and SOC 2 are circles */
.foot-cert:nth-child(3) img,
.foot-cert:nth-child(4) img { height: 60px; width: 60px; max-width: 60px; }
.foot-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; transition: all .25s; padding: 0; }
.foot-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.foot-social a:hover svg { stroke: var(--brand); }
.foot-social svg { stroke: rgba(255,255,255,.9); transition: stroke .25s; }
.foot-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.foot-bottom-links a { transition: color .2s; margin-left: 18px; }
.foot-bottom-links a:hover { color: var(--accent); }
@media (max-width: 980px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }

/* ============ DEMO POPUP MODAL ============ */
.demo-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.demo-modal.open { display: flex; animation: modalFadeIn .3s ease; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.demo-backdrop {
  position: absolute; inset: 0;
  background: rgba(6,33,68,.75);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.demo-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px;
  background: white; border-radius: 24px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
  overflow: hidden;
  animation: modalPopIn .4s cubic-bezier(.4,0,.2,1);
  max-height: calc(100vh - 40px);
  display: flex; flex-direction: column;
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.demo-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white; font-size: 20px; font-weight: 400;
  display: grid; place-items: center;
  cursor: pointer; transition: all .2s;
  backdrop-filter: blur(6px); z-index: 2;
  border: 1px solid rgba(255,255,255,.2);
}
.demo-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg) scale(1.1); }

.demo-head {
  padding: 32px 36px 24px;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(255,204,51,.22), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white; position: relative; overflow: hidden;
}
.demo-head::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.demo-head > * { position: relative; z-index: 1; }
.demo-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 5px; border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 12px; font-weight: 600; margin-bottom: 14px;
}
.demo-head .eyebrow .dt {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); color: var(--brand-navy);
  display: grid; place-items: center; font-size: 9px; font-weight: 800;
}
.demo-head h3 {
  font-size: 24px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 8px;
}
.demo-head h3 span { color: var(--accent); }
.demo-head p {
  font-size: 13.5px; color: rgba(255,255,255,.78); line-height: 1.5;
}

.demo-body {
  padding: 26px 36px 32px;
  overflow-y: auto; flex: 1;
}

.demo-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.demo-field { margin-bottom: 12px; }
.demo-field.full { grid-column: 1 / -1; }
.demo-field label {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--ink-2); margin-bottom: 5px;
  letter-spacing: .02em;
}
.demo-field label .req { color: var(--red); }

.demo-input,
.demo-select,
.demo-textarea {
  width: 100%; padding: 11px 13px;
  background: #f8fafc; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 14px;
  color: var(--ink); font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.demo-input:focus,
.demo-select:focus,
.demo-textarea:focus {
  border-color: var(--brand); background: white;
}
.demo-textarea { resize: vertical; min-height: 70px; line-height: 1.5; }

.demo-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #ff9658 0%, var(--orange-cta) 50%, var(--orange-cta-deep) 100%);
  color: white; border-radius: 12px;
  font-weight: 700; font-size: 15px;
  cursor: pointer; margin-top: 6px;
  transition: all .2s; letter-spacing: .01em;
  box-shadow: 0 8px 20px -4px rgba(240,97,42,.45);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.demo-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(240,97,42,.6);
}
.demo-submit:disabled { opacity: .7; cursor: not-allowed; }

.demo-spinner {
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: white; border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.demo-submit.loading .demo-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.demo-trust-row {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 16px; flex-wrap: wrap;
  font-size: 11.5px; color: var(--muted);
}
.demo-trust-row span { display: inline-flex; align-items: center; gap: 5px; }
.demo-trust-row span::before { content: "✓"; color: var(--green); font-weight: 800; }

.demo-stars {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; background: var(--bg-soft);
  border-radius: 999px; font-size: 11.5px; color: var(--ink-2);
  margin: 0 auto 18px; font-weight: 600;
  border: 1px solid var(--line);
}
.demo-stars .st { color: var(--accent); letter-spacing: 2px; }
.demo-stars b { color: var(--brand); font-weight: 800; }

/* Success state */
.demo-success {
  padding: 40px 30px; text-align: center; display: none;
}
.demo-success.show { display: block; animation: modalFadeIn .4s; }
.demo-success-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white; margin: 0 auto 20px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px rgba(16,185,129,.15), 0 0 40px rgba(16,185,129,.3);
  animation: successPop .5s cubic-bezier(.4,0,.2,1);
}
@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.demo-success h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.demo-success p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; max-width: 380px; margin: 0 auto; }

@media (max-width: 560px) {
  .demo-form-grid { grid-template-columns: 1fr; }
  .demo-head { padding: 24px 24px 20px; }
  .demo-body { padding: 22px 24px 26px; }
  .demo-head h3 { font-size: 20px; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f3f6; }
::-webkit-scrollbar-thumb { background: #c7d1dc; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ============ HEADINGS USE EPILOGUE (matches attendance file) ============ */
h1,h2,h3,h4,h5,h6 { font-family:'Epilogue','Inter',system-ui,sans-serif; font-weight:800; letter-spacing:-0.02em; }

/* ============ FACE RECOGNITION SECTION ============ */
.face-section { padding:78px 0; background:linear-gradient(135deg, var(--brand-navy) 0%, var(--brand) 60%, var(--brand-deep) 100%); color:#fff; position:relative; overflow:hidden; }
.face-section::before { content:""; position:absolute; inset:0; background:radial-gradient(900px 500px at 85% 20%, rgba(255,204,51,.18), transparent 50%), radial-gradient(700px 500px at 10% 80%, rgba(10,106,181,.4), transparent 60%); pointer-events:none; }
.face-section .container { position:relative; z-index:1; }
.face-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
.face-copy .kicker.accent { background:rgba(255,204,51,.18); color:var(--accent); border:1px solid rgba(255,204,51,.3); display:inline-block; padding:6px 14px; border-radius:999px; font-size:12.5px; font-weight:700; letter-spacing:.06em; margin-bottom:18px; text-transform:uppercase; }
.face-copy h2 { font-size:clamp(22px, 2.6vw, 30px); font-weight:800; line-height:1.12; margin-bottom:18px; color:#fff; }
.face-copy h2 em { font-style:normal; color:var(--accent); }
.face-copy p { font-size:16px; color:rgba(255,255,255,.84); line-height:1.65; margin-bottom:26px; max-width:540px; }
.face-bullets { list-style:none; padding:0; margin:0 0 28px; }
.face-bullets li { padding:11px 0 11px 30px; position:relative; color:rgba(255,255,255,.9); font-size:14.5px; line-height:1.55; border-bottom:1px solid rgba(255,255,255,.08); }
.face-bullets li:last-child { border-bottom:0; }
.face-bullets li::before { content:""; position:absolute; left:0; top:18px; width:12px; height:12px; background:var(--accent); border-radius:50%; box-shadow:0 0 0 4px rgba(255,204,51,.2); }
.face-bullets li b { color:var(--accent); font-weight:800; }
.face-cta { display:flex; gap:14px; flex-wrap:wrap; }
.face-cta .btn-ghost-light { background:transparent; color:#fff; border:1px solid rgba(255,255,255,.3); padding:11px 22px; border-radius:999px; font-size:14px; font-weight:600; transition:all .2s; }
.face-cta .btn-ghost-light:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.5); }
.face-visual { display:flex; flex-direction:column; align-items:center; padding:20px 0; }
.face-frame { width:100%; max-width:380px; aspect-ratio:5/6; margin:0 auto; position:relative; background:rgba(255,255,255,.04); border:1px solid rgba(255,204,51,.35); border-radius:20px; overflow:hidden; box-shadow:0 30px 60px -20px rgba(0,0,0,.5); }
.face-portrait { position:absolute; inset:0; padding:0; }
.face-portrait img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.9) contrast(1.05); }
.face-portrait::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(6,33,68,.15) 0%, transparent 30%, transparent 70%, rgba(6,33,68,.5) 100%); pointer-events:none; }
.face-corners { position:absolute; inset:18px; pointer-events:none; z-index:3; }
.face-corners .c { position:absolute; width:26px; height:26px; border-color:var(--accent); border-style:solid; }
.face-corners .c.tl { top:0; left:0; border-width:2.5px 0 0 2.5px; }
.face-corners .c.tr { top:0; right:0; border-width:2.5px 2.5px 0 0; }
.face-corners .c.bl { bottom:0; left:0; border-width:0 0 2.5px 2.5px; }
.face-corners .c.br { bottom:0; right:0; border-width:0 2.5px 2.5px 0; }
.face-scan-line { position:absolute; left:18px; right:18px; top:18px; height:2px; background:linear-gradient(90deg, transparent, var(--accent) 50%, transparent); box-shadow:0 0 14px rgba(255,204,51,.7); animation:face-scan 2.6s ease-in-out infinite; z-index:2; }
@keyframes face-scan { 0%, 100% { top:18px; opacity:.9; } 50% { top:calc(100% - 20px); opacity:1; } }
.face-scan-grid { position:absolute; inset:18px; display:grid; grid-template-columns:repeat(4, 1fr); grid-template-rows:repeat(4, 1fr); pointer-events:none; z-index:2; }
.face-scan-grid span { border:1px solid rgba(255,204,51,.08); }
.face-tag-row { position:absolute; bottom:18px; left:18px; right:18px; display:flex; justify-content:center; gap:8px; z-index:3; }
.face-tag { padding:6px 12px; background:rgba(6,33,68,.65); backdrop-filter:blur(6px); border:1px solid rgba(255,204,51,.4); border-radius:999px; font-family:'JetBrains Mono', monospace; font-size:11px; font-weight:600; color:#fff; letter-spacing:.04em; display:inline-flex; align-items:center; gap:6px; }
.face-tag-dot { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 6px var(--green); animation:pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity:1; } 50% { opacity:.5; } }
.face-result { display:flex; align-items:center; gap:12px; padding:14px 18px; background:rgba(16,185,129,.16); border:1px solid rgba(16,185,129,.35); border-radius:14px; margin-top:22px; max-width:380px; width:100%; }
.face-result .av { width:36px; height:36px; border-radius:50%; background:var(--brand-light); color:#fff; display:grid; place-items:center; font-weight:700; font-size:13px; font-family:'Epilogue', sans-serif; flex-shrink:0; }
.face-result .av.blue { background:var(--brand-light); }
.face-result .fr-meta { flex:1; }
.face-result .fr-meta b { display:block; font-size:13.5px; color:#fff; font-weight:700; font-family:'Epilogue', sans-serif; }
.face-result .fr-meta span { font-size:11.5px; color:rgba(255,255,255,.7); font-family:'JetBrains Mono', monospace; }
.face-result .pill.ok { background:rgba(16,185,129,.3); color:#fff; padding:5px 12px; border-radius:999px; font-size:11.5px; font-weight:700; letter-spacing:.04em; }
@media(max-width:900px) { .face-grid { grid-template-columns:1fr; gap:40px; } .face-frame { max-width:320px; } .face-section { padding:72px 0; } }

/* ============ ROI CALCULATOR (interactive) ============ */
.roi-calc { max-width:1100px; margin:0 auto; background:#fff; border-radius:24px; padding:48px; border:1px solid var(--line); box-shadow:0 30px 70px -20px rgba(6,33,68,.15); display:grid; grid-template-columns:1fr 1.05fr; gap:48px; align-items:start; }
.roi-inputs { display:flex; flex-direction:column; gap:22px; }
.roi-field label { display:block; font-size:13px; font-weight:700; color:var(--ink-2); margin-bottom:10px; letter-spacing:.02em; }
.roi-field input[type=range] { width:100%; -webkit-appearance:none; appearance:none; height:6px; background:linear-gradient(90deg, var(--brand) 0%, var(--brand) 50%, var(--line) 50%); border-radius:3px; outline:none; }
.roi-field input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; appearance:none; width:22px; height:22px; background:var(--accent); border:3px solid #fff; border-radius:50%; cursor:pointer; box-shadow:0 2px 8px rgba(0,78,147,.3); transition:transform .15s; }
.roi-field input[type=range]::-webkit-slider-thumb:hover { transform:scale(1.15); }
.roi-field input[type=range]::-moz-range-thumb { width:22px; height:22px; background:var(--accent); border:3px solid #fff; border-radius:50%; cursor:pointer; box-shadow:0 2px 8px rgba(0,78,147,.3); }
.roi-slider-val { margin-top:8px; font-size:14px; color:var(--ink-2); font-family:'Epilogue', sans-serif; }
.roi-slider-val b { color:var(--brand); font-weight:800; font-size:16px; }
.roi-results { background:linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color:#fff; border-radius:20px; padding:32px 30px; }
.roi-results-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.15); }
.roi-results-head h4 { font-size:13px; font-weight:800; color:#fff; letter-spacing:.06em; text-transform:uppercase; }
.roi-results-pill { font-size:10.5px; font-weight:800; background:rgba(255,204,51,.2); color:var(--accent); padding:4px 12px; border-radius:999px; letter-spacing:.05em; }
.roi-big-num { font-family:'Epilogue', sans-serif; font-size:clamp(30px, 3.8vw, 44px); font-weight:800; color:#fff; letter-spacing:-0.035em; line-height:1; margin-bottom:8px; }
.roi-big-num small { font-size:22px; color:var(--accent); font-weight:700; }
.roi-big-label { font-size:13.5px; color:rgba(255,255,255,.75); margin-bottom:22px; }
.roi-line-items { padding:14px 0; border-top:1px dashed rgba(255,255,255,.18); border-bottom:1px dashed rgba(255,255,255,.18); margin-bottom:20px; }
.roi-line { display:flex; justify-content:space-between; align-items:center; padding:8px 0; font-size:13.5px; color:rgba(255,255,255,.85); }
.roi-line .val { font-family:'Epilogue', sans-serif; font-weight:800; color:var(--accent); font-size:15px; }
.roi-summary { padding-top:6px; }
.roi-summary .btn-cta { width:100%; justify-content:center; padding:13px 24px; background:var(--accent); color:var(--brand-navy); border-radius:12px; font-weight:700; font-size:14.5px; }
@media(max-width:900px) { .roi-calc { grid-template-columns:1fr; padding:32px 24px; gap:32px; } }

/* ============ VIDEO TESTIMONIALS SLIDER ============ */
.vt-slider { max-width:1240px; margin:0 auto; position:relative; padding:0 50px; }
.vt-track {
  display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth; scroll-snap-type:x mandatory;
  padding:6px 4px 18px; scrollbar-width:none; -ms-overflow-style:none;
  outline:none;
}
.vt-track::-webkit-scrollbar { display:none; }
.vt-card {
  flex:0 0 calc((100% - 60px) / 4); min-width:0;
  scroll-snap-align:start;
  background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden;
  cursor:pointer; transition:all .25s; text-align:left; padding:0;
}
.vt-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:transparent; }
.vt-thumb { position:relative; aspect-ratio:16/9; overflow:hidden; background:linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 60%, #021834 100%); }
.vt-thumb::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 50%, rgba(255,204,51,.08), transparent 60%); pointer-events:none; }
.vt-thumb-placeholder::after { content:""; position:absolute; inset:0; background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 56' opacity='0.18'><path fill='%23FFCC33' d='M30 14h40c4 0 7 3 7 7v14c0 4-3 7-7 7H30c-4 0-7-3-7-7V21c0-4 3-7 7-7zm12 8v14l14-7-14-7z'/></svg>") center/40% no-repeat; pointer-events:none; }
.vt-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.vt-card:hover .vt-thumb img { transform:scale(1.05); }
.vt-play { position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); width:48px; height:48px; border-radius:50%; background:rgba(0,78,147,.92); color:#fff; display:grid; place-items:center; font-size:18px; padding-left:3px; box-shadow:0 4px 16px rgba(0,0,0,.4); transition:transform .2s; }
.vt-card:hover .vt-play { transform:translate(-50%, -50%) scale(1.1); background:var(--accent); color:var(--brand-navy); }
.vt-meta { padding:14px 16px; }
.vt-meta b { display:block; font-family:'Epilogue', sans-serif; font-size:13.5px; color:var(--ink); font-weight:700; margin-bottom:3px; }
.vt-meta span { font-size:11.5px; color:var(--muted); }
.vt-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:#fff; border:1px solid var(--line); color:var(--brand);
  display:grid; place-items:center; cursor:pointer; z-index:5;
  box-shadow:var(--shadow-md); transition:all .2s;
}
.vt-arrow:hover { background:var(--brand); color:#fff; border-color:var(--brand); transform:translateY(-50%) scale(1.08); }
.vt-arrow:disabled { opacity:.3; cursor:not-allowed; pointer-events:none; }
.vt-prev { left:0; }
.vt-next { right:0; }
.vt-dots { display:flex; justify-content:center; gap:8px; margin-top:18px; }
.vt-dot { width:8px; height:8px; border-radius:50%; background:var(--line); border:0; padding:0; cursor:pointer; transition:all .2s; }
.vt-dot.active { background:var(--brand); width:24px; border-radius:4px; }
@media(max-width:1100px) { .vt-card { flex-basis:calc((100% - 40px) / 3); } }
@media(max-width:768px) {
  .vt-slider { padding:0 16px; }
  .vt-arrow { display:none; }
  .vt-card { flex-basis:calc((100% - 20px) / 2); }
  .vt-track { gap:14px; padding-bottom:14px; }
}
@media(max-width:480px) { .vt-card { flex-basis:85%; } }

/* Video modal */
.vm-modal { position:fixed; inset:0; background:rgba(6,33,68,.92); backdrop-filter:blur(6px); display:none; align-items:center; justify-content:center; z-index:9999; padding:24px; }
.vm-modal.open { display:flex; }
.vm-card { width:100%; max-width:960px; aspect-ratio:16/9; background:#000; border-radius:14px; overflow:hidden; position:relative; }
.vm-card iframe { width:100%; height:100%; border:0; }
.vm-close { position:absolute; top:-44px; right:0; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.2); color:#fff; width:36px; height:36px; border-radius:50%; font-size:20px; cursor:pointer; }

/* ============ FAQ ============ */
.faq-list { max-width:880px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden; transition:box-shadow .2s; }
.faq-item:hover { box-shadow:var(--shadow-sm); }
.faq-item[open] { border-color:var(--brand); }
.faq-item summary { padding:18px 24px; font-family:'Epilogue', sans-serif; font-size:15.5px; font-weight:700; color:var(--ink); cursor:pointer; display:flex; justify-content:space-between; align-items:center; list-style:none; gap:14px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item .a { padding:0 24px 22px; color:var(--ink-2); font-size:14.5px; line-height:1.7; }
.faq-i { font-family:'Epilogue', sans-serif; font-size:22px; color:var(--brand); font-weight:600; transition:transform .25s; flex-shrink:0; }
.faq-item[open] .faq-i { transform:rotate(45deg); }

/* ============ GLOSSARY ============ */
.gloss-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; max-width:1080px; margin:0 auto; }
.gloss-item { padding:22px 24px; background:#fff; border:1px solid var(--line); border-radius:14px; transition:all .2s; }
.gloss-item:hover { border-color:var(--brand); box-shadow:var(--shadow-sm); }
.gloss-item b { font-family:'Epilogue', sans-serif; font-weight:800; color:var(--brand); font-size:15.5px; display:block; margin-bottom:6px; }
.gloss-item p { font-size:13.5px; color:var(--ink-2); line-height:1.6; margin:0; }
/* Collapsible glossary */
.gloss-section{padding:48px 0}
.gloss-details{max-width:1080px;margin:0 auto}
.gloss-summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:4px 0}
.gloss-summary::-webkit-details-marker{display:none}
.gloss-summary .kicker{margin-bottom:6px}
.gloss-summary h2{font-family:'Epilogue',Inter,sans-serif;font-size:clamp(20px,2.2vw,26px);font-weight:800;letter-spacing:-.02em;color:var(--ink);margin:0}
.gloss-summary h2 em{font-style:normal;color:var(--brand)}
.gloss-toggle{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--brand);background:var(--bg-soft);border:1px solid var(--line);padding:10px 16px;border-radius:999px;white-space:nowrap;flex-shrink:0;transition:all .2s}
.gloss-toggle:hover{background:var(--brand);color:#fff;border-color:var(--brand)}
.gloss-toggle svg{transition:transform .25s}
.gloss-details[open] .gloss-toggle svg{transform:rotate(180deg)}
.gt-label::after{content:"Show"}
.gloss-details[open] .gt-label::after{content:"Hide"}
.gloss-details .gloss-grid{margin-top:26px}
@media(max-width:768px) { .gloss-grid { grid-template-columns:1fr; } }

/* ============ KICKER (consistent across new sections) ============ */
.kicker { display:inline-block; padding:6px 14px; background:rgba(0,78,147,.08); color:var(--brand); border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:12px; }


/* ============ FORM VALIDATION STYLES ============ */
.field-error { display:block; min-height:0; font-size:12px; color:var(--red); margin-top:4px; line-height:1.4; transition:min-height .15s; font-family:'Inter', sans-serif; }
.field-error.show { min-height:18px; }
.demo-input.invalid, .demo-select.invalid, .demo-textarea.invalid { border-color:var(--red) !important; background:rgba(239,68,68,0.04); }
.demo-input.invalid:focus, .demo-select.invalid:focus, .demo-textarea.invalid:focus { box-shadow:0 0 0 3px rgba(239,68,68,0.12); }
.demo-input.valid, .demo-select.valid { border-color:var(--green); }
.form-banner-error { display:none; background:rgba(239,68,68,.08); border:1px solid rgba(239,68,68,.3); color:var(--red); padding:11px 14px; border-radius:10px; font-size:13.5px; margin-bottom:14px; font-weight:600; }
.form-banner-error.show { display:block; }


.vm-sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
/* Make sure modal sits above everything including the demo modal */
.vm-modal { z-index:10000 !important; }
.vt-card { -webkit-tap-highlight-color:transparent; }



/* ============ HERO: Managed Implementation Highlight Card ============ */
.hero-mih-card{position:relative;background:linear-gradient(155deg,#fff 0%,#fcfdff 100%);border:2px solid #FFCC33;border-radius:20px;padding:24px 26px;box-shadow:0 30px 80px -20px rgba(255,204,51,.42),0 10px 30px -10px rgba(6,33,68,.45)}
.hero-mih-card::before{content:"";position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;background:linear-gradient(135deg,#FFCC33 0%,#FFE39A 50%,#FFCC33 100%);border-radius:22px;z-index:-1;opacity:.4;filter:blur(10px)}
.mih-ribbon{display:inline-flex;align-items:center;gap:6px;background:#062144;color:#FFCC33;padding:5px 11px 5px 9px;border-radius:999px;font-family:Inter,Arial,sans-serif;font-size:10.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:14px}
.mih-ribbon-ic{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;background:#FFCC33;color:#062144;border-radius:50%}
.mih-title{font-family:'Epilogue',Inter,sans-serif;font-size:clamp(18px,2vw,22px);font-weight:800;color:#062144;line-height:1.15;margin:0 0 6px;letter-spacing:-.02em}
.mih-title-accent{background:linear-gradient(90deg,#004e93 0%,#0a6ab5 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.mih-sub{font-size:13px;color:#475569;line-height:1.5;margin:0 0 16px}
.mih-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:16px;padding:14px 6px;background:linear-gradient(180deg,rgba(0,78,147,.04) 0%,rgba(255,204,51,.07) 100%);border-radius:12px;border:1px solid rgba(0,78,147,.08)}
.mih-pillar{text-align:center;position:relative}
.mih-pillar:not(:last-child)::after{content:"";position:absolute;right:-4px;top:18%;bottom:18%;width:1px;background:rgba(6,33,68,.1)}
.mih-pillar-big{font-family:'Epilogue',Inter,sans-serif;font-size:28px;font-weight:800;color:#004e93;line-height:1;letter-spacing:-.03em}
.mih-pillar-tag{display:inline-block;font-size:9.5px;font-weight:700;color:#FFCC33;text-transform:uppercase;letter-spacing:.08em;margin-top:3px;background:#062144;padding:2px 6px;border-radius:4px}
.mih-pillar-cap{font-size:10.5px;color:#475569;line-height:1.3;margin-top:7px;font-weight:500;padding:0 4px}
.mih-checks{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:8px}
.mih-checks li{display:flex;align-items:flex-start;gap:9px;font-size:12.5px;color:#1e293b;line-height:1.45;font-weight:500}
.mih-tick{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:rgba(16,185,129,.15);color:#10b981;margin-top:1px}
.mih-foot{font-size:11.5px;color:#64748b;font-style:italic;text-align:center;padding-top:12px;border-top:1px dashed rgba(6,33,68,.12);margin:0}
@media(max-width:980px){.hero-mih-card{padding:20px 22px}.mih-title{font-size:21px}.mih-pillar-big{font-size:25px}}
@media(max-width:560px){.mih-pillar-big{font-size:22px}.mih-pillar-cap{font-size:10px}.mih-checks li{font-size:12px}}

/* ============ KEY FEATURES SECTION ============ */
.kf-section{padding:80px 0;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%)}
.kf-head{text-align:center;max-width:760px;margin:0 auto 40px;padding:0 16px}
.kf-kicker{font-size:11.5px;font-weight:700;color:#004e93;letter-spacing:.14em;text-transform:uppercase;margin-bottom:10px}
.kf-h{font-family:'Epilogue',Inter,sans-serif;font-size:clamp(20px,2.4vw,28px);font-weight:800;color:#062144;line-height:1.15;letter-spacing:-.02em;margin:0 0 10px}
.kf-sub{font-size:15px;color:#475569;line-height:1.6;margin:0}
.kf-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:1180px;margin:0 auto;padding:0 16px}
.kf-card{background:#fff;border:1px solid #e5e9f2;border-radius:14px;padding:22px 22px 20px;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;position:relative;overflow:hidden}
.kf-card:hover{transform:translateY(-4px);box-shadow:0 14px 32px -12px rgba(0,78,147,.18),0 4px 10px rgba(6,33,68,.06);border-color:rgba(0,78,147,.18)}
.kf-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#004e93,#FFCC33);transform:scaleX(0);transform-origin:left;transition:transform .3s ease}
.kf-card:hover::before{transform:scaleX(1)}
.kf-ic{width:42px;height:42px;border-radius:11px;background:linear-gradient(135deg,rgba(0,78,147,.08),rgba(255,204,51,.12));display:flex;align-items:center;justify-content:center;color:#004e93;margin-bottom:14px}
.kf-ic svg{width:22px;height:22px}
.kf-title{font-family:'Epilogue',Inter,sans-serif;font-size:16px;font-weight:700;color:#062144;line-height:1.3;margin:0 0 6px;letter-spacing:-.01em}
.kf-desc{font-size:13px;color:#475569;line-height:1.55;margin:0 0 12px}
.kf-stat{display:inline-flex;align-items:baseline;gap:4px;background:linear-gradient(135deg,rgba(255,204,51,.18),rgba(255,204,51,.08));border:1px solid rgba(255,204,51,.4);padding:5px 10px;border-radius:8px;font-size:11.5px;font-weight:700;color:#062144}
.kf-stat b{color:#004e93;font-size:13px}
@media(max-width:900px){.kf-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.kf-grid{grid-template-columns:1fr;gap:12px}.kf-section{padding:56px 0}}

/* ============ INDUSTRIES (TABBED) ============ */
.ind-section{padding:80px 0;background:#062144;color:#fff;position:relative;overflow:hidden}
.ind-section::before{content:"";position:absolute;top:-40%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,rgba(255,204,51,.1) 0%,transparent 60%);pointer-events:none}
.ind-section::after{content:"";position:absolute;bottom:-30%;left:-10%;width:500px;height:500px;background:radial-gradient(circle,rgba(0,78,147,.35) 0%,transparent 60%);pointer-events:none}
.ind-head{text-align:center;max-width:780px;margin:0 auto 36px;position:relative;z-index:1;padding:0 16px}
.ind-kicker{font-size:11.5px;font-weight:700;color:#FFCC33;letter-spacing:.14em;text-transform:uppercase;margin-bottom:10px}
.ind-h{font-family:'Epilogue',Inter,sans-serif;font-size:clamp(20px,2.4vw,28px);font-weight:800;color:#fff;line-height:1.15;letter-spacing:-.02em;margin:0 0 10px}
.ind-h em{color:#FFCC33;font-style:normal}
.ind-sub{font-size:15px;color:rgba(255,255,255,.7);line-height:1.6;margin:0}
.ind-tabs{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;max-width:1180px;margin:0 auto 28px;padding:0 16px;position:relative;z-index:1}
.ind-tab{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.85);font-family:Inter,Arial,sans-serif;font-size:13px;font-weight:600;padding:9px 16px;border-radius:999px;cursor:pointer;transition:all .2s ease}
.ind-tab svg{width:15px;height:15px;color:rgba(255,204,51,.85)}
.ind-tab:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2);color:#fff}
.ind-tab.active{background:#FFCC33;border-color:#FFCC33;color:#062144;font-weight:700;box-shadow:0 4px 14px rgba(255,204,51,.3)}
.ind-tab.active svg{color:#062144}
.ind-tab:focus-visible{outline:2px solid #FFCC33;outline-offset:2px}
.ind-panels{position:relative;z-index:1;max-width:1180px;margin:0 auto;padding:0 16px}
.ind-panel{display:none;grid-template-columns:1.15fr 1fr;gap:24px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:28px;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.ind-panel.active{display:grid;animation:indFade .35s ease}
@keyframes indFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.ind-copy{display:flex;flex-direction:column;gap:16px}
.ind-customers{font-size:11px;font-weight:600;color:rgba(255,255,255,.55);letter-spacing:.04em}
.ind-customers span{font-size:10.5px;color:rgba(255,204,51,.7);text-transform:uppercase;letter-spacing:.08em;margin-right:6px}
.ind-pain{font-size:14px;color:rgba(255,255,255,.7);line-height:1.55;font-style:italic;padding:12px 14px;background:rgba(255,255,255,.04);border-left:3px solid rgba(255,204,51,.5);border-radius:6px;margin:0}
.ind-wins{display:flex;flex-direction:column;gap:14px}
.ind-win{display:flex;align-items:flex-start;gap:14px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.ind-win:last-child{border-bottom:none}
.ind-win-big{flex-shrink:0;font-family:'Epilogue',Inter,sans-serif;font-size:26px;font-weight:800;color:#FFCC33;line-height:1;letter-spacing:-.02em;min-width:70px}
.ind-win-big sup{font-size:13px;font-weight:700;color:rgba(255,204,51,.75);margin-left:1px;vertical-align:baseline;top:0}
.ind-win-txt{font-size:13px;color:rgba(255,255,255,.85);line-height:1.45;flex:1}
.ind-win-txt b{color:#fff;font-weight:600}
.ind-modules{display:flex;flex-direction:column;gap:10px;background:rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:18px}
.ind-mod-head{font-size:11.5px;font-weight:700;color:#FFCC33;letter-spacing:.1em;text-transform:uppercase;margin-bottom:4px}
.ind-mod-card{display:flex;flex-direction:column;gap:4px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:12px 14px;text-decoration:none;color:inherit;transition:all .2s ease}
.ind-mod-card:hover{background:rgba(255,204,51,.1);border-color:rgba(255,204,51,.4);transform:translateX(3px)}
.ind-mod-name{font-family:'Epilogue',Inter,sans-serif;font-size:14px;font-weight:700;color:#fff;letter-spacing:-.01em}
.ind-mod-why{font-size:12px;color:rgba(255,255,255,.65);line-height:1.4}
.ind-mod-cta{display:inline-flex;align-items:center;gap:4px;font-size:11.5px;font-weight:700;color:#FFCC33;margin-top:4px;letter-spacing:.01em}
.ind-mod-cta span{transition:transform .2s ease}
.ind-mod-card:hover .ind-mod-cta span{transform:translateX(3px)}
@media(max-width:900px){
  .ind-panel{grid-template-columns:1fr;padding:22px;gap:20px}
  .ind-tabs{gap:6px}
  .ind-tab{font-size:12px;padding:8px 12px}
}
@media(max-width:560px){
  .ind-section{padding:56px 0}
  .ind-panel{padding:18px}
  .ind-win-big{font-size:22px;min-width:62px}
}


/* === SECTION NAV FAB (floating bottom-right with popup menu) === */
.snf-wrap{position:fixed;bottom:24px;right:24px;z-index:60;opacity:0;transform:translateY(8px);transition:opacity .25s ease,transform .25s ease;pointer-events:none}
.snf-wrap.snf-visible{opacity:1;transform:translateY(0);pointer-events:auto}
.snf-btn{width:52px;height:52px;border-radius:50%;background:var(--brand,#004e93);color:#fff;border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 18px rgba(6,33,68,.28),0 2px 6px rgba(6,33,68,.12);transition:transform .2s ease,box-shadow .2s ease;outline:none}
.snf-btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(6,33,68,.32),0 4px 8px rgba(6,33,68,.14)}
.snf-btn:focus-visible{box-shadow:0 0 0 3px rgba(255,204,51,.5),0 6px 18px rgba(6,33,68,.28)}
.snf-btn:active{transform:translateY(0)}
.snf-btn svg{width:22px;height:22px;transition:transform .25s ease;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.snf-wrap.snf-open .snf-btn svg{transform:rotate(90deg)}
.snf-tooltip{position:absolute;bottom:50%;right:64px;transform:translateY(50%);background:var(--brand-navy,#062144);color:#fff;padding:7px 12px;border-radius:8px;font-family:Inter,Arial,sans-serif;font-size:12px;font-weight:600;white-space:nowrap;letter-spacing:.01em;opacity:0;transition:opacity .2s ease,transform .2s ease;pointer-events:none;box-shadow:0 4px 12px rgba(6,33,68,.18)}
.snf-tooltip::after{content:"";position:absolute;right:-5px;top:50%;transform:translateY(-50%);width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid var(--brand-navy,#062144)}
.snf-btn:hover + .snf-tooltip,.snf-btn:focus-visible + .snf-tooltip{opacity:1;transform:translateY(50%) translateX(-2px)}
.snf-wrap.snf-open .snf-tooltip{opacity:0 !important}

.snf-panel{position:absolute;bottom:66px;right:0;background:#fff;border:1px solid var(--line,#e5e9f2);border-radius:14px;box-shadow:0 12px 32px rgba(6,33,68,.18),0 4px 10px rgba(6,33,68,.08);padding:8px;min-width:240px;max-width:280px;max-height:min(420px,70vh);overflow-y:auto;opacity:0;transform:translateY(8px) scale(.95);transform-origin:bottom right;transition:opacity .2s ease,transform .2s ease;pointer-events:none;scrollbar-width:thin;scrollbar-color:var(--line,#e5e9f2) transparent}
.snf-wrap.snf-open .snf-panel{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.snf-panel::-webkit-scrollbar{width:6px}
.snf-panel::-webkit-scrollbar-thumb{background:var(--line,#e5e9f2);border-radius:3px}
.snf-panel-head{padding:8px 12px 6px;font-family:Inter,Arial,sans-serif;font-size:10.5px;font-weight:700;color:var(--muted,#64748b);letter-spacing:.1em;text-transform:uppercase;border-bottom:1px solid var(--line,#e5e9f2);margin-bottom:4px}
.snf-link{display:flex;align-items:center;gap:10px;padding:9px 12px;font-family:Inter,Arial,sans-serif;font-size:13px;font-weight:500;color:var(--ink,#0b1220);text-decoration:none;border-radius:8px;transition:background .15s ease,color .15s ease;line-height:1.3;cursor:pointer}
.snf-link:hover{background:rgba(0,78,147,.05);color:var(--brand,#004e93)}
.snf-link:focus-visible{outline:2px solid var(--accent,#FFCC33);outline-offset:-1px}
.snf-dot{flex-shrink:0;width:6px;height:6px;border-radius:50%;background:var(--line,#e5e9f2);transition:all .2s ease}
.snf-link:hover .snf-dot{background:var(--muted,#64748b)}
.snf-link.snf-active{background:rgba(0,78,147,.07);color:var(--brand,#004e93);font-weight:600}
.snf-link.snf-active .snf-dot{background:var(--accent,#FFCC33);width:8px;height:8px;box-shadow:0 0 0 3px rgba(255,204,51,.2)}
.snf-link-num{flex-shrink:0;font-size:11px;color:var(--muted,#64748b);font-weight:600;min-width:14px;font-variant-numeric:tabular-nums}
.snf-link.snf-active .snf-link-num{color:var(--brand,#004e93)}

@media(max-width:600px){
  .snf-wrap{bottom:18px;right:18px}
  .snf-btn{width:48px;height:48px}
  .snf-panel{right:0;min-width:220px;max-width:calc(100vw - 40px)}
  .snf-tooltip{display:none}
}
@media(prefers-reduced-motion:reduce){
  .snf-wrap,.snf-btn,.snf-btn svg,.snf-panel,.snf-link,.snf-dot{transition:none !important}
}


/* Hidden cost — implementation/support highlight cards (competitor differentiator) */
.cost-head .cost-sub{display:block;max-width:780px;margin:14px auto 0;font-size:14.5px;line-height:1.55;color:rgba(255,255,255,.7);font-weight:400;font-style:normal}
.cost-head h2 em{font-style:normal;color:#FFCC33;background:linear-gradient(180deg,transparent 62%,rgba(255,204,51,.18) 62%);padding:0 4px}



.cost-grid{grid-template-columns:repeat(6,1fr) !important;gap:12px !important}
.cost-grid .cost-card{padding:18px 14px !important;display:flex !important;flex-direction:column}
.cost-grid .cost-card .num{font-size:clamp(20px,2.2vw,28px) !important;letter-spacing:-.02em !important}
.cost-grid .cost-card .label{font-size:11px !important;line-height:1.45 !important;flex:1 1 auto}
/* Green 247HRM "flip" footer — mirrors the modules' green stat footers */
.cost-grid .cost-card .cost-fix{margin-top:14px;padding:8px 10px;border-radius:9px;background:rgba(16,185,129,.13);border:1px solid rgba(16,185,129,.32);color:#34d399;font-size:11px;font-weight:800;line-height:1.32;letter-spacing:-.01em;display:flex;gap:5px;align-items:flex-start;text-align:left}
.cost-grid .cost-card .cost-fix .cf-arrow{color:#34d399;font-weight:800;flex-shrink:0}
.cost-grid .cost-card:hover .cost-fix{background:rgba(16,185,129,.2);border-color:rgba(16,185,129,.5)}
@media(max-width:1100px){.cost-grid{grid-template-columns:repeat(3,1fr) !important}}
@media(max-width:680px){.cost-grid{grid-template-columns:repeat(2,1fr) !important}}

/* =====
<script type="application/ld+json">

{"@context":"https://schema.org","@type":"ItemList","@id":"https://www.247hrm.com/#video-testimonials","name":"247HRM customer video testimonials","description":"Recorded interviews with CFOs, HR heads, and IT leaders from eight 247HRM customer organisations across automotive, healthcare, IT services, and CA firms in India.","numberOfItems":8,"itemListOrder":"https://schema.org/ItemListOrderAscending","itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"VideoObject","name":"From Excel Chaos to 99 percent Error-Free Payroll - How 247HRM Transformed Fortune Group","description":"Ravi Prakash, CFO of Fortune Group, on moving 2,000-plus employees across 8 automotive dealership companies from Excel-based payroll to 247HRM. Salaries now dispersed by the 5th of every month, customer since 2017.","thumbnailUrl":"https://i.ytimg.com/vi/8g-zAYbCJRY/hqdefault.jpg","uploadDate":"2026-04-21","contentUrl":"https://www.youtube.com/watch?v=8g-zAYbCJRY","embedUrl":"https://www.youtube.com/embed/8g-zAYbCJRY","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":2,"item":{"@type":"VideoObject","name":"Attendance Tracking, Cloud Payroll and Zero Errors - Fortune Group HR Transformation","description":"Anuradha Mathur, Group General Manager HR at Fortune Group, on a 9-year partnership with 247HRM. Covers error-free payroll, GPS field staff tracking, live dashboards, and 24/7 team access for 2,000 employees across 2 states.","thumbnailUrl":"https://i.ytimg.com/vi/mSDSw2vqNug/hqdefault.jpg","uploadDate":"2026-04-21","contentUrl":"https://www.youtube.com/watch?v=mSDSw2vqNug","embedUrl":"https://www.youtube.com/embed/mSDSw2vqNug","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":3,"item":{"@type":"VideoObject","name":"How 247HRM Helped illumifin Simplify HR Operations and Boost Payroll Accuracy","description":"Rahul, Head of HR at illumifin, on a 4-year partnership with 247HRM. Covers a unified HR portal, payroll accuracy improvements, 9-Box Performance Management, and 24/7 customer support.","thumbnailUrl":"https://i.ytimg.com/vi/BiJ1dHZZzXE/hqdefault.jpg","uploadDate":"2026-04-21","contentUrl":"https://www.youtube.com/watch?v=BiJ1dHZZzXE","embedUrl":"https://www.youtube.com/embed/BiJ1dHZZzXE","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":4,"item":{"@type":"VideoObject","name":"From 0 to 1,250-plus Employees - How 247HRM Powered illumifin India Growth","description":"Rahul, Head of HR at illumifin India LLP, on scaling from Day 1 of India operations to 1,250-plus employees across 4 locations. 247HRM as a growth partner through every stage.","thumbnailUrl":"https://i.ytimg.com/vi/JaBqS8JFhZg/hqdefault.jpg","uploadDate":"2026-04-21","contentUrl":"https://www.youtube.com/watch?v=JaBqS8JFhZg","embedUrl":"https://www.youtube.com/embed/JaBqS8JFhZg","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":5,"item":{"@type":"VideoObject","name":"247HRM Client Testimonial - Prathima Hospitals","description":"Sudheer Reddy, IT Head at Prathima Hospitals, on using 247HRM Attendance, Leave Management, and Performance Management System. Covers streamlined leave requests, biometric punch-ins, and integrated HR functions.","thumbnailUrl":"https://i.ytimg.com/vi/3d0q4lV0iKE/hqdefault.jpg","uploadDate":"2024-02-01","contentUrl":"https://www.youtube.com/watch?v=3d0q4lV0iKE","embedUrl":"https://www.youtube.com/embed/3d0q4lV0iKE","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":6,"item":{"@type":"VideoObject","name":"247HRM Client Testimonial - Harsha Toyota","description":"Samrat, HR Manager at Harsha Toyota, on a 10-plus year journey with 247HRM. Witnessed the transformation from manual to digital, including adoption of modern modules in 2018 and the mobile application.","thumbnailUrl":"https://i.ytimg.com/vi/6O_-8AuKMK8/hqdefault.jpg","uploadDate":"2024-02-14","contentUrl":"https://www.youtube.com/watch?v=6O_-8AuKMK8","embedUrl":"https://www.youtube.com/embed/6O_-8AuKMK8","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":7,"item":{"@type":"VideoObject","name":"247HRM Client Testimonial - Infosun","description":"Nikita, HR Manager at Infosun, on how 247HRM automated critical HR processes including Employee Self-Service, Document Management, Communications, Offer Letter Generation, and document verification.","thumbnailUrl":"https://i.ytimg.com/vi/eCR7l5M-qek/hqdefault.jpg","uploadDate":"2024-02-01","contentUrl":"https://www.youtube.com/watch?v=eCR7l5M-qek","embedUrl":"https://www.youtube.com/embed/eCR7l5M-qek","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}},{"@type":"ListItem","position":8,"item":{"@type":"VideoObject","name":"247HRM Testimonial from Laxminiwas and Company","description":"Shiva from Laxminiwas and Company shares his 247HRM customer experience and how it transformed their workplace.","thumbnailUrl":"https://i.ytimg.com/vi/Wjfgodr-0zk/hqdefault.jpg","uploadDate":"2023-10-31","contentUrl":"https://www.youtube.com/watch?v=Wjfgodr-0zk","embedUrl":"https://www.youtube.com/embed/Wjfgodr-0zk","publisher":{"@id":"https://www.247hrm.com/#organization"},"inLanguage":"en-IN"}}]}

</script>
 HOMEPAGE: customer video testimonials slider ===== */
/* ===== VIDEO TESTIMONIALS ===== */
  .vtesti-section{padding:84px 0;background:linear-gradient(180deg,#fff 0%,var(--bg-soft) 100%);position:relative;overflow:hidden}
  .vtesti-section::before{content:"";position:absolute;top:-100px;right:-100px;width:300px;height:300px;background:radial-gradient(circle,rgba(255,204,51,0.08) 0%,transparent 70%);border-radius:50%;pointer-events:none}
  .vtesti-head{text-align:center;max-width:780px;margin:0 auto 40px;position:relative;z-index:1}
  .vtesti-h{font-family:'Epilogue',sans-serif;font-size:clamp(20px,2.4vw,28px);font-weight:800;color:var(--brand-navy);line-height:1.15;margin:10px 0 14px;letter-spacing:-0.02em}
  .vtesti-sub{font-size:15px;color:var(--ink-2);line-height:1.6;margin:0 auto;max-width:680px}
  .vtesti-slider-wrap{position:relative;padding:0 8px}
  .vtesti-track{display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding:8px 4px 32px;scrollbar-width:thin;scrollbar-color:rgba(6,33,68,0.25) rgba(6,33,68,0.05);-webkit-overflow-scrolling:touch}
  .vtesti-track::-webkit-scrollbar{height:6px}
  .vtesti-track::-webkit-scrollbar-track{background:rgba(6,33,68,0.05);border-radius:3px}
  .vtesti-track::-webkit-scrollbar-thumb{background:rgba(6,33,68,0.25);border-radius:3px}
  .vtesti-track::-webkit-scrollbar-thumb:hover{background:rgba(6,33,68,0.4)}
  .vtesti-track:focus-visible{outline:3px solid var(--accent);outline-offset:4px;border-radius:8px}
  .vt-card{flex:0 0 360px;scroll-snap-align:start;background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:0 4px 14px rgba(6,33,68,0.06);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;display:flex;flex-direction:column;position:relative}
  .vt-card:hover{transform:translateY(-4px);box-shadow:0 14px 32px rgba(6,33,68,0.14);border-color:rgba(255,204,51,0.5)}
  .vt-thumb{position:relative;aspect-ratio:16/9;background:var(--brand-navy);overflow:hidden;cursor:pointer}
  .vt-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease,filter .25s ease}
  .vt-card:hover .vt-thumb img{transform:scale(1.05);filter:brightness(0.92)}
  .vt-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:68px;height:68px;border-radius:50%;background:rgba(255,255,255,0.96);color:var(--brand);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 22px rgba(0,0,0,0.32);transition:all .25s ease;padding-left:5px;z-index:2}
  .vt-card:hover .vt-play{background:var(--accent);transform:translate(-50%,-50%) scale(1.08);color:var(--brand-navy);box-shadow:0 8px 26px rgba(255,204,51,0.5)}
  .vt-play:focus-visible{outline:3px solid var(--accent);outline-offset:3px}
  .vt-badge{position:absolute;top:12px;left:12px;background:rgba(255,255,255,0.95);color:var(--brand-navy);font-size:10.5px;font-weight:700;padding:5px 9px;border-radius:4px;letter-spacing:0.05em;text-transform:uppercase;z-index:2}
  .vt-duration{position:absolute;bottom:10px;right:10px;background:rgba(6,33,68,0.88);color:#fff;font-size:11px;font-weight:600;padding:4px 8px;border-radius:4px;letter-spacing:0.04em;text-transform:uppercase;z-index:2}
  .vt-meta{padding:18px 20px 22px;flex:1;display:flex;flex-direction:column}
  .vt-name{font-family:'Epilogue',sans-serif;font-size:17px;font-weight:800;color:var(--brand-navy);margin:0 0 3px;line-height:1.2;letter-spacing:-0.01em}
  .vt-role{font-size:12.5px;color:var(--muted);margin:0 0 12px;line-height:1.4;font-weight:500}
  .vt-quote{font-size:13.5px;color:var(--ink-2);line-height:1.5;margin:0 0 12px;font-style:italic;border-left:3px solid var(--accent);padding-left:12px}
  .vt-yt-link{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:600;color:var(--brand);text-decoration:none;margin-top:auto;padding-top:4px;letter-spacing:0.01em;transition:color .15s}
  .vt-yt-link:hover{color:var(--accent-deep);text-decoration:underline}
  .vt-yt-link svg{flex-shrink:0}

  .vtesti-arrow{position:absolute;top:32%;transform:translateY(-50%);width:50px;height:50px;border-radius:50%;background:#fff;border:1px solid var(--line);color:var(--brand-navy);cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 14px rgba(6,33,68,0.14);z-index:3;transition:all .2s ease}
  .vtesti-arrow:hover:not(:disabled){background:var(--brand);color:#fff;border-color:var(--brand);transform:translateY(-50%) scale(1.08)}
  .vtesti-arrow:focus-visible{outline:3px solid var(--accent);outline-offset:3px}
  .vtesti-arrow:disabled{opacity:0.35;cursor:not-allowed}
  .vtesti-prev{left:-22px}
  .vtesti-next{right:-22px}

  .vtesti-dots{display:flex;justify-content:center;gap:8px;margin-top:6px;flex-wrap:wrap;max-width:600px;margin-left:auto;margin-right:auto}
  .vtesti-dot{width:9px;height:9px;border-radius:50%;background:rgba(6,33,68,0.18);border:none;cursor:pointer;padding:0;transition:all .25s ease}
  .vtesti-dot:hover{background:rgba(6,33,68,0.35)}
  .vtesti-dot.active{background:var(--brand);width:28px;border-radius:5px}
  .vtesti-dot:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

  /* Video lightbox modal */
  .vt-lightbox{position:fixed;inset:0;background:rgba(6,33,68,0.92);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:9999;display:none;align-items:center;justify-content:center;padding:24px;opacity:0;transition:opacity .25s ease}
  .vt-lightbox.open{display:flex;opacity:1}
  .vt-lightbox-inner{position:relative;width:100%;max-width:1100px;animation:vtLbIn .35s cubic-bezier(.2,.9,.3,1.2)}
  @keyframes vtLbIn{from{transform:scale(0.92);opacity:0}to{transform:scale(1);opacity:1}}
  .vt-lightbox-frame{position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:14px;overflow:hidden;box-shadow:0 30px 90px rgba(0,0,0,0.5)}
  .vt-lightbox-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
  .vt-lightbox-close{position:absolute;top:-46px;right:0;width:38px;height:38px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);border-radius:50%;color:#fff;font-size:24px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.2s;padding:0}
  .vt-lightbox-close:hover{background:var(--accent);color:var(--brand-navy);border-color:var(--accent);transform:rotate(90deg)}
  .vt-lightbox-close:focus-visible{outline:3px solid var(--accent);outline-offset:2px}
  .vt-lightbox-caption{margin-top:18px;text-align:center;color:rgba(255,255,255,0.9);font-size:14px}
  .vt-lightbox-caption strong{display:block;font-family:'Epilogue',sans-serif;font-size:18px;font-weight:700;color:#fff;margin-bottom:4px}
  .vt-lightbox-yt{display:inline-flex;align-items:center;gap:6px;margin-top:14px;padding:9px 16px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.18);border-radius:999px;color:#fff;text-decoration:none;font-size:13px;font-weight:600;transition:.2s;letter-spacing:0.01em}
  .vt-lightbox-yt:hover{background:var(--accent);color:var(--brand-navy);border-color:var(--accent)}
  .vt-lightbox-yt svg{flex-shrink:0}
  @media(max-width:700px){
    .vt-lightbox{padding:16px}
    .vt-lightbox-close{top:-40px;width:34px;height:34px;font-size:22px}
  }
  body.vt-lb-open{overflow:hidden}

  @media(max-width:900px){
    .vt-card{flex:0 0 320px}
    .vtesti-prev{left:-8px}
    .vtesti-next{right:-8px}
    .vtesti-arrow{width:42px;height:42px}
    .vtesti-section{padding:60px 0}
  }
  @media(max-width:600px){
    .vt-card{flex:0 0 282px}
    .vtesti-arrow{display:none}
    .vtesti-track{padding-bottom:24px}
  }


/* ============================================================
   TABBED SECTIONS — 11 unique tab patterns
   ============================================================ */

/* === Universal tab pattern: hide non-active panels === */
[data-tabset] [data-tab-panel]{display:none}
[data-tabset] [data-tab-panel].active{display:block;animation:tsFade .35s cubic-bezier(.4,0,.2,1)}
@keyframes tsFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* =================================================================
   STYLE 1: HERO — Vertical step indicator (left rail of dots)
   ================================================================= */
.hero[data-tabset]{position:relative}
.ts-hero-rail{position:absolute;left:24px;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:14px;z-index:5}
.ts-hero-step{display:flex;flex-direction:column;align-items:center;gap:6px;background:transparent;border:none;cursor:pointer;padding:6px 4px;transition:opacity .25s ease;opacity:.45}
.ts-hero-step:hover{opacity:.85}
.ts-hero-step.active{opacity:1}
.ts-hero-step-num{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.25);color:#fff;display:flex;align-items:center;justify-content:center;font-family:'Epilogue',Inter,sans-serif;font-size:11px;font-weight:800;transition:all .25s ease}
.ts-hero-step.active .ts-hero-step-num{background:#FFCC33;border-color:#FFCC33;color:#062144;transform:scale(1.15);box-shadow:0 6px 16px rgba(255,204,51,.5)}
.ts-hero-step-lbl{font-family:Inter,Arial,sans-serif;font-size:9.5px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.08em;writing-mode:vertical-rl;transform:rotate(180deg);white-space:nowrap}
.ts-hero-step.active .ts-hero-step-lbl{color:#FFCC33}
.ts-hero-rail::before{content:"";position:absolute;left:13px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,204,51,.3),rgba(255,255,255,.1));z-index:-1}
@media(max-width:980px){.ts-hero-rail{left:8px}.ts-hero-step-lbl{display:none}}

/* =================================================================
   STYLE 2: CLIENTS — Industry filter chips
   ================================================================= */
.clients-band[data-tabset]{padding:50px 0 60px}
.ts-cl-filters{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;max-width:880px;margin:0 auto 24px;padding:0 16px}
.ts-cl-filter{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1.5px solid #e5e9f2;color:#062144;font-family:Inter,Arial,sans-serif;font-size:12.5px;font-weight:600;padding:8px 16px;border-radius:999px;cursor:pointer;transition:all .2s ease;letter-spacing:.01em}
.ts-cl-filter:hover{border-color:#FFCC33;background:#fffef9}
.ts-cl-filter.active{background:#062144;border-color:#062144;color:#FFCC33;font-weight:700;box-shadow:0 6px 14px rgba(6,33,68,.2)}
.ts-cl-filter-count{display:inline-block;background:rgba(255,255,255,.15);color:inherit;font-size:10px;font-weight:700;padding:2px 7px;border-radius:999px;margin-left:4px;opacity:.8}
.ts-cl-filter.active .ts-cl-filter-count{background:#FFCC33;color:#062144}

/* =================================================================
   STYLE 3: HIDDEN COST — Concentric ring selectors (3 tabs)
   ================================================================= */











@media(max-width:560px){}

/* =================================================================
   STYLE 4: KEY FEATURES — Diagonal sticky-note tabs (6 angled tags)
   ================================================================= */
.kf-section[data-tabset]{padding-bottom:50px}
.ts-kf-notes{display:flex;justify-content:center;gap:6px;max-width:1080px;margin:0 auto 36px;padding:0 16px 28px;flex-wrap:wrap;position:relative}
.ts-kf-note{background:#fff;border:1.5px solid #e5e9f2;color:#062144;font-family:Inter,Arial,sans-serif;font-size:12px;font-weight:700;padding:14px 16px 18px;border-radius:6px 6px 14px 14px;cursor:pointer;transform:rotate(-2deg);transition:all .25s ease;box-shadow:0 6px 14px -6px rgba(0,0,0,.1);position:relative;text-align:center;min-width:130px}
.ts-kf-note:nth-child(even){transform:rotate(1.5deg)}
.ts-kf-note::before{content:"";position:absolute;top:-7px;left:50%;transform:translateX(-50%);width:14px;height:14px;background:#FFCC33;border-radius:50%;border:2px solid #062144;box-shadow:0 2px 4px rgba(0,0,0,.15)}
.ts-kf-note:hover{transform:rotate(0) translateY(-4px);border-color:#FFCC33;box-shadow:0 14px 28px -8px rgba(255,204,51,.3)}
.ts-kf-note.active{background:linear-gradient(135deg,#FFCC33 0%,#FFE39A 100%);border-color:#FFCC33;transform:rotate(0) translateY(-8px) scale(1.05);box-shadow:0 18px 36px -8px rgba(255,204,51,.5)}
.ts-kf-note.active::before{background:#062144;border-color:#FFCC33}
.ts-kf-note-num{display:block;font-family:'Epilogue',Inter,sans-serif;font-size:18px;font-weight:800;color:#004e93;line-height:1;margin-bottom:3px;letter-spacing:-.02em}
.ts-kf-note.active .ts-kf-note-num{color:#062144}
.ts-kf-note-lbl{display:block;font-size:11px;line-height:1.2;font-weight:700}
@media(max-width:760px){.ts-kf-note{min-width:90px;padding:10px 12px 14px}.ts-kf-note-num{font-size:14px}.ts-kf-note-lbl{font-size:10px}}

/* Single-feature detail panel (replaces 6-card grid when tabbed) */
.ts-kf-detail{max-width:880px;margin:0 auto;padding:0 16px}
.ts-kf-detail-card{background:#fff;border:1.5px solid #e5e9f2;border-radius:18px;padding:34px;display:grid;grid-template-columns:auto 1fr;gap:28px;align-items:start;box-shadow:0 14px 36px -10px rgba(0,78,147,.12)}
.ts-kf-detail-ic{width:80px;height:80px;border-radius:18px;background:linear-gradient(135deg,#004e93 0%,#0a6ab5 100%);display:flex;align-items:center;justify-content:center;color:#FFCC33;flex-shrink:0}
.ts-kf-detail-ic svg{width:40px;height:40px}
.ts-kf-detail-title{font-family:'Epilogue',Inter,sans-serif;font-size:24px;font-weight:800;color:#062144;line-height:1.2;margin:0 0 8px;letter-spacing:-.02em}
.ts-kf-detail-desc{font-size:15px;color:#475569;line-height:1.6;margin:0 0 18px}
.ts-kf-detail-stat-row{display:flex;flex-wrap:wrap;gap:10px}
.ts-kf-detail-stat{display:inline-flex;align-items:baseline;gap:6px;background:linear-gradient(135deg,rgba(255,204,51,.18),rgba(255,204,51,.06));border:1px solid rgba(255,204,51,.45);padding:8px 14px;border-radius:10px;font-size:13px;font-weight:700;color:#062144}
.ts-kf-detail-stat b{color:#004e93;font-size:16px;font-family:'Epilogue',Inter,sans-serif}
@media(max-width:680px){.ts-kf-detail-card{grid-template-columns:1fr;padding:24px;gap:18px}.ts-kf-detail-ic{width:60px;height:60px}.ts-kf-detail-ic svg{width:30px;height:30px}}

/* =================================================================
   STYLE 5: ROI BENEFITS — Toggle switches (3 modes)
   ================================================================= */
.roi-section[data-tabset] .ts-roi-modes{display:flex;justify-content:center;gap:12px;max-width:680px;margin:0 auto 30px;padding:0 16px;flex-wrap:wrap}
.ts-roi-mode{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);color:#fff;font-family:Inter,Arial,sans-serif;font-size:13px;font-weight:600;padding:10px 18px 10px 14px;border-radius:14px;cursor:pointer;transition:all .25s ease}
.ts-roi-mode:hover{background:rgba(255,255,255,.08);border-color:rgba(255,204,51,.4)}
.ts-roi-mode.active{background:rgba(255,204,51,.15);border-color:#FFCC33;box-shadow:0 6px 16px rgba(255,204,51,.2)}
.ts-roi-mode-sw{position:relative;width:34px;height:18px;background:rgba(255,255,255,.12);border-radius:999px;flex-shrink:0;transition:background .25s ease}
.ts-roi-mode-sw::after{content:"";position:absolute;top:2px;left:2px;width:14px;height:14px;background:#fff;border-radius:50%;transition:transform .25s ease,background .25s ease}
.ts-roi-mode.active .ts-roi-mode-sw{background:#FFCC33}
.ts-roi-mode.active .ts-roi-mode-sw::after{transform:translateX(16px);background:#062144}
.ts-roi-mode-lbl{flex:1;text-align:left}
.ts-roi-mode-lbl b{display:block;font-size:13px;font-weight:700;color:#fff;margin-bottom:2px}
.ts-roi-mode.active .ts-roi-mode-lbl b{color:#FFCC33}
.ts-roi-mode-lbl span{display:block;font-size:11px;font-weight:500;color:rgba(255,255,255,.6)}

/* =================================================================
   STYLE 6: FACE — Phone-screen story dots
   ================================================================= */
.face-section[data-tabset]{padding:80px 0}
.ts-face-frame{max-width:980px;margin:0 auto;padding:0 16px;display:grid;grid-template-columns:1.1fr 1fr;gap:36px;align-items:center}
.ts-face-copy{display:flex;flex-direction:column;gap:14px}
.ts-face-copy h3{font-family:'Epilogue',Inter,sans-serif;font-size:clamp(22px,2.6vw,28px);font-weight:800;color:#fff;line-height:1.2;margin:0;letter-spacing:-.02em}
.ts-face-copy p{font-size:14.5px;line-height:1.6;color:rgba(255,255,255,.75);margin:0}
.ts-face-copy ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.ts-face-copy ul li{display:flex;align-items:flex-start;gap:8px;font-size:13.5px;color:rgba(255,255,255,.85);line-height:1.45}
.ts-face-copy ul li::before{content:"";flex-shrink:0;width:6px;height:6px;background:#FFCC33;border-radius:50%;margin-top:8px}
.ts-face-phone{position:relative;background:#062144;border:14px solid #0a1f3d;border-radius:42px;padding:0;box-shadow:0 30px 80px -20px rgba(0,0,0,.5),inset 0 0 0 2px rgba(255,255,255,.05);overflow:hidden;aspect-ratio:9/16;max-width:280px;margin:0 auto;display:flex;flex-direction:column}
.ts-face-phone::before{content:"";position:absolute;top:14px;left:50%;transform:translateX(-50%);width:60px;height:5px;background:#000;border-radius:3px;z-index:2}
.ts-face-phone-stories{display:flex;gap:4px;padding:24px 12px 12px;z-index:3;position:relative}
.ts-face-phone-stories i{flex:1;height:3px;background:rgba(255,255,255,.2);border-radius:2px;transition:background .25s ease;cursor:pointer}
.ts-face-phone-stories i.active{background:#FFCC33}
.ts-face-phone-content{flex:1;display:flex;align-items:center;justify-content:center;padding:20px;background:linear-gradient(180deg,rgba(0,78,147,.1),rgba(255,204,51,.08))}
.ts-face-phone-vis{text-align:center;color:#fff}
.ts-face-phone-vis-ic{display:inline-flex;align-items:center;justify-content:center;width:80px;height:80px;background:rgba(255,204,51,.15);border:1.5px solid rgba(255,204,51,.4);border-radius:50%;color:#FFCC33;margin-bottom:14px}
.ts-face-phone-vis-ic svg{width:40px;height:40px}
.ts-face-phone-vis-stat{font-family:'Epilogue',Inter,sans-serif;font-size:24px;font-weight:800;color:#FFCC33;line-height:1;margin-bottom:6px;letter-spacing:-.02em}
.ts-face-phone-vis-lbl{font-size:11px;font-weight:600;color:rgba(255,255,255,.85);text-transform:uppercase;letter-spacing:.08em}
@media(max-width:760px){.ts-face-frame{grid-template-columns:1fr}.ts-face-phone{max-width:240px}}

/* =================================================================
   STYLE 7: SUPPORT — Timeline ribbon (4 milestones)
   ================================================================= */












@media(max-width:680px){}









@media(max-width:680px){}

/* =================================================================
   STYLE 8: VIDEO TESTIMONIALS — Avatar carousel (5 customer avatars)
   ================================================================= */
.ts-vid-avatars{display:flex;justify-content:center;gap:18px;max-width:880px;margin:0 auto 30px;padding:0 16px;flex-wrap:wrap}
.ts-vid-avatar{display:flex;flex-direction:column;align-items:center;gap:8px;background:transparent;border:none;cursor:pointer;padding:4px;transition:transform .25s ease;position:relative}
.ts-vid-avatar:hover{transform:translateY(-4px)}
.ts-vid-avatar-circle{position:relative;width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#FFCC33 0%,#ff8a3c 100%);border:3px solid #fff;display:flex;align-items:center;justify-content:center;color:#062144;font-family:'Epilogue',Inter,sans-serif;font-weight:800;font-size:22px;letter-spacing:-.01em;transition:all .3s ease;box-shadow:0 8px 20px -6px rgba(0,0,0,.2)}
.ts-vid-avatar-circle::after{content:"";position:absolute;inset:-6px;border:2px solid transparent;border-radius:50%;transition:border-color .3s ease}
.ts-vid-avatar.active .ts-vid-avatar-circle{transform:scale(1.1)}
.ts-vid-avatar.active .ts-vid-avatar-circle::after{border-color:#FFCC33}
.ts-vid-avatar-play{position:absolute;bottom:-2px;right:-2px;width:24px;height:24px;background:#062144;color:#FFCC33;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid #fff;opacity:0;transition:opacity .25s ease}
.ts-vid-avatar.active .ts-vid-avatar-play{opacity:1}
.ts-vid-avatar-play svg{width:9px;height:9px}
.ts-vid-avatar-name{font-family:Inter,Arial,sans-serif;font-size:11.5px;font-weight:700;color:#062144;letter-spacing:.01em}
.ts-vid-avatar-co{font-size:10px;color:#64748b;font-weight:500;text-align:center}
.ts-vid-avatar.active .ts-vid-avatar-name{color:#004e93}

/* =================================================================
   STYLE 9: DEMO — Route picker (3 path cards)
   ================================================================= */
.final-cta[data-tabset]{padding:80px 0}
.ts-demo-paths{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:920px;margin:0 auto 30px;padding:0 16px}
.ts-demo-path{display:flex;flex-direction:column;align-items:flex-start;gap:6px;background:#fff;border:2px solid #e5e9f2;color:#062144;font-family:Inter,Arial,sans-serif;padding:18px 20px;border-radius:14px;cursor:pointer;transition:all .25s ease;text-align:left;position:relative;overflow:hidden}
.ts-demo-path::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#004e93,#FFCC33);transform:scaleX(0);transform-origin:left;transition:transform .25s ease}
.ts-demo-path:hover{border-color:#FFCC33;transform:translateY(-3px);box-shadow:0 14px 28px -8px rgba(255,204,51,.25)}
.ts-demo-path.active{border-color:#FFCC33;background:linear-gradient(135deg,#fff,#fffbe9)}
.ts-demo-path.active::before{transform:scaleX(1)}
.ts-demo-path-time{display:inline-block;font-size:10px;font-weight:700;color:#FFCC33;background:#062144;padding:3px 8px;border-radius:999px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px}
.ts-demo-path-title{font-family:'Epilogue',Inter,sans-serif;font-size:16px;font-weight:800;color:#062144;line-height:1.2;letter-spacing:-.01em}
.ts-demo-path-desc{font-size:12px;color:#475569;line-height:1.4;margin-top:2px}
@media(max-width:680px){.ts-demo-paths{grid-template-columns:1fr}}

/* =================================================================
   STYLE 10: FAQ — Category chips above accordion
   ================================================================= */
.ts-faq-cats{display:flex;justify-content:center;gap:8px;max-width:880px;margin:0 auto 24px;padding:0 16px;flex-wrap:wrap}
.ts-faq-cat{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1.5px solid #e5e9f2;color:#062144;font-family:Inter,Arial,sans-serif;font-size:12.5px;font-weight:600;padding:8px 16px;border-radius:8px;cursor:pointer;transition:all .2s ease}
.ts-faq-cat:hover{border-color:#FFCC33;background:#fffef9}
.ts-faq-cat.active{background:#004e93;border-color:#004e93;color:#fff;font-weight:700;box-shadow:0 6px 14px rgba(0,78,147,.25)}
.ts-faq-cat-ic{width:14px;height:14px;color:currentColor}



/* v5 credibility footnotes */
.roi-methodology{max-width:760px;margin:14px auto 0;font-size:12px;line-height:1.6;color:rgba(255,255,255,.55);text-align:center;}
.avail-note{margin:12px 0 0;font-size:11px;line-height:1.55;color:rgba(255,255,255,.5);}
.roi-proofnote{max-width:820px;margin:8px auto 0;padding:0 20px;font-size:12px;line-height:1.6;color:var(--muted,#64748b);text-align:center;}
.face-note{margin:10px 0 0;font-size:11.5px;line-height:1.55;color:rgba(255,255,255,.55);}
/* v5 modelled-ROI strip under each module suite */
.mod-roi{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:18px;}
.mod-roi-tag{font-size:10px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--green,#10b981);background:rgba(16,185,129,.12);padding:5px 10px;border-radius:999px;}
.mod-roi-pt{font-size:12.5px;line-height:1.1;color:var(--ink-2,#475569);background:#fff;border:1px solid var(--line,#e6e9f2);border-radius:999px;padding:6px 12px;}
.mod-roi-pt b{color:var(--brand,#004e93);font-weight:800;}
.mod-roi-pills{display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-width:0;}
/* official rating-platform logos (Industry Recognition) */
.tp-logo.tp-img{background:#fff;border:1px solid var(--line,#e5e9f2);box-shadow:0 2px 4px rgba(0,0,0,.05);padding:8px;}
.tp-logo.tp-img img{width:100%;height:100%;object-fit:contain;display:block;}

/* vtlb-fix */
/* Compact, always-visible video popup (modal lives at body end so no transformed
   ancestor traps the fixed positioning). Sized to fit every screen and keep the
   close button on-screen. */
.vt-lightbox{padding:16px !important}
.vt-lightbox-inner{max-width:640px !important;width:min(640px,94vw) !important}
.vt-lightbox-frame{max-height:62vh}
/* Solid, high-contrast close button pinned to the viewport corner so it's clearly
   visible at any popup/screen size. */
.vt-lightbox-close{position:fixed !important;top:14px !important;right:14px !important;width:44px !important;height:44px !important;background:#fff !important;color:#0b1220 !important;border:0 !important;opacity:1 !important;box-shadow:0 4px 16px rgba(0,0,0,.45) !important;font-size:26px !important;z-index:10001 !important}
.vt-lightbox-close:hover{background:var(--accent,#FFCC33) !important;color:#062144 !important;transform:rotate(90deg) !important}
@media(max-width:560px){.vt-lightbox-close{top:10px !important;right:10px !important;width:40px !important;height:40px !important}}
/* vtlb-fix-end */

/* riskwatch-logo-strip */
.clients-band{background:#fff !important;padding:56px 0 66px !important}
.clients-head{margin-bottom:38px !important}
.marquee{mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent) !important;-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent) !important}
/* gap:0 + per-logo margin-right makes translateX(-50%) land exactly on the
   duplicate set, so the loop is seamless (no half-gap jump). Slower duration. */
.marquee-track{gap:0 !important;align-items:center !important;animation-duration:75s !important}
.clogo{width:140px !important;height:68px !important;margin-right:34px !important;max-width:none !important;object-fit:contain !important;padding:0 !important;background:transparent !important;border:0 !important;border-radius:0 !important;box-shadow:none !important;filter:none !important;flex-shrink:0 !important}
.clogo:hover{transform:none !important;box-shadow:none !important;border:0 !important;opacity:.7 !important;transition:opacity .25s ease}
@media(max-width:560px){.clogo{width:106px !important;height:51px !important;margin-right:16px !important}}
/* riskwatch-logo-strip-end */

/* unify-chrome:footer-css */
@media (max-width: 900px){.support-footer{grid-template-columns: 1fr 1fr;}}
footer{background: var(--brand-navy); color: rgba(255,255,255,.7); padding: 64px 0 28px; position: relative; overflow: hidden;}
footer::before{content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 50%, var(--brand) 100%);}
.foot-top{display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);}
.foot-brand .foot-logo{margin-bottom: 20px;}
.foot-brand .foot-logo img{height: 44px; width: auto;}
.foot-brand .foot-addr{font-size: 13.5px; line-height: 1.65; margin-bottom: 18px; max-width: 340px;}
.foot-contact{display: flex; flex-direction: column; gap: 9px;}
.foot-contact a{display: inline-flex; gap: 8px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,.85); transition: color .2s;}
.foot-contact a:hover{color: var(--accent);}
.foot-contact svg{color: var(--accent); flex-shrink: 0;}
.foot-offices{font-size: 12px; color: rgba(255,255,255,.55); margin-top: 18px; line-height: 1.5;}
.foot-offices b{color: rgba(255,255,255,.85); font-weight: 700;}
.foot-col h5{color: white; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; position: relative; padding-bottom: 10px;}
.foot-col h5::after{content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--accent);}
.foot-col a{display: block; padding: 5px 0; font-size: 13.5px; color: rgba(255,255,255,.65); transition: all .2s;}
.foot-col a:hover{color: var(--accent); padding-left: 4px;}
.foot-social{display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px;}
.foot-social a{width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; transition: all .25s; padding: 0;}
.foot-social a:hover{background: var(--accent); border-color: var(--accent); transform: translateY(-3px);}
.foot-social a:hover svg{stroke: var(--brand);}
.foot-social svg{stroke: rgba(255,255,255,.9); transition: stroke .25s;}
.foot-bottom{padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,.5);}
.foot-bottom-links a{transition: color .2s; margin-left: 18px;}
.foot-bottom-links a:hover{color: var(--accent);}
@media (max-width: 980px){.foot-top{grid-template-columns: 1fr 1fr;}}
@media (max-width: 560px){.foot-top{grid-template-columns: 1fr;}}
footer{padding-top:32px !important;padding-bottom:18px !important}
.foot-top{padding-bottom:22px !important;gap:26px !important}
.foot-brand .foot-logo img{height:34px !important}
.foot-addr{font-size:12px !important;line-height:1.55 !important;margin:0 0 10px !important}
.foot-contact a,.foot-offices,.foot-col a{font-size:12px !important}
.foot-col h4{font-size:11.5px !important;letter-spacing:.08em;margin:0 0 12px !important;padding-bottom:6px !important}
.foot-col a{padding:3px 0 !important}
.foot-bottom{padding-top:18px !important;font-size:11.5px !important}
@media (max-width:980px){footer{padding-top:24px !important}}
.foot-certs{display:flex !important;flex-direction:column !important;gap:16px !important;align-items:flex-start !important;margin-top:4px}
.foot-cert-row{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.foot-cert{display:inline-flex !important;align-items:center;background:transparent !important;padding:0 !important;border-radius:0 !important;transition:transform .25s ease,filter .25s ease;flex-shrink:0;text-decoration:none}
.foot-cert:hover{transform:translateY(-2px);filter:drop-shadow(0 4px 10px rgba(255,204,51,.25))}
.foot-cert-row-bsi .foot-cert img{height:70px !important;width:auto !important;max-width:none !important;object-fit:contain !important;display:block}
.foot-cert-row-small .foot-cert img{height:70px !important;width:70px !important;max-width:70px !important;object-fit:contain !important;display:block;border-radius:50%}
@media(max-width:560px){.foot-cert-row-bsi .foot-cert img{height:60px !important}.foot-cert-row-small .foot-cert img{height:60px !important;width:60px !important;max-width:60px !important}}
footer{background:#0a1a30 !important;color:rgba(255,255,255,.7) !important;padding:48px 0 24px !important;position:relative;overflow:hidden}
footer::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#004e93 0%,#FFCC33 50%,#004e93 100%)}
footer .container{max-width:1240px;margin:0 auto;padding:0 24px;width:auto}
.foot-top{display:grid !important;grid-template-columns:1.6fr 1fr 1fr 1.1fr !important;gap:36px !important;padding-bottom:32px !important;border-bottom:1px solid rgba(255,255,255,.08) !important}
.foot-brand{}
.foot-brand .foot-logo{margin-bottom:16px}
.foot-brand .foot-logo img{height:38px !important;width:auto !important;display:block !important;max-width:200px}
.foot-addr{font-size:12.5px !important;line-height:1.6 !important;margin:0 0 14px !important;color:rgba(255,255,255,.7);max-width:340px}
.foot-contact{display:flex !important;flex-direction:column !important;gap:8px !important;margin-bottom:12px}
.foot-contact a{display:inline-flex !important;align-items:center !important;gap:8px !important;font-size:12.5px !important;color:rgba(255,255,255,.85) !important;text-decoration:none !important;transition:color .2s}
.foot-contact a:hover{color:#FFCC33 !important}
.foot-contact svg{color:#FFCC33;flex-shrink:0}
.foot-offices{font-size:12.5px !important;color:rgba(255,255,255,.65);margin:0 0 14px;line-height:1.55}
.foot-offices b{color:rgba(255,255,255,.85);font-weight:700}
.foot-social{display:flex !important;gap:10px !important;flex-wrap:wrap !important;margin-top:10px}
.foot-social a{width:34px !important;height:34px !important;border-radius:50% !important;background:rgba(255,255,255,.08) !important;border:1px solid rgba(255,255,255,.12) !important;display:grid !important;place-items:center !important;color:#fff !important;text-decoration:none !important;transition:all .2s}
.foot-social a:hover{background:#FFCC33 !important;color:#0a1a30 !important;border-color:#FFCC33 !important;transform:translateY(-2px)}
.foot-social svg{stroke:currentColor;fill:currentColor;width:15px;height:15px}
.foot-col{}
.foot-col h4{font-size:12px !important;font-weight:800 !important;color:#fff !important;letter-spacing:.12em !important;text-transform:uppercase !important;margin:0 0 14px !important;padding-bottom:8px !important;position:relative}
.foot-col h4::after{content:"";display:block;position:absolute;bottom:0;left:0;width:28px;height:2px;background:#FFCC33}
.foot-col a{display:block !important;padding:4px 0 !important;font-size:12.5px !important;color:rgba(255,255,255,.7) !important;text-decoration:none !important;transition:color .2s,padding-left .22s}
.foot-col a:hover{color:#FFCC33 !important;padding-left:4px !important}
.foot-bottom{display:flex !important;justify-content:space-between !important;flex-wrap:wrap !important;gap:14px !important;padding-top:18px !important;margin-top:0 !important;font-size:11.5px !important;color:rgba(255,255,255,.55)}
.foot-bottom-links{display:flex !important;gap:18px !important;flex-wrap:wrap}
.foot-bottom-links a{color:rgba(255,255,255,.55) !important;text-decoration:none !important;transition:color .2s}
.foot-bottom-links a:hover{color:#FFCC33 !important}
@media (max-width:980px){.foot-top{grid-template-columns:1fr 1fr !important;gap:28px !important}.foot-brand{grid-column:1 / -1}}
@media (max-width:560px){.foot-top{grid-template-columns:1fr !important;gap:22px !important}.foot-bottom{flex-direction:column;text-align:center}}
.foot-desc{font-size:12.5px;line-height:1.5;color:rgba(255,255,255,.62);margin:10px 0 4px;max-width:34ch}
.foot-col-products{display:grid;grid-template-columns:1fr 1fr;column-gap:24px}
.foot-col-products h4{grid-column:1 / -1}
@media (max-width:560px){.foot-col-products{grid-template-columns:1fr}}


/* pc-chrome v1 */
/* 1. kill the 1px sticky seam between the top strip and the main nav.
   The chrome CSS is injected twice with conflicting .topnav rules, so force
   a 1px overlap AND paint a navy bridge across the seam (never white).
   topstrip MUST stay position:sticky (it is a positioned element, so it still
   establishes the containing block for the ::after navy bridge) so the whole
   header pins to the top on scroll — do NOT revert it to position:relative. */
.topnav{margin-top:-1px !important}
.topstrip{position:sticky !important;top:0 !important;z-index:101}
.topstrip::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:3px;background:var(--brand-navy);pointer-events:none}
/* 2. footer tagline under the logo */
.foot-desc{font-size:12.5px;line-height:1.5;color:rgba(255,255,255,.62);margin:10px 0 4px;max-width:34ch}
/* 3. Products column in two balanced columns (h4 spans both) */
.foot-col-products{display:grid;grid-template-columns:1fr 1fr;column-gap:24px}
.foot-col-products h4{grid-column:1 / -1}
@media (max-width:560px){.foot-col-products{grid-template-columns:1fr}}
/* 4. linked review cards keep the card styling */
a.trust-p{text-decoration:none;color:inherit;cursor:pointer;transition:transform .18s,box-shadow .18s}
a.trust-p:hover{transform:translateY(-2px)}

/* perf-cv-v1: skip off-screen layout/paint on the long homepage */
.cost-band,.vtesti-section,.face-section,.ai-showcase,.support-section,.metrics-band,.trust-band,.final-cta,.gloss-section{content-visibility:auto;contain-intrinsic-size:auto 700px}

/* feedback: homepage polish v1 — cohesive card hover-lift + CTA micro-interactions + focus rings (design only) */
.cost-card,.support-card,.vt-card,.trust-p,.trust-badge-item,.support-pillar{transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s cubic-bezier(.4,0,.2,1)}
.cost-card:hover,.support-card:hover,.vt-card:hover,.trust-p:hover,.support-pillar:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.trust-badge-item:hover{transform:translateY(-3px)}
.ind-modules .mi{transition:transform .2s ease,background .2s ease,border-color .2s ease}
.ind-modules .mi:hover{transform:translateY(-2px);background:rgba(255,255,255,.06);border-color:rgba(255,204,51,.45)}
.btn-cta,.btn-yellow,.btn-ghost-white,.btn-ghost-light{transition:transform .18s ease,box-shadow .18s ease,filter .18s ease}
.btn-cta:hover,.btn-yellow:hover{transform:translateY(-2px);box-shadow:0 12px 26px -10px rgba(229,168,0,.5)}
.btn-ghost-white:hover,.btn-ghost-light:hover{transform:translateY(-2px)}
a:focus-visible,button:focus-visible{outline:2px solid var(--accent);outline-offset:2px;border-radius:6px}

/* feedback: hero grid mobile overflow fix — let grid columns shrink instead of forcing track width past the viewport */
.hero-grid>*{min-width:0}
.hero-dash{max-width:100%}

/* feedback: mobile grid collapse fix — re-assert mobile collapse past the doubly-injected grid rules */
@media(max-width:768px){.testi-grid{grid-template-columns:1fr!important;max-width:560px;margin-left:auto;margin-right:auto}}@media(max-width:1100px){.cost-grid{grid-template-columns:repeat(3,1fr)!important}}@media(max-width:680px){.cost-grid{grid-template-columns:repeat(2,1fr)!important}}

/* feedback: mobile safety net — no horizontal page scroll, responsive media */
html,body{overflow-x:clip}
img,svg,video,iframe{max-width:100%}

/* feedback: uniform type scale v2 — one font scale across every page (headings match 247hrm.com) */
body{font-family:'Inter',system-ui,sans-serif!important;font-size:16px!important;line-height:1.6!important}
p{font-size:16px!important;line-height:1.6!important}
h1,h2,h3,h4,h5,h6{font-family:'Epilogue',system-ui,sans-serif!important}
h1{font-size:clamp(28px,3.4vw,40px)!important;line-height:1.1!important}
h2{font-size:clamp(22px,2.6vw,30px)!important;line-height:1.2!important}
h3{font-size:clamp(17px,1.9vw,21px)!important;line-height:1.3!important}

/* feedback: h1 35px v1 — every page H1 (incl. hero) at a flat 35px */
h1{font-size:35px!important}
.hero h1,.ah-hero h1,.article h1,.legal-band h1{font-size:35px!important}

/* feedback: form sizes v2 — form headings 20px, fields 13px, field labels 10px (channel-partner scale) */
#demoModalTitle,#modalTitle,#formHeading,#demo-modal-title,.modal-h,.hf-h,.lead-card>h3,.form-card-top h2{font-size:20px!important;line-height:1.25!important}
.form-field input,.form-field select,.form-field textarea,.field input,.field select,.field textarea,.hf-field input,.hf-field select,.hf-field textarea,.mf-field input,.mf-field select,.mf-field textarea,.demo-input,.demo-select,.demo-textarea{font-size:13px!important}
.form-field label,.field label,.hf-field label,.mf-field label{font-size:10px!important}

/* feedback: section rhythm v1 — 50px top/bottom on content sections (heroes keep their padding) */
section:not(.hero):not(.ah-hero):not([class*="hero"]){padding-top:50px!important;padding-bottom:50px!important}

/* gpu-hardening-v1: GPU-compositing crash mitigation */
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}*{backdrop-filter:none!important;-webkit-backdrop-filter:none!important}}

/* hrm reveal-safe v1 */
@keyframes hrmRevealSafe{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
.reveal{animation:hrmRevealSafe .7s ease-out both}
@media(prefers-reduced-motion:reduce){.reveal{animation-duration:.01s}}


/* ===== /homepage-v7 PERF: skip rendering below-the-fold sections until scrolled
   near, so the initial layout/paint only covers the hero + clients band. This is
   the lever that keeps LCP fast even though the full page has ~2,670 DOM nodes.
   contain-intrinsic-size uses the "auto" keyword so Chrome remembers each
   sections real size after first render (better scrollbar + less CLS). The hero
   and clients band deliberately have NO content-visibility (they are the LCP). */
/* NOTE: #industries and #video-testimonials are intentionally EXCLUDED — their
   sliders measure card/scroll widths at init, which read 0 while a section is
   skipped by content-visibility. The rest are static and safe to defer. */
.cost-band,
#modules,
#face,
.ai-showcase,
#support,
.metrics-band,
.trust-band,
#demo,
#faq,
.gloss-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}


/* === User request (homepage): remove top utility strip + sticky menu + proof line === */
/* Remove the email/phone top utility strip on ALL viewports (mobile + desktop). */
.topstrip { display: none !important; }
/* With the strip gone, the sticky menu header sits at the very top on scroll. */
nav.topnav { top: 0 !important; }
/* Hero proof line: all three items 14px; "4.9 on G2" stays on one line. */
.hero-miniproof .hero-miniproof-stat { font-size: 14px; }
.hero-miniproof .hero-miniproof-g2 { white-space: nowrap; }
