/* ─────────────────────────────────────────────────────────────
   vendra-enterprise.css
   Global enterprise visual layer — applies to all Vendra pages.
   Overrides are additive: they sit on top of each page's inline
   styles without removing anything.
   ───────────────────────────────────────────────────────────── */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --bg-alt: #f0f4f8;   /* cooler section backgrounds */
  --border: #dde4ec;   /* slightly more visible borders */
}

/* ── Typography ─────────────────────────────────────────────── */
.vd-h2        { letter-spacing: -.03em; }
.vd-page-title { letter-spacing: -.03em; }

/* ── Homepage hero ──────────────────────────────────────────── */
.vd-hero::after { display: none; }   /* remove ambient glow */

.vd-hero-badge {
  background: transparent;
  border: none;
  border-left: 2px solid var(--brand);
  border-radius: 0;
  padding: 2px 0 2px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}
.vd-hero-badge-dot { display: none; }

.vd-hero-title {
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 800;
  letter-spacing: -.045em;
}

/* ── Trust strip: clean uppercase category bar ──────────────── */
.vd-trust-strip         { padding: 15px 0; border-top: 1px solid var(--border); }
.vd-trust-strip-label   { display: none; }
.vd-trust-strip-items   { gap: 36px; }
.vd-trust-strip-item    {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); opacity: 1; gap: 0;
}
.vd-trust-strip-item svg { display: none; }

/* ── Module cards ───────────────────────────────────────────── */
.vd-mod-cell:hover {
  background: var(--brand-lt);
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(26,58,92,.08);
}

/* ── Benefit section ────────────────────────────────────────── */
.vd-benefit-ico {
  background: transparent !important;
  color: var(--brand) !important;
}
.vd-benefit-ico svg { color: var(--brand); }
.vd-benefit { border-radius: 8px; }

/* ── Industry cards ─────────────────────────────────────────── */
.vd-ind-card { border-radius: 4px; }
.vd-ind-img  { height: 148px; }

/* ── Feature cards (industry & blog pages) ──────────────────── */
.vd-feat-card { border-radius: 6px; }

/* ── Step numbers ───────────────────────────────────────────── */
.vd-step-num {
  border-radius: 3px;
  background: transparent;
  border: 2px solid rgba(26,58,92,.2);
  color: var(--hero-bg);
}

/* ── Pricing ────────────────────────────────────────────────── */
.vd-price-card.vd-featured {
  border-color: var(--brand);
  box-shadow: 0 12px 40px rgba(26,58,92,.12);
}

/* ── CTA band: navy, not brand blue ─────────────────────────── */
.vd-cta { background: var(--hero-bg); }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 520px) {
  .vd-trust-strip-items { gap: 16px; }
  .vd-trust-strip-item  { font-size: 9px; letter-spacing: .09em; }
}
