/* ============================================================
   DigiVeritaz home — service-page theme overlay
   Scoped to body.home-themed.
   No effect on index.html or service pages.
   Strategy: take the original index.html structure verbatim,
   re-style every element to match the service-page design
   system (cream + ink + green-spot, Inter Tight + JetBrains
   Mono, flat cards, no halos, no gradients, no shadows).
   ============================================================ */

:root{
  --dvh-cream:#FBFBF0;
  --dvh-cream-2:#F4F4E8;
  --dvh-ink:#14141A;
  --dvh-ink-soft:#2a2a32;
  --dvh-text:#3a3a4a;
  --dvh-mute:#6b6b78;
  --dvh-text-on-dark:#cbd5e1;
  --dvh-mute-on-dark:#a1a1aa;
  --dvh-rule:rgba(20,20,26,.12);
  --dvh-rule-soft:rgba(20,20,26,.06);
  --dvh-spot:#22c55e;                /* decorative — backgrounds, borders, icons */
  --dvh-spot-text:#16a34a;           /* WCAG AA on cream — for type emphasis */
  --dvh-spot-soft:rgba(34,197,94,.12);
  --dvh-spot-border:rgba(34,197,94,.25);
  --dvh-ease:cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   MOTION LAYER — premium reveals, tilts, parallax
   ============================================================ */
/* Scroll reveal — fade + lift */
body.home-themed .dvh-reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .9s var(--dvh-ease), transform .9s var(--dvh-ease);
  will-change:opacity,transform;
}
body.home-themed .dvh-reveal.is-in{opacity:1;transform:translateY(0)}

/* Staggered children — applied via data-attr so a parent can stagger 8 cards cleanly */
body.home-themed [data-stagger] > *{
  opacity:0;transform:translateY(28px);
  transition:opacity .8s var(--dvh-ease), transform .8s var(--dvh-ease);
}
body.home-themed [data-stagger].is-in > *{opacity:1;transform:translateY(0)}
body.home-themed [data-stagger].is-in > *:nth-child(1){transition-delay:.05s}
body.home-themed [data-stagger].is-in > *:nth-child(2){transition-delay:.12s}
body.home-themed [data-stagger].is-in > *:nth-child(3){transition-delay:.19s}
body.home-themed [data-stagger].is-in > *:nth-child(4){transition-delay:.26s}
body.home-themed [data-stagger].is-in > *:nth-child(5){transition-delay:.33s}
body.home-themed [data-stagger].is-in > *:nth-child(6){transition-delay:.40s}
body.home-themed [data-stagger].is-in > *:nth-child(7){transition-delay:.47s}
body.home-themed [data-stagger].is-in > *:nth-child(8){transition-delay:.54s}

/* Tilt cards — perspective + smooth transform */
body.home-themed [data-tilt]{
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .55s var(--dvh-ease), border-color .35s, box-shadow .45s;
}
body.home-themed [data-tilt]:hover{
  z-index:2;
}
/* Children of tilt cards get a tiny lift toward viewer */
body.home-themed [data-tilt] > *{transform:translateZ(0)}

/* Parallax layers — JS sets transform; we just enable hardware accel */
body.home-themed [data-parallax]{will-change:transform}

/* Premium ease for any transition that hits these elements */
body.home-themed .why-item,
body.home-themed .rating-card,
body.home-themed .cs-tile,
body.home-themed .tcard2,
body.home-themed .brand-tile,
body.home-themed .wwd-row,
body.home-themed .pill-stat{
  transition:border-color .35s var(--dvh-ease), background .35s var(--dvh-ease), transform .45s var(--dvh-ease), box-shadow .45s var(--dvh-ease) !important;
}

@media (prefers-reduced-motion:reduce){
  body.home-themed .dvh-reveal,
  body.home-themed [data-stagger] > *{
    opacity:1 !important;transform:none !important;transition:none !important;
  }
  body.home-themed [data-parallax]{transform:none !important}
}

/* ===== Base ===== */
body.home-themed{
  background:var(--dvh-cream);
  color:var(--dvh-ink);
  font-family:'Inter','Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
}
body.home-themed ::selection{background:var(--dvh-ink);color:var(--dvh-cream)}
body.home-themed *{box-sizing:border-box}

/* Typography roles */
body.home-themed h1,
body.home-themed h2,
body.home-themed h3,
body.home-themed h4,
body.home-themed h5{
  font-family:'Inter Tight','Inter',sans-serif;
  font-weight:900;letter-spacing:-.045em;line-height:.95;
  color:var(--dvh-ink);
}
body.home-themed h2{font-size:clamp(2.2rem,4vw,3.6rem);font-weight:900;letter-spacing:-.04em;line-height:1.02}
body.home-themed h3{font-size:clamp(1.4rem,2vw,1.8rem);letter-spacing:-.025em;line-height:1.15;font-weight:800}
body.home-themed h4{font-size:1.1rem;font-weight:800;letter-spacing:-.015em}

/* Specifically the section-head h2 in the major sections — make them bolder & a little larger than body h2 */
body.home-themed .section-head h2,
body.home-themed .impact-head h2,
body.home-themed .sec-head h2{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(2.4rem,4.6vw,4rem) !important;
  font-weight:900 !important;
  letter-spacing:-.045em !important;
  line-height:1.02 !important;
  color:var(--dvh-ink) !important;
}
body.home-themed .section-head{max-width:880px !important}
body.home-themed .section-head p,
body.home-themed .impact-head p{
  font-size:1.08rem !important;line-height:1.6 !important;
  max-width:640px;margin:14px auto 0 !important;
}

body.home-themed p{
  font-family:'Inter',sans-serif;color:var(--dvh-text);line-height:1.65;
}

/* H2 spans = green italic spot (uses readable darker green on cream) */
body.home-themed h1 span,
body.home-themed h2 span,
body.home-themed h3 span,
body.home-themed .green_text,
body.home-themed .green{
  color:var(--dvh-spot-text) !important;
  font-style:italic;font-weight:900;
}

/* ===== Eyebrows ===== */
body.home-themed .eyebrow,
body.home-themed .section-head .eyebrow,
body.home-themed .impact-head .eyebrow,
body.home-themed .sec-head .kicker{
  display:inline-flex !important;align-items:center;gap:10px !important;
  padding:8px 14px !important;border-radius:999px !important;
  background:#ffffff !important;color:var(--dvh-ink) !important;
  border:1.5px solid var(--dvh-ink) !important;
  font-family:'JetBrains Mono',monospace !important;font-size:.72rem !important;font-weight:600 !important;
  letter-spacing:.16em !important;text-transform:uppercase !important;
  margin-bottom:18px !important;
}
body.home-themed .eyebrow:before,
body.home-themed .section-head .eyebrow:before,
body.home-themed .impact-head .eyebrow:before,
body.home-themed .sec-head .kicker:before{
  content:""!important;width:6px;height:6px;border-radius:50%;background:var(--dvh-ink);
}

/* Section heads consistent */
body.home-themed .section-head{text-align:center;margin:0 auto 48px;max-width:780px}
body.home-themed .section-head p,
body.home-themed .impact-head p{font-family:'Inter';color:var(--dvh-text);font-size:1.04rem;line-height:1.6}

/* ===== Buttons ===== */
body.home-themed main .btn,
body.home-themed main .pv-cta,
body.home-themed main .view-more,
body.home-themed main .more-link{
  display:inline-flex !important;align-items:center;gap:10px;
  padding:14px 24px !important;border-radius:12px !important;
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;
  border:1.5px solid var(--dvh-ink) !important;
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:700 !important;font-size:.96rem !important;letter-spacing:-.01em;
  box-shadow:none !important;filter:none !important;
  transition:background .28s,color .28s,border-color .28s,transform .25s !important;
  text-decoration:none !important;
}
body.home-themed main .btn:hover,
body.home-themed main .pv-cta:hover,
body.home-themed main .view-more:hover,
body.home-themed main .more-link:hover{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-spot) !important;
  transform:translateY(-2px) !important;filter:none !important;
}
body.home-themed main .btn-outline,
body.home-themed main .btn-ghost{
  background:transparent !important;color:var(--dvh-ink) !important;
  border:1.5px solid var(--dvh-ink) !important;
}
body.home-themed main .btn-outline:hover,
body.home-themed main .btn-ghost:hover{
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;
}

/* ============================================================
   HERO — Two-column editorial spread
   Left: type + CTAs + trust bar.  Right: 3 floating review cards.
   ============================================================ */
body.home-themed .hero{
  background:var(--dvh-cream) !important;
  padding:130px 0 100px !important;
  margin-top:-90px;
  position:relative;overflow:hidden;
  min-height:92vh;
  display:flex;align-items:center;
}
body.home-themed .hero:before,
body.home-themed .hero:after{display:none !important}

/* Decorative grid backdrop — very subtle */
body.home-themed .hero{
  background-image:
    linear-gradient(rgba(20,20,26,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(20,20,26,.025) 1px,transparent 1px) !important;
  background-size:80px 80px !important;
  background-color:var(--dvh-cream) !important;
}

/* hv-a is the active variant -> turn it into a 2-column grid */
body.home-themed .hero .container.hv-a{
  display:grid !important;
  grid-template-columns:1.15fr 0.85fr !important;
  gap:80px !important;
  align-items:center !important;
  max-width:1320px;
}

/* LEFT column ---------------------------------------------- */
body.home-themed .hv-a-text{text-align:left}
body.home-themed .hv-a .eyebrow{margin-bottom:24px !important}

body.home-themed .hv-a-title,
body.home-themed .hv-b-title,
body.home-themed .hv-c-title{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(2.4rem,5vw,4.6rem) !important;
  font-weight:900 !important;line-height:1 !important;letter-spacing:-.045em !important;
  color:var(--dvh-ink) !important;
  max-width:none !important;margin:0 0 22px !important;text-align:left !important;
}
body.home-themed .hv-a-title span,
body.home-themed .hv-b-title span,
body.home-themed .hv-c-title span{
  color:var(--dvh-spot-text) !important;font-style:italic !important;font-weight:900 !important;
}

body.home-themed .hero .lead,
body.home-themed .hv-a-lead{
  font-family:'Inter',sans-serif !important;
  font-size:clamp(1.05rem,1.2vw,1.18rem) !important;
  line-height:1.6 !important;color:var(--dvh-text) !important;
  max-width:580px !important;margin:0 0 32px !important;text-align:left !important;
}

body.home-themed .hv-a-cta{
  margin:0 0 36px !important;gap:14px !important;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start !important;
}
body.home-themed .hero .hv-a-cta .btn,
body.home-themed .hero .hv-a-cta .btn-outline,
body.home-themed .hero .hv-a-cta .btn-ghost{padding:16px 28px !important;font-size:.98rem !important}

/* Trust micro-bar below the CTAs */
body.home-themed .hv-a-trust{
  display:flex;align-items:center;flex-wrap:wrap;gap:18px;
  padding-top:24px;border-top:1px dashed var(--dvh-rule) !important;
}
body.home-themed .hv-a-trust .tr{display:flex;flex-direction:column;gap:2px;line-height:1.1}
body.home-themed .hv-a-trust .tr strong{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;font-size:1.2rem !important;letter-spacing:-.02em !important;
  color:var(--dvh-ink) !important;
}
body.home-themed .hv-a-trust .tr span{
  font-family:'JetBrains Mono',monospace !important;
  font-size:.66rem !important;color:var(--dvh-mute) !important;
  letter-spacing:.14em !important;text-transform:uppercase !important;font-weight:600;
}
body.home-themed .hv-a-trust .tr-sep{
  width:1px;height:32px;background:var(--dvh-rule);
}

/* RIGHT column — Authentic platform review cards
   Each card mimics the actual UI of Google / Clutch / LinkedIn
   ============================================================ */
body.home-themed .hv-a-reviews,
body.home-themed .hero-reviews.hv-a-reviews{
  position:relative;
  display:flex !important;flex-direction:column !important;
  gap:18px !important;align-items:stretch !important;justify-content:center !important;
  background:none !important;border:0 !important;padding:0 !important;margin:0 !important;
  min-height:560px;
  perspective:1400px;
}

/* "Live activity" floating bubble — top */
body.home-themed .hv-live{
  position:absolute;top:-18px;right:-8px;z-index:10;
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 16px;border-radius:999px;
  background:var(--dvh-ink);color:var(--dvh-cream);
  font-family:'Inter','Segoe UI',sans-serif;font-size:.78rem;font-weight:500;
  box-shadow:0 12px 24px -10px rgba(20,20,26,.35);
  border:1.5px solid var(--dvh-ink);
  animation:dvhLivePop .8s cubic-bezier(.34,1.56,.64,1) 0s backwards,
            dvhLiveBob 4.5s ease-in-out 1.2s infinite;
}
@keyframes dvhLivePop{
  0%{opacity:0;transform:translateY(-12px) scale(.7)}
  100%{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes dvhLiveBob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-3px)}
}
body.home-themed .hv-live strong{font-family:'Inter Tight';font-weight:800;color:var(--dvh-spot);margin-right:2px}
body.home-themed .hv-live .live-dot{
  width:8px;height:8px;border-radius:50%;background:var(--dvh-spot);
  box-shadow:0 0 0 0 rgba(34,197,94,.65);
  animation:dvhLivePulse 2.2s ease-out infinite;
}
@keyframes dvhLivePulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.55)}
  70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

/* Base card — authentic look */
body.home-themed .hv-a-reviews .rev,
body.home-themed .hv-a-reviews .rev-card{
  background:#fff !important;
  border:1px solid rgba(20,20,26,.08) !important;
  border-radius:14px !important;
  padding:18px 18px 14px !important;
  box-shadow:0 6px 18px -10px rgba(20,20,26,.18), 0 1px 0 rgba(20,20,26,.04) !important;
  display:flex !important;flex-direction:column !important;gap:12px !important;
  position:relative;
  font-family:'Roboto','Inter','Segoe UI',sans-serif !important;
  transform-style:preserve-3d;
  transition:transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .35s, border-color .35s;
  will-change:transform;
}

/* Per-card base 3D position — fixed rotation, only Y animates during float */
body.home-themed .hv-a-reviews .rev:nth-child(2){
  margin-right:14px;
  animation:dvhCardPop1 .9s cubic-bezier(.34,1.56,.64,1) .12s backwards,
            dvhFloat1 8s ease-in-out 1.1s infinite;
}
body.home-themed .hv-a-reviews .rev:nth-child(3){
  margin-left:14px;z-index:2;
  animation:dvhCardPop2 .9s cubic-bezier(.34,1.56,.64,1) .28s backwards,
            dvhFloat2 8s ease-in-out 2.8s infinite;
}
body.home-themed .hv-a-reviews .rev:nth-child(4){
  animation:dvhCardPop3 .9s cubic-bezier(.34,1.56,.64,1) .44s backwards,
            dvhFloat3 8s ease-in-out 4.4s infinite;
}

/* === ENTRY POP — notification-style bounce on load === */
@keyframes dvhCardPop1{
  0%{opacity:0;transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateX(-32px) translateY(48px) scale(.92)}
  100%{opacity:1;transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateX(-32px) translateY(0) scale(1)}
}
@keyframes dvhCardPop2{
  0%{opacity:0;transform:perspective(1200px) rotateY(3deg) rotateX(-1deg) translateX(36px) translateY(48px) scale(.92)}
  100%{opacity:1;transform:perspective(1200px) rotateY(3deg) rotateX(-1deg) translateX(36px) translateY(0) scale(1)}
}
@keyframes dvhCardPop3{
  0%{opacity:0;transform:perspective(1200px) rotateY(-2deg) rotateX(1.5deg) translateX(-18px) translateY(48px) scale(.92)}
  100%{opacity:1;transform:perspective(1200px) rotateY(-2deg) rotateX(1.5deg) translateX(-18px) translateY(0) scale(1)}
}

/* === CONTINUOUS FLOAT — pure Y drift only, fixed rotation, slow & smooth === */
@keyframes dvhFloat1{
  0%,100%{transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateX(-32px) translateY(0)}
  50%{transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateX(-32px) translateY(-8px)}
}
@keyframes dvhFloat2{
  0%,100%{transform:perspective(1200px) rotateY(3deg) rotateX(-1deg) translateX(36px) translateY(0)}
  50%{transform:perspective(1200px) rotateY(3deg) rotateX(-1deg) translateX(36px) translateY(-8px)}
}
@keyframes dvhFloat3{
  0%,100%{transform:perspective(1200px) rotateY(-2deg) rotateX(1.5deg) translateX(-18px) translateY(0)}
  50%{transform:perspective(1200px) rotateY(-2deg) rotateX(1.5deg) translateX(-18px) translateY(-8px)}
}

/* === HOVER / FOCUS — pause float, lift gently, KEEP rotation locked === */
body.home-themed .hv-a-reviews .rev:hover,
body.home-themed .hv-a-reviews .rev:focus-within,
body.home-themed .hv-a-reviews .rev:active{
  animation-play-state:paused !important;
  z-index:5;
  border-color:rgba(20,20,26,.16) !important;
  box-shadow:0 24px 44px -18px rgba(20,20,26,.28), 0 2px 0 rgba(20,20,26,.04) !important;
  transition:transform .35s var(--dvh-ease), box-shadow .35s, border-color .35s !important;
}
/* Per-card hover transform — keep the base 3D rotation, only translateY changes */
body.home-themed .hv-a-reviews .rev:nth-child(2):hover,
body.home-themed .hv-a-reviews .rev:nth-child(2):focus-within,
body.home-themed .hv-a-reviews .rev:nth-child(2):active{
  transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateX(-32px) translateY(-12px) !important;
}
body.home-themed .hv-a-reviews .rev:nth-child(3):hover,
body.home-themed .hv-a-reviews .rev:nth-child(3):focus-within,
body.home-themed .hv-a-reviews .rev:nth-child(3):active{
  transform:perspective(1200px) rotateY(3deg) rotateX(-1deg) translateX(36px) translateY(-12px) !important;
}
body.home-themed .hv-a-reviews .rev:nth-child(4):hover,
body.home-themed .hv-a-reviews .rev:nth-child(4):focus-within,
body.home-themed .hv-a-reviews .rev:nth-child(4):active{
  transform:perspective(1200px) rotateY(-2deg) rotateX(1.5deg) translateX(-18px) translateY(-12px) !important;
}

/* Inner buttons — clean focus + active states so clicks don't pop */
body.home-themed .hv-a-reviews .rev-action:focus{outline:none}
body.home-themed .hv-a-reviews .rev-action:focus-visible{
  outline:2px solid var(--dvh-spot);outline-offset:2px;
}
body.home-themed .hv-a-reviews .rev-action:active{
  transform:scale(.97);transition:transform .12s var(--dvh-ease);
}

/* Card itself shouldn't show a default focus ring */
body.home-themed .hv-a-reviews .rev:focus{outline:none}
body.home-themed .hv-a-reviews .rev:focus-visible{outline:none}

/* ===== Card header — avatar + author + platform mark ===== */
body.home-themed .hv-a-reviews .rev-head{
  display:grid !important;
  grid-template-columns:40px 1fr auto !important;
  gap:12px !important;align-items:center !important;
  padding:0 !important;border:0 !important;
}

body.home-themed .hv-a-reviews .rev-avatar{
  width:40px;height:40px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;font-family:'Roboto','Inter',sans-serif;font-weight:500;font-size:1.04rem;
  flex-shrink:0;letter-spacing:0;
}

body.home-themed .hv-a-reviews .rev-author{display:flex;flex-direction:column;gap:1px;min-width:0}
body.home-themed .hv-a-reviews .rev-name{
  display:flex;align-items:center;gap:5px;
  font-family:'Roboto','Inter',sans-serif !important;font-weight:500 !important;
  font-size:.94rem !important;color:#202124 !important;letter-spacing:0 !important;
  line-height:1.2;
}
body.home-themed .hv-a-reviews .rev-tick{width:13px;height:13px;flex-shrink:0;margin-top:1px}
body.home-themed .hv-a-reviews .rev-meta{
  font-family:'Roboto','Inter',sans-serif !important;font-size:.74rem !important;
  color:#5f6368 !important;letter-spacing:0;line-height:1.3;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
body.home-themed .hv-a-reviews .rev-platform-mark{
  width:28px;height:28px;flex-shrink:0;
  display:grid;place-items:center;
}
body.home-themed .hv-a-reviews .rev-platform-mark svg{width:24px;height:24px;display:block}

/* ===== Rating row ===== */
body.home-themed .hv-a-reviews .rev-rating-row{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-family:'Roboto','Inter',sans-serif;
}
body.home-themed .hv-a-reviews .rev-rating-row .stars{
  color:#FBC02D !important;letter-spacing:1px;font-size:.96rem !important;font-weight:400 !important;
  line-height:1;
}
body.home-themed .hv-a-reviews .rev-date{
  font-family:'Roboto','Inter',sans-serif !important;font-size:.78rem !important;
  color:#5f6368 !important;letter-spacing:0 !important;text-transform:none !important;
  font-weight:400;
}
body.home-themed .hv-a-reviews .rev-pinned{
  background:rgba(34,197,94,.12);color:var(--dvh-spot-text);
  border:1px solid var(--dvh-spot-border);
  padding:2px 8px;border-radius:6px;
  font-family:'JetBrains Mono',monospace;font-size:.6rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
}
body.home-themed .hv-a-reviews .rev-verified-mini{
  color:var(--dvh-spot-text);
  font-family:'Roboto','Inter',sans-serif;font-size:.74rem;font-weight:600;
  display:inline-flex;align-items:center;gap:3px;
}
body.home-themed .hv-a-reviews .rev-endorse{
  color:#0A66C2;font-family:'Roboto','Inter',sans-serif;font-weight:600;font-size:.82rem;
  display:inline-flex;align-items:center;gap:6px;
}
body.home-themed .hv-a-reviews .rev-endorse svg{
  width:13px;height:13px;stroke:#0A66C2;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}

/* ===== Quote body ===== */
body.home-themed .hv-a-reviews .rev-quote{
  margin:0 !important;padding:0 !important;border:0 !important;
  font-family:'Roboto','Inter',sans-serif !important;
  font-style:normal !important;font-weight:400 !important;
  font-size:.92rem !important;line-height:1.5 !important;
  color:#202124 !important;letter-spacing:0 !important;
}
body.home-themed .hv-a-reviews .rev-quote em{
  font-style:normal !important;font-weight:600 !important;color:var(--dvh-spot-text) !important;
}

/* ===== Footer — actions ===== */
body.home-themed .hv-a-reviews .rev-foot{
  padding-top:10px !important;border-top:1px solid rgba(20,20,26,.08) !important;
  display:flex !important;align-items:center !important;justify-content:flex-start !important;
  gap:8px !important;flex-wrap:wrap;
}
body.home-themed .hv-a-reviews .rev-action{
  display:inline-flex;align-items:center;gap:6px;
  background:none !important;border:0 !important;padding:6px 10px !important;
  border-radius:6px;cursor:pointer;
  font-family:'Roboto','Inter',sans-serif !important;font-weight:500 !important;font-size:.78rem !important;
  color:#5f6368 !important;letter-spacing:0 !important;text-transform:none !important;
  transition:background .2s,color .2s;
}
body.home-themed .hv-a-reviews .rev-action:hover{background:rgba(20,20,26,.05) !important;color:#202124 !important}
body.home-themed .hv-a-reviews .rev-action svg{
  width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}

/* Clutch scorebar */
body.home-themed .hv-a-reviews .rev-scorebar{width:100%;display:flex;flex-direction:column;gap:5px}
body.home-themed .hv-a-reviews .sb-row{display:grid;grid-template-columns:70px 1fr 32px;gap:10px;align-items:center;font-family:'Roboto','Inter',sans-serif;font-size:.72rem;color:#5f6368}
body.home-themed .hv-a-reviews .sb-lbl{color:#5f6368}
body.home-themed .hv-a-reviews .sb-meter{height:6px;background:rgba(20,20,26,.08);border-radius:99px;overflow:hidden}
body.home-themed .hv-a-reviews .sb-meter i{display:block;height:100%;background:#FF3D2E;border-radius:99px}
body.home-themed .hv-a-reviews .sb-val{font-family:'Inter Tight';font-weight:700;color:#202124;text-align:right;font-size:.78rem}

/* LinkedIn reactions */
body.home-themed .hv-a-reviews .rev-reactions{
  display:inline-flex;align-items:center;gap:0;
}
body.home-themed .hv-a-reviews .rev-reactions .rxn{
  width:22px;height:22px;border-radius:50%;background:#fff;
  display:grid;place-items:center;font-size:.78rem;line-height:1;
  border:1.5px solid #fff;margin-left:-6px;
  box-shadow:0 1px 2px rgba(0,0,0,.1);
}
body.home-themed .hv-a-reviews .rev-reactions .rxn:first-child{margin-left:0}
body.home-themed .hv-a-reviews .rev-reactions .rxn-like{background:#0A66C2;color:#fff}
body.home-themed .hv-a-reviews .rev-reactions .rxn-celebrate{background:#fff}
body.home-themed .hv-a-reviews .rev-reactions .rxn-insight{background:#fff}
body.home-themed .hv-a-reviews .rev-reactions .rxn-count{
  margin-left:6px;font-family:'Roboto','Inter',sans-serif;font-size:.78rem;color:#5f6368;font-weight:500;
}
body.home-themed .hv-a-reviews .rev-comments{
  margin-left:auto;font-family:'Roboto','Inter',sans-serif;font-size:.74rem;color:#5f6368;
}

/* Subtle platform-specific accent rail */
body.home-themed .hv-a-reviews .rev-google{border-top:3px solid #4285F4 !important;padding-top:15px !important}
body.home-themed .hv-a-reviews .rev-clutch{border-top:3px solid #FF3D2E !important;padding-top:15px !important}
body.home-themed .hv-a-reviews .rev-linkedin{border-top:3px solid #0A66C2 !important;padding-top:15px !important}

/* Mobile */
@media (max-width:960px){
  body.home-themed .hero{min-height:auto;padding:110px 0 60px !important}
  body.home-themed .hero .container.hv-a{grid-template-columns:1fr !important;gap:56px !important}
  body.home-themed .hv-a-reviews,
  body.home-themed .hero-reviews.hv-a-reviews{min-height:auto;perspective:none;gap:14px !important}
  body.home-themed .hv-a-reviews .rev{
    transform:none !important;margin:0 !important;animation:none !important;
  }
  body.home-themed .hv-a-reviews .rev:hover{transform:translateY(-3px) !important}
  body.home-themed .hv-live{top:-12px;right:0;font-size:.72rem;padding:8px 14px}
}
@media (max-width:560px){
  body.home-themed .hv-a-trust .tr-sep{display:none}
  body.home-themed .hv-a-trust{gap:18px 24px}
  body.home-themed .hv-a-reviews .rev-meta{font-size:.7rem !important}
}

/* Respect reduced-motion */
@media (prefers-reduced-motion:reduce){
  body.home-themed .hv-a-reviews .rev,
  body.home-themed .hv-live,
  body.home-themed .hv-live .live-dot{animation:none !important;opacity:1 !important}
  body.home-themed .hv-a-reviews .rev:nth-child(2){transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateX(-32px) !important}
  body.home-themed .hv-a-reviews .rev:nth-child(3){transform:perspective(1200px) rotateY(3deg) rotateX(-1deg) translateX(36px) !important}
  body.home-themed .hv-a-reviews .rev:nth-child(4){transform:perspective(1200px) rotateY(-2deg) rotateX(1.5deg) translateX(-18px) !important}
}

/* Hero bento (variant B) — flatten */
body.home-themed .bento{background:transparent !important}
body.home-themed .bento-cell{
  background:#fff !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:14px !important;box-shadow:none !important;
}
body.home-themed .bento-eyebrow{font-family:'JetBrains Mono' !important;font-size:.7rem !important;color:var(--dvh-mute) !important;letter-spacing:.14em !important;text-transform:uppercase !important;background:none !important;padding:0 !important;border:0 !important}
body.home-themed .bento-eyebrow:before{display:none !important}
body.home-themed .bento-num{font-family:'Inter Tight','Inter',sans-serif !important;font-weight:900 !important;color:var(--dvh-ink) !important;letter-spacing:-.045em !important}
body.home-themed .bento-num span{color:var(--dvh-spot-text) !important}
body.home-themed .bento-foot{font-family:'JetBrains Mono' !important;font-size:.72rem !important;color:var(--dvh-mute) !important}
body.home-themed .bento-spark path[fill="url(#bgg)"]{fill:rgba(34,197,94,.12)}
body.home-themed .bento-spark path[stroke]{stroke:var(--dvh-spot)}

/* ============================================================
   PANEL wrapper (used by Why Choose, What We Do, Clients, Case Studies)
   Strip the panel gradient + inset shadow
   ============================================================ */
body.home-themed .panel{
  background:transparent !important;
  box-shadow:none !important;border:0 !important;
  padding:0 !important;border-radius:0 !important;
}
body.home-themed .panel .section-head{margin-bottom:32px}

/* Section padding — tightened further (user: 'big gap in these 2 sections'). */
body.home-themed main > section{padding:48px 0}
body.home-themed main > section.hero{padding:120px 0 56px}
body.home-themed main > section.testimonials-bg{padding:48px 0}
body.home-themed main > section.impact{padding:56px 0 28px}        /* trim bottom so Trusted By sits closer */
body.home-themed main > section.dvh-clients-section{padding-top:28px}
@media (max-width:780px){
  body.home-themed main > section{padding:28px 0}
  body.home-themed main > section.hero{padding:88px 0 32px}
  body.home-themed main > section.impact{padding:40px 0 18px}
  body.home-themed main > section.dvh-clients-section{padding-top:18px}
  body.home-themed .panel .section-head{margin-bottom:22px}
}

/* ============================================================
   WHY CHOOSE — flatten the dark gradient hero card
   ============================================================ */
body.home-themed .why-visual{
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;
  border-radius:18px !important;padding:44px 36px !important;
  box-shadow:none !important;border:1px solid var(--dvh-ink) !important;
  min-height:auto !important;
}
body.home-themed .why-visual:before{display:none !important}
body.home-themed .why-visual .badge{
  background:var(--dvh-spot-soft) !important;color:var(--dvh-spot) !important;
  border:1px solid var(--dvh-spot-border) !important;
  font-family:'JetBrains Mono' !important;font-size:.7rem !important;font-weight:700 !important;
  letter-spacing:.12em !important;text-transform:uppercase !important;padding:6px 14px !important;
}
body.home-themed .why-visual .badge:before{box-shadow:none !important;background:var(--dvh-spot) !important}
body.home-themed .why-visual .lead-num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;color:var(--dvh-spot) !important;
  background:none !important;-webkit-text-fill-color:var(--dvh-spot) !important;
  letter-spacing:-.04em !important;font-size:clamp(3.6rem,7vw,5.4rem) !important;
  white-space:nowrap;
}
body.home-themed .why-visual h3{color:var(--dvh-cream) !important;font-family:'Inter Tight' !important;font-weight:900 !important;font-size:1.4rem !important}
body.home-themed .why-visual p{color:var(--dvh-text-on-dark) !important;font-family:'Inter' !important}
body.home-themed .why-visual .mini-stats{border-top:1px dashed rgba(255,255,255,.15) !important}
body.home-themed .why-visual .mini-stats .ms-num{
  font-family:'Inter Tight','Inter',sans-serif !important;font-weight:900 !important;
  color:var(--dvh-cream) !important;letter-spacing:-.03em !important;
}
body.home-themed .why-visual .mini-stats .ms-label{
  font-family:'JetBrains Mono' !important;color:var(--dvh-mute-on-dark) !important;
  font-size:.66rem !important;letter-spacing:.12em !important;text-transform:uppercase !important;
}
body.home-themed .why-visual .btn{background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-spot) !important}
body.home-themed .why-visual .btn:hover{background:var(--dvh-cream) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-cream) !important}

/* Why checklist items */
body.home-themed .why-item{
  background:#fff !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:14px !important;box-shadow:none !important;
  transition:border-color .28s,transform .28s !important;
}
body.home-themed .why-item:hover{border-color:var(--dvh-spot) !important;transform:translateY(-3px) !important;box-shadow:none !important}
body.home-themed .why-item h4{font-family:'Inter Tight' !important;color:var(--dvh-ink) !important;font-weight:800 !important}
body.home-themed .why-item p{color:var(--dvh-text) !important;font-family:'Inter' !important}
body.home-themed .why-item .ic{background:var(--dvh-ink) !important;color:var(--dvh-spot) !important;border-radius:12px !important;box-shadow:none !important}
body.home-themed .why-item .ic svg{stroke:var(--dvh-spot) !important;fill:none}

/* ============================================================
   WHAT WE DO — wwd-row interactive list + preview pane
   ============================================================ */
body.home-themed .wwd-row{
  background:transparent !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:14px !important;padding:20px 24px !important;
  transition:border-color .28s,background .28s !important;
  margin-bottom:10px !important;
}
body.home-themed .wwd-row:hover,
body.home-themed .wwd-row.active{
  border-color:var(--dvh-spot) !important;background:rgba(34,197,94,.04) !important;
}
body.home-themed .wwd-row .row-num{
  font-family:'JetBrains Mono',monospace !important;color:var(--dvh-spot) !important;
  font-weight:700 !important;font-size:.78rem !important;letter-spacing:.16em !important;
}
body.home-themed .wwd-row .row-title{font-family:'Inter Tight' !important;font-weight:800 !important;color:var(--dvh-ink) !important;font-size:1.15rem !important;letter-spacing:-.015em}
body.home-themed .wwd-row .row-arrow{color:var(--dvh-ink) !important}
body.home-themed .wwd-row.active .row-arrow,
body.home-themed .wwd-row:hover .row-arrow{color:var(--dvh-spot) !important}

body.home-themed .wwd-preview{
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;
  border-radius:18px !important;padding:36px !important;
  border:0 !important;box-shadow:none !important;
}
body.home-themed .wwd-preview .pv-icon{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;
  border-radius:12px !important;box-shadow:none !important;
}
body.home-themed .wwd-preview .pv-icon svg{stroke:var(--dvh-ink) !important}
body.home-themed .wwd-preview .pv-eyebrow{
  font-family:'JetBrains Mono' !important;color:var(--dvh-spot) !important;
  font-size:.72rem !important;letter-spacing:.14em !important;text-transform:uppercase !important;font-weight:600;
}
body.home-themed .wwd-preview h3{color:var(--dvh-cream) !important;font-family:'Inter Tight' !important;font-weight:900 !important;font-size:1.8rem !important;letter-spacing:-.03em !important;line-height:1.15 !important;margin-bottom:14px}
body.home-themed .wwd-preview p{color:var(--dvh-text-on-dark) !important;font-family:'Inter' !important}
body.home-themed .wwd-preview .pv-tags span{
  background:var(--dvh-spot-soft) !important;color:var(--dvh-spot) !important;
  border:1px solid var(--dvh-spot-border) !important;
  font-family:'JetBrains Mono' !important;font-size:.7rem !important;font-weight:600 !important;
  letter-spacing:.04em !important;border-radius:6px !important;
}
body.home-themed .wwd-preview .pv-cta{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-spot) !important;
}
body.home-themed .wwd-preview .pv-cta:hover{background:var(--dvh-cream) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-cream) !important}

/* ============================================================
   IMPACT — strip the halo + recolor numbers
   ============================================================ */
body.home-themed .impact{
  background:var(--dvh-cream) !important;
  position:relative;
}
body.home-themed .impact:before{display:none !important}
body.home-themed .impact-row,
body.home-themed .impact-cell{border-color:var(--dvh-rule) !important}
body.home-themed .impact-cell:hover{background:rgba(34,197,94,.05) !important}
body.home-themed .impact-num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;color:var(--dvh-ink) !important;letter-spacing:-.045em !important;
  font-size:clamp(2.6rem,4.2vw,3.6rem) !important;line-height:1 !important;
  background:none !important;-webkit-text-fill-color:var(--dvh-ink) !important;
}
body.home-themed .impact-num em{
  font-style:normal !important;color:var(--dvh-spot-text) !important;font-weight:900 !important;
  -webkit-text-fill-color:var(--dvh-spot-text) !important;
}
body.home-themed .impact-cell:hover .impact-num{
  background:none !important;-webkit-text-fill-color:var(--dvh-spot-text) !important;color:var(--dvh-spot-text) !important;
}
body.home-themed .impact-label{
  font-family:'JetBrains Mono' !important;font-size:.72rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.12em !important;text-transform:uppercase !important;
}

/* ============================================================
   CLIENTS — Stats strip · Filter chips · Logo marquee
   Redesigned as a coherent magazine-style section block
   ============================================================ */

/* --- Stats strip: 3 large stat blocks in a print-style row --- */
body.home-themed .clients-stat{
  display:grid !important;grid-template-columns:repeat(3,1fr) !important;
  gap:0 !important;flex-wrap:nowrap !important;
  margin:0 0 56px !important;
  border-top:1px solid var(--dvh-rule) !important;
  border-bottom:1px solid var(--dvh-rule) !important;
}
body.home-themed .pill-stat{
  background:transparent !important;border:0 !important;
  border-right:1px solid var(--dvh-rule) !important;
  border-radius:0 !important;box-shadow:none !important;
  padding:36px 28px !important;
  display:flex !important;flex-direction:column !important;
  align-items:flex-start !important;gap:8px !important;
  text-align:left !important;
}
body.home-themed .pill-stat:last-child{border-right:0 !important}
body.home-themed .pill-stat .ps-num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;color:var(--dvh-ink) !important;
  font-size:clamp(2.4rem,4.4vw,3.8rem) !important;
  letter-spacing:-.04em !important;line-height:1 !important;
}
body.home-themed .pill-stat .ps-num em{
  color:var(--dvh-spot-text) !important;font-style:italic !important;font-weight:900 !important;
}
body.home-themed .pill-stat .ps-label{
  font-family:'JetBrains Mono',monospace !important;
  font-size:.7rem !important;color:var(--dvh-mute) !important;
  letter-spacing:.14em !important;text-transform:uppercase !important;
  font-weight:600 !important;line-height:1.4 !important;
}

/* --- Filter chips: subtle inline pills, clear active state --- */
body.home-themed .client-filter{
  justify-content:center !important;gap:8px !important;
  margin:0 0 48px !important;flex-wrap:wrap !important;
}
body.home-themed .client-filter .pill{
  background:transparent !important;border:1.5px solid var(--dvh-rule) !important;
  color:var(--dvh-ink) !important;font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:600 !important;font-size:.88rem !important;letter-spacing:-.005em !important;
  border-radius:999px !important;box-shadow:none !important;padding:9px 18px !important;
  display:inline-flex !important;align-items:center;gap:8px;
  transition:border-color .25s,background .25s,color .25s !important;
}
body.home-themed .client-filter .pill:hover{
  border-color:var(--dvh-ink) !important;color:var(--dvh-ink) !important;
  background:rgba(20,20,26,.04) !important;
}
body.home-themed .client-filter .pill.is-active{
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;
  border-color:var(--dvh-ink) !important;
}
body.home-themed .client-filter .pill.is-active .pill-count{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;
  opacity:1 !important;
}
body.home-themed .pill-count{
  font-family:'JetBrains Mono',monospace !important;font-size:.68rem !important;
  font-weight:700 !important;color:var(--dvh-ink) !important;
  background:rgba(20,20,26,.08) !important;
  padding:2px 8px !important;border-radius:999px !important;
  letter-spacing:.04em !important;opacity:1 !important;
  display:inline-block;line-height:1.4;
}

/* --- Marquee container: rhythm + dashed dividers --- */
body.home-themed .client-marquee{
  padding:24px 0 !important;
  overflow:hidden;mask-image:linear-gradient(90deg,transparent 0%,#000 5%,#000 95%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 5%,#000 95%,transparent 100%);
}
body.home-themed .client-marquee + .client-marquee{
  border-top:1px dashed var(--dvh-rule) !important;
}
body.home-themed .client-marquee .marquee-track{gap:18px !important}

/* --- Brand tiles: bigger, cleaner, more breathing room --- */
body.home-themed .client-marquee .brand-tile{
  flex:0 0 220px !important;height:130px !important;
  background:#fff !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:16px !important;box-shadow:none !important;
  padding:24px !important;
  display:grid !important;place-items:center !important;
  transition:border-color .3s,transform .3s !important;
}
body.home-themed .client-marquee .brand-tile:hover{
  border-color:var(--dvh-spot) !important;
  transform:translateY(-3px) !important;
}
body.home-themed .brand-tile img{
  filter:none !important;opacity:1 !important;
  max-width:84% !important;max-height:62px !important;
  width:auto;object-fit:contain;
  transition:transform .3s !important;
}
body.home-themed .brand-tile:hover img{transform:scale(1.06) !important}
body.home-themed .brand-tile--dark{
  background:var(--dvh-ink) !important;border-color:var(--dvh-ink) !important;
}
body.home-themed .brand-tile--dark img{
  filter:brightness(0) invert(1) !important;opacity:.95 !important;
}

@media (max-width:780px){
  body.home-themed .clients-stat{grid-template-columns:1fr !important}
  body.home-themed .pill-stat{
    border-right:0 !important;border-bottom:1px solid var(--dvh-rule) !important;
    padding:24px 8px !important;align-items:center !important;text-align:center !important;
  }
  body.home-themed .pill-stat:last-child{border-bottom:0 !important}
  body.home-themed .client-marquee .brand-tile{flex:0 0 170px !important;height:106px !important;padding:18px !important}
  body.home-themed .brand-tile img{max-height:50px !important}
}

/* ============================================================
   REVIEWS & RATINGS — flatten cards, remove halos
   ============================================================ */
body.home-themed .rating-card{
  background:#fff !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:18px !important;box-shadow:none !important;
  transition:border-color .28s,transform .28s !important;
}
body.home-themed .rating-card:before{display:none !important}
body.home-themed .rating-card:hover{
  border-color:var(--dvh-spot) !important;transform:translateY(-3px) !important;box-shadow:none !important;
}
body.home-themed .rating-card .num{font-family:'Inter Tight','Inter',sans-serif !important;font-weight:900 !important;color:var(--dvh-ink) !important;letter-spacing:-.03em !important}
body.home-themed .rating-card .num span{color:var(--dvh-spot-text) !important}
body.home-themed .rating-card .out{font-family:'JetBrains Mono' !important;color:var(--dvh-mute) !important}
body.home-themed .rating-card .stars{color:var(--dvh-spot) !important}
body.home-themed .rating-card .verified{
  background:var(--dvh-spot-soft) !important;color:var(--dvh-spot) !important;
  border:1px solid var(--dvh-spot-border) !important;
  font-family:'JetBrains Mono' !important;font-size:.66rem !important;font-weight:700 !important;
  letter-spacing:.12em !important;text-transform:uppercase !important;border-radius:6px !important;
}
body.home-themed .rating-card .verified:before{color:var(--dvh-spot) !important}
body.home-themed .rating-card .count{font-family:'JetBrains Mono' !important;color:var(--dvh-mute) !important;font-size:.74rem !important}
body.home-themed .rating-card .count strong{font-family:'Inter Tight' !important;color:var(--dvh-ink) !important;font-weight:800 !important}
body.home-themed .rating-card .read{color:var(--dvh-spot-text) !important;font-family:'Inter Tight' !important;font-weight:700 !important}
body.home-themed .rating-card .platform{border-bottom:1px dashed var(--dvh-rule) !important}
body.home-themed .rating-card .platform img{max-height:52px;width:auto;filter:none;opacity:1;object-fit:contain}

/* ============================================================
   TESTIMONIALS — flatten cards, kill rainbow avatars
   ============================================================ */
body.home-themed .testimonials-bg{
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;
  padding:96px 0 !important;
}
body.home-themed .testimonials-bg:before,
body.home-themed .testimonials-bg:after{display:none !important}
body.home-themed .testimonials-bg .section-head h2{color:var(--dvh-cream) !important}
body.home-themed .testimonials-bg .section-head p{color:var(--dvh-mute-on-dark) !important}
body.home-themed .testimonials-bg .eyebrow{
  background:#ffffff !important;color:var(--dvh-ink) !important;
  border:1.5px solid #ffffff !important;
}
body.home-themed .testimonials-bg .eyebrow:before{background:var(--dvh-ink) !important}

body.home-themed .tcard2{
  background:rgba(255,255,255,.04) !important;border:1px solid rgba(255,255,255,.08) !important;
  border-radius:14px !important;box-shadow:none !important;color:var(--dvh-cream) !important;
  transition:background .28s,border-color .28s,transform .28s !important;
}
body.home-themed .tcard2:hover{
  border-color:var(--dvh-spot) !important;background:rgba(34,197,94,.06) !important;
  transform:translateY(-3px) !important;box-shadow:none !important;
}
body.home-themed .tcard2 .quote-mark{color:var(--dvh-spot) !important;opacity:.5;font-family:'Inter Tight' !important;font-style:italic !important;font-weight:900 !important}
body.home-themed .tcard2 .stars2{color:var(--dvh-spot) !important}
body.home-themed .tcard2 blockquote{color:var(--dvh-cream) !important;font-family:'Open Sans',sans-serif !important;font-weight:500 !important;line-height:1.65 !important;font-size:1rem !important}
body.home-themed .tcard2 cite{color:var(--dvh-cream) !important;font-family:'Inter Tight' !important;font-weight:800 !important;font-style:normal !important}
body.home-themed .tcard2 .role2{color:var(--dvh-mute-on-dark) !important;font-family:'JetBrains Mono' !important;font-size:.7rem !important;letter-spacing:.12em !important;text-transform:uppercase !important}
body.home-themed .tcard2 .author{border-top:1px dashed rgba(255,255,255,.12) !important}
/* Single-green avatar for all */
body.home-themed .tcard2 .avatar,
body.home-themed .tcard2 .av-1,
body.home-themed .tcard2 .av-2,
body.home-themed .tcard2 .av-3,
body.home-themed .tcard2 .av-4,
body.home-themed .tcard2 .av-5,
body.home-themed .tcard2 .av-6{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;
  font-family:'Inter Tight' !important;font-weight:900 !important;
}

/* ============================================================
   CASE STUDIES — flat tiles with green hover
   ============================================================ */
body.home-themed .cs-tile{
  background:#fff !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:18px !important;box-shadow:none !important;
  transition:border-color .28s,transform .28s !important;
}
body.home-themed .cs-tile:hover{
  border-color:var(--dvh-spot) !important;transform:translateY(-3px) !important;box-shadow:none !important;
}
body.home-themed .cs-tile .head:before,
body.home-themed .cs-tile .head:after{display:none !important}
body.home-themed .cs-tile .h-tag{
  background:var(--dvh-ink) !important;color:var(--dvh-spot) !important;
  border-radius:999px !important;padding:5px 14px !important;
  font-family:'JetBrains Mono' !important;font-size:.66rem !important;font-weight:700 !important;
  letter-spacing:.12em !important;text-transform:uppercase !important;
}
body.home-themed .cs-tile h3{font-family:'Inter Tight' !important;color:var(--dvh-ink) !important;font-weight:800 !important;letter-spacing:-.02em !important}
body.home-themed .cs-tile .body p{color:var(--dvh-text) !important;font-family:'Inter' !important}
body.home-themed .cs-tile .h-metric{
  font-family:'Inter Tight','Inter',sans-serif !important;font-weight:900 !important;
  color:var(--dvh-spot-text) !important;letter-spacing:-.03em !important;font-style:italic !important;
  background:none !important;-webkit-text-fill-color:var(--dvh-spot-text) !important;
}
body.home-themed .cs-tile .h-metric-label{font-family:'JetBrains Mono' !important;font-size:.68rem !important;color:var(--dvh-mute) !important;letter-spacing:.12em !important;text-transform:uppercase !important}
body.home-themed .cs-tile .arrow-c{
  background:var(--dvh-spot-soft) !important;color:var(--dvh-spot-text) !important;
  border-radius:50% !important;border:0 !important;
}
body.home-themed .cs-tile:hover .arrow-c{background:var(--dvh-spot) !important;color:var(--dvh-ink) !important}
body.home-themed .cs-tile .metric-row{border-top:1px dashed var(--dvh-rule) !important}

/* ============================================================
   FINAL CTA — kill the gradient, use solid green
   ============================================================ */
body.home-themed main > section[style*="linear-gradient"]{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;
  position:relative;overflow:hidden;
}
body.home-themed main > section[style*="linear-gradient"]:before{
  content:""!important;position:absolute;left:-100px;bottom:-100px;
  width:300px;height:300px;border-radius:50%;background:var(--dvh-ink);opacity:.06;
}
body.home-themed main > section[style*="linear-gradient"] h2{color:var(--dvh-ink) !important;font-family:'Inter Tight' !important;font-weight:900 !important;font-size:clamp(2.2rem,5vw,3.6rem) !important;letter-spacing:-.04em}
body.home-themed main > section[style*="linear-gradient"] p{color:rgba(20,20,26,.75) !important;font-family:'Inter' !important}
body.home-themed main > section[style*="linear-gradient"] .btn{
  background:var(--dvh-ink) !important;color:var(--dvh-cream) !important;border-color:var(--dvh-ink) !important;
}
body.home-themed main > section[style*="linear-gradient"] .btn:hover{
  background:var(--dvh-cream) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-cream) !important;
}

/* ============================================================
   DARK MODE PARITY
   ============================================================ */
[data-theme="dark"] body.home-themed{background:#0b1220;color:#f1f5f9;--dvh-rule:rgba(241,245,249,.12);--dvh-spot-text:#22c55e}
[data-theme="dark"] body.home-themed h1,
[data-theme="dark"] body.home-themed h2,
[data-theme="dark"] body.home-themed h3,
[data-theme="dark"] body.home-themed h4{color:#f1f5f9}
[data-theme="dark"] body.home-themed p,
[data-theme="dark"] body.home-themed .hero .lead,
[data-theme="dark"] body.home-themed .hv-a-lead{color:#cbd5e1}
[data-theme="dark"] body.home-themed .hero{background:#0b1220 !important}
[data-theme="dark"] body.home-themed .hv-a-title,
[data-theme="dark"] body.home-themed .hv-b-title,
[data-theme="dark"] body.home-themed .hv-c-title{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .impact{background:#070b14 !important}
[data-theme="dark"] body.home-themed .impact-num{color:#f1f5f9 !important;-webkit-text-fill-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .impact-row,
[data-theme="dark"] body.home-themed .impact-cell{border-color:rgba(241,245,249,.1) !important}
[data-theme="dark"] body.home-themed .why-item,
[data-theme="dark"] body.home-themed .rating-card,
[data-theme="dark"] body.home-themed .cs-tile,
[data-theme="dark"] body.home-themed .bento-cell,
[data-theme="dark"] body.home-themed .pill-stat{background:#111827 !important;border-color:#1e293b !important}

/* Brand logos stay on a light surface in dark mode so colors remain readable */
[data-theme="dark"] body.home-themed .brand-tile{background:#FBFBF0 !important;border-color:rgba(255,255,255,.08) !important}
[data-theme="dark"] body.home-themed .brand-tile--dark{background:#14141A !important;border-color:#1e293b !important}
[data-theme="dark"] body.home-themed .rating-card .platform img,
[data-theme="dark"] body.home-themed .hero-reviews .rev img{background:#FBFBF0;padding:6px 10px;border-radius:8px}
/* Review cards stay on light surface in dark mode — they're meant to look like
   actual screenshots from Google/Clutch/LinkedIn which are always light UI.
   The cream surface in a dark page makes them pop like real notification cards. */
[data-theme="dark"] body.home-themed .hv-a-reviews .rev,
[data-theme="dark"] body.home-themed .hv-a-reviews .rev-card{background:#fff !important;border-color:rgba(20,20,26,.06) !important;box-shadow:0 10px 30px -8px rgba(0,0,0,.55), 0 1px 0 rgba(20,20,26,.08) !important}
[data-theme="dark"] body.home-themed .hv-a-reviews .rev-quote{color:#202124 !important}
[data-theme="dark"] body.home-themed .hv-a-reviews .rev-name{color:#202124 !important}
[data-theme="dark"] body.home-themed .hv-a-reviews .rev-foot{border-top-color:rgba(20,20,26,.08) !important}
[data-theme="dark"] body.home-themed .hv-live{background:#f1f5f9;color:#0b1220;border-color:#f1f5f9}
[data-theme="dark"] body.home-themed .hv-live strong{color:#22c55e}
[data-theme="dark"] body.home-themed .hv-a-trust .tr strong{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .hv-a-trust{border-top-color:rgba(241,245,249,.12) !important}
[data-theme="dark"] body.home-themed .hv-a-trust .tr-sep{background:rgba(241,245,249,.12)}
[data-theme="dark"] body.home-themed .why-item h4{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .why-item p,
[data-theme="dark"] body.home-themed .cs-tile .body p,
[data-theme="dark"] body.home-themed .rating-card .count{color:#cbd5e1 !important}
[data-theme="dark"] body.home-themed .cs-tile h3,
[data-theme="dark"] body.home-themed .rating-card .num,
[data-theme="dark"] body.home-themed .pill-stat .ps-num{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .client-filter .pill{border-color:#1e293b !important;color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .client-filter .pill.is-active{background:#f1f5f9 !important;color:#0b1220 !important;border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed main .btn{background:#f1f5f9 !important;color:#0b1220 !important;border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed main .btn:hover{background:#22c55e !important;color:#0b1220 !important;border-color:#22c55e !important}
[data-theme="dark"] body.home-themed main .btn-outline,
[data-theme="dark"] body.home-themed main .btn-ghost{background:transparent !important;color:#f1f5f9 !important;border-color:rgba(241,245,249,.3) !important}
[data-theme="dark"] body.home-themed main .btn-outline:hover,
[data-theme="dark"] body.home-themed main .btn-ghost:hover{background:#f1f5f9 !important;color:#0b1220 !important;border-color:#f1f5f9 !important}

/* ============================================================
   CLIENTS SECTION — Editorial redesign
   ============================================================ */
body.home-themed .dvh-clients-section{padding:48px 0}
body.home-themed .dvh-clients-section .panel{padding:0 !important;background:transparent !important;box-shadow:none !important}

/* Mast: asymmetric editorial header */
body.home-themed .dvh-clients-mast{
  display:grid;grid-template-columns:1.5fr 1fr;gap:64px;
  align-items:start;
  padding:64px 0 56px;border-bottom:1px solid var(--dvh-rule);margin-bottom:48px;
}
body.home-themed .dvh-clients-mast .left{text-align:left}
body.home-themed .dvh-clients-mast .left .eyebrow{margin-bottom:24px}
body.home-themed .dvh-clients-mast h2{
  font-size:clamp(2.4rem,5vw,4.4rem) !important;
  letter-spacing:-.045em !important;line-height:.95 !important;font-weight:900 !important;
  text-align:left !important;margin:0 0 22px !important;
  color:var(--dvh-ink) !important;
}
body.home-themed .dvh-clients-mast h2 span{
  color:var(--dvh-spot-text) !important;font-style:italic !important;font-weight:900 !important;
}
body.home-themed .dvh-clients-lead{
  font-family:'Inter',sans-serif !important;
  font-size:1.06rem !important;line-height:1.65 !important;color:var(--dvh-text) !important;
  max-width:560px !important;
}

/* Stats column */
body.home-themed .dvh-clients-mast .right{
  display:flex;flex-direction:column;gap:0;
  border-left:1px solid var(--dvh-rule);padding-left:48px;
}
body.home-themed .dvh-stat-block{
  display:flex;flex-direction:column;gap:6px;
  padding:18px 0;border-bottom:1px solid var(--dvh-rule);
}
body.home-themed .dvh-stat-block:last-child{border-bottom:0}
body.home-themed .dvh-stat-block .num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(2.8rem,4.6vw,4rem);font-weight:900;
  line-height:1;letter-spacing:-.04em;color:var(--dvh-ink);
}
body.home-themed .dvh-stat-block .num em{
  font-style:normal;color:var(--dvh-spot-text);font-weight:900;
}
body.home-themed .dvh-stat-block .lbl{
  font-family:'JetBrains Mono',monospace;font-size:.72rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--dvh-mute);
}

/* Editorial filter chips */
body.home-themed .dvh-filter{
  display:flex;flex-wrap:wrap;gap:8px;
  margin:0 0 48px !important;
  padding-bottom:0;justify-content:flex-start !important;
}
body.home-themed .dvh-filter .pill{
  display:inline-flex !important;align-items:center;gap:10px;
  padding:10px 18px !important;border-radius:999px !important;
  background:transparent !important;border:1.5px solid var(--dvh-rule) !important;
  color:var(--dvh-ink) !important;
  font-family:'Inter Tight','Inter',sans-serif !important;font-weight:700 !important;
  font-size:.84rem !important;letter-spacing:-.005em !important;
  cursor:pointer;transition:background .28s,color .28s,border-color .28s,transform .2s;
  box-shadow:none !important;
}
body.home-themed .dvh-filter .pill:hover{border-color:var(--dvh-ink) !important;transform:translateY(-1px)}
body.home-themed .dvh-filter .pill.is-active{
  background:var(--dvh-ink) !important;color:var(--dvh-spot) !important;border-color:var(--dvh-ink) !important;
}
body.home-themed .dvh-filter .pill .lbl{display:inline-block}
body.home-themed .dvh-filter .pill .pill-count{
  font-family:'JetBrains Mono',monospace !important;font-size:.7rem !important;
  font-weight:600 !important;letter-spacing:.05em !important;
  padding:2px 8px;border-radius:6px;background:rgba(20,20,26,.06);color:var(--dvh-mute);opacity:1;
  transition:background .28s,color .28s;
}
body.home-themed .dvh-filter .pill:hover .pill-count{background:var(--dvh-cream-2);color:var(--dvh-ink)}
body.home-themed .dvh-filter .pill.is-active .pill-count{background:rgba(34,197,94,.18) !important;color:var(--dvh-spot) !important}

/* Marquee in a print-style frame with edge fade-masks */
body.home-themed .dvh-clients-frame{
  position:relative;
  padding:36px 0;
  border-top:1px solid var(--dvh-rule);border-bottom:1px solid var(--dvh-rule);
  background:var(--dvh-cream-2);
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
}
body.home-themed .dvh-clients-frame .client-marquee + .client-marquee{margin-top:18px}
body.home-themed .dvh-clients-frame .brand-tile{
  background:#fff !important;border:1.5px solid var(--dvh-rule) !important;
  border-radius:14px !important;
  padding:24px !important;min-height:140px !important;
  box-shadow:0 4px 14px rgba(20,20,26,.04) !important;
  transition:transform .3s,border-color .3s,box-shadow .3s !important;
}
body.home-themed .dvh-clients-frame .brand-tile:hover{
  transform:translateY(-3px) !important;
  border-color:var(--dvh-spot) !important;
  box-shadow:0 10px 28px rgba(20,20,26,.08) !important;
}
body.home-themed .dvh-clients-frame .brand-tile img{
  max-width:90% !important;max-height:84px !important;
  filter:none !important;opacity:1 !important;width:auto;object-fit:contain;
}

/* Bottom CTA strip */
body.home-themed .dvh-clients-foot{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  margin-top:32px;
}
body.home-themed .dvh-clients-credit{
  font-family:'JetBrains Mono',monospace;font-size:.7rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--dvh-mute);
}
body.home-themed .dvh-clients-link{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Inter Tight','Inter',sans-serif;font-weight:800;font-size:1rem;
  color:var(--dvh-ink);text-decoration:none;
  border-bottom:1.5px solid var(--dvh-ink);padding-bottom:4px;
  letter-spacing:-.01em;
  transition:color .3s,border-color .3s,gap .3s cubic-bezier(.22,.61,.36,1);
}
body.home-themed .dvh-clients-link:hover{color:var(--dvh-spot-text);border-color:var(--dvh-spot-text);gap:18px}
body.home-themed .dvh-clients-link svg{width:18px;height:18px;transition:transform .3s}
body.home-themed .dvh-clients-link:hover svg{transform:translateX(3px)}

/* Responsive */
@media (max-width:900px){
  /* === Trusted By section — mobile redesign === */
  body.home-themed .dvh-clients-mast{
    grid-template-columns:1fr;gap:28px;
    padding:40px 0 32px;margin-bottom:28px;
    text-align:center !important;
  }
  body.home-themed .dvh-clients-mast .left{text-align:center !important}
  body.home-themed .dvh-clients-mast h2{
    text-align:center !important;
    font-size:clamp(2rem,7.6vw,2.6rem) !important;
    line-height:1.05 !important;
  }
  body.home-themed .dvh-clients-mast .left .eyebrow{
    margin-left:auto !important;margin-right:auto !important;
    display:inline-flex;
  }
  body.home-themed .dvh-clients-mast .left .dvh-clients-lead,
  body.home-themed .dvh-clients-lead{
    margin-left:auto !important;margin-right:auto !important;
    text-align:center !important;
    font-size:.95rem !important;line-height:1.55 !important;
    max-width:520px !important;
  }

  /* Stats column: 3-up compact row of cards instead of vertical list. */
  body.home-themed .dvh-clients-mast .right{
    display:grid !important;grid-template-columns:repeat(3,1fr) !important;
    gap:10px !important;
    border-left:0 !important;border-top:1px solid var(--dvh-rule);
    padding:18px 0 0 0 !important;
    align-items:stretch !important;
  }
  body.home-themed .dvh-stat-block{
    display:flex !important;flex-direction:column !important;
    align-items:center !important;justify-content:center !important;
    text-align:center !important;
    padding:14px 8px !important;
    background:rgba(20,20,26,.04);
    border:1px solid var(--dvh-rule);border-radius:14px;
    border-bottom:1px solid var(--dvh-rule) !important;
    gap:4px;
  }
  body.home-themed .dvh-stat-block .num{
    font-size:clamp(1.5rem,5vw,1.85rem) !important;
    line-height:1 !important;
  }
  body.home-themed .dvh-stat-block .lbl{
    font-size:.6rem !important;letter-spacing:.1em !important;
    line-height:1.25;
  }

  /* Filter pill row: clean 2-column grid so every pill is the same
     width and pairs sit on the same baseline. Centered, generous gap. */
  body.home-themed .dvh-filter{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
    margin:0 0 28px !important;
    justify-content:stretch !important;
    flex-wrap:initial !important;
  }
  body.home-themed .dvh-filter .pill{
    font-size:.78rem !important;
    padding:10px 14px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:8px !important;
    width:100% !important;
    text-align:left !important;
  }
  body.home-themed .dvh-filter .pill .lbl{
    flex:1 1 auto;min-width:0;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  }
  body.home-themed .dvh-filter .pill .pill-count{flex:0 0 auto}

  body.home-themed .dvh-clients-frame{padding:20px 0}
  body.home-themed .dvh-clients-frame .brand-tile{min-height:96px;padding:14px}
  body.home-themed .dvh-clients-frame .brand-tile img{max-height:56px}
  body.home-themed .dvh-clients-foot{
    flex-direction:column;align-items:center;gap:12px;text-align:center;
  }
}

/* Dark-mode tweaks for the new mobile stat cards. */
@media (max-width:900px){
  [data-theme="dark"] body.home-themed .dvh-stat-block{
    background:rgba(241,245,249,.04) !important;
    border-color:rgba(241,245,249,.12) !important;
  }
}

/* Dark mode */
[data-theme="dark"] body.home-themed .dvh-clients-mast{border-bottom-color:rgba(241,245,249,.1)}
[data-theme="dark"] body.home-themed .dvh-clients-mast h2{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-clients-mast .right{border-left-color:rgba(241,245,249,.1)}
[data-theme="dark"] body.home-themed .dvh-stat-block{border-bottom-color:rgba(241,245,249,.1)}
[data-theme="dark"] body.home-themed .dvh-stat-block .num{color:#f1f5f9}
[data-theme="dark"] body.home-themed .dvh-clients-lead{color:#cbd5e1 !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill{border-color:rgba(241,245,249,.18) !important;color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill:hover{border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill.is-active{background:#f1f5f9 !important;color:#0b1220 !important;border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill .pill-count{background:rgba(241,245,249,.08);color:#cbd5e1}
[data-theme="dark"] body.home-themed .dvh-filter .pill.is-active .pill-count{background:rgba(0,0,0,.15) !important;color:#0b1220 !important}
[data-theme="dark"] body.home-themed .dvh-clients-frame{background:#070b14;border-color:rgba(241,245,249,.08)}
[data-theme="dark"] body.home-themed .dvh-clients-frame .brand-tile{background:#FBFBF0 !important;border-color:rgba(255,255,255,.08) !important;box-shadow:none !important}
[data-theme="dark"] body.home-themed .dvh-clients-link{color:#f1f5f9;border-color:#f1f5f9}
[data-theme="dark"] body.home-themed .dvh-clients-link:hover{color:#22c55e;border-color:#22c55e}

/* ============================================================
   CLIENTS SECTION — editorial redesign
   Scoped under body.home-themed .dvh-clients-section
   ============================================================ */
body.home-themed .dvh-clients-section{padding:28px 0 48px !important}
body.home-themed .dvh-clients-section .panel{padding:0 !important}

/* Magazine-style asymmetric header */
body.home-themed .dvh-clients-mast{
  display:grid;grid-template-columns:1.45fr 1fr;
  gap:72px;align-items:end;
  padding-bottom:48px;margin-bottom:0;
  border-bottom:1px solid var(--dvh-rule);
}
body.home-themed .dvh-clients-mast .left h2{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(2.4rem,5vw,4.2rem) !important;
  font-weight:900 !important;letter-spacing:-.045em !important;line-height:.95 !important;
  margin:18px 0 24px !important;color:var(--dvh-ink) !important;text-align:left !important;max-width:none !important;
}
body.home-themed .dvh-clients-mast .left h2 span{
  color:var(--dvh-spot-text) !important;font-style:italic !important;font-weight:900 !important;
}
body.home-themed .dvh-clients-mast .dvh-clients-lead{
  font-family:'Inter',sans-serif !important;font-size:1.05rem !important;line-height:1.65 !important;
  color:var(--dvh-text) !important;max-width:560px !important;margin:0 !important;text-align:left !important;
}

/* Right column — vertical stat stack */
body.home-themed .dvh-clients-mast .right{
  display:grid;gap:0;
  border-left:1px solid var(--dvh-rule);
}
body.home-themed .dvh-stat-block{
  display:flex;align-items:baseline;gap:18px;
  padding:18px 0 18px 32px;
  border-bottom:1px dashed var(--dvh-rule);
}
body.home-themed .dvh-stat-block:last-child{border-bottom:0}
body.home-themed .dvh-stat-block .num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(2.6rem,4.4vw,3.8rem) !important;
  font-weight:900 !important;letter-spacing:-.045em !important;line-height:1 !important;
  color:var(--dvh-ink) !important;font-variant-numeric:tabular-nums !important;
  min-width:100px;flex-shrink:0;
}
body.home-themed .dvh-stat-block .num em{
  font-style:normal !important;color:var(--dvh-spot-text) !important;font-weight:900 !important;
}
body.home-themed .dvh-stat-block .lbl{
  font-family:'JetBrains Mono',monospace !important;font-size:.74rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.12em !important;text-transform:uppercase !important;
  line-height:1.4 !important;
}

/* Editorial filter chips */
body.home-themed .dvh-filter{
  display:flex !important;flex-wrap:wrap;gap:8px;
  padding:40px 0;border-bottom:1px solid var(--dvh-rule);margin:0 0 40px !important;
  justify-content:flex-start !important;
}
body.home-themed .dvh-filter .pill{
  display:inline-flex !important;align-items:center;gap:8px;
  padding:9px 16px !important;border-radius:999px !important;
  background:transparent !important;color:var(--dvh-ink) !important;
  border:1.5px solid var(--dvh-rule) !important;cursor:pointer;
  font-family:'Inter Tight','Inter',sans-serif !important;font-weight:600 !important;font-size:.86rem !important;
  letter-spacing:-.005em !important;line-height:1 !important;
  box-shadow:none !important;
  transition:border-color .25s,background .25s,color .25s,transform .25s !important;
}
body.home-themed .dvh-filter .pill:hover{
  border-color:var(--dvh-ink) !important;background:transparent !important;
  color:var(--dvh-ink) !important;transform:translateY(-1px) !important;
}
body.home-themed .dvh-filter .pill.is-active{
  background:var(--dvh-ink) !important;color:var(--dvh-spot) !important;
  border-color:var(--dvh-ink) !important;
}
body.home-themed .dvh-filter .pill .lbl{display:inline-block}
body.home-themed .dvh-filter .pill .pill-count{
  font-family:'JetBrains Mono',monospace !important;font-size:.7rem !important;font-weight:600 !important;
  opacity:.6;letter-spacing:.04em !important;
}
body.home-themed .dvh-filter .pill.is-active .pill-count{opacity:.7}

/* Framed marquee with edge fade-masks */
body.home-themed .dvh-clients-frame{
  position:relative;
  padding:36px 0;
  border-top:1px solid var(--dvh-rule);
  border-bottom:1px solid var(--dvh-rule);
  margin:0;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 6%,#000 94%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0,#000 6%,#000 94%,transparent 100%);
}
body.home-themed .dvh-clients-frame .client-marquee{margin:0;padding:0}
body.home-themed .dvh-clients-frame .client-marquee + .client-marquee{margin-top:18px}

/* Bigger, premium brand tiles inside the marquee */
body.home-themed .dvh-clients-frame .brand-tile{
  background:#fff !important;
  border:1.5px solid var(--dvh-rule) !important;
  border-radius:14px !important;
  flex:0 0 220px !important;height:130px !important;
  padding:24px !important;
  display:grid !important;place-items:center;
  margin-right:18px !important;
  box-shadow:none !important;
  transition:border-color .28s,transform .28s !important;
}
body.home-themed .dvh-clients-frame .brand-tile:hover{
  border-color:var(--dvh-spot) !important;transform:translateY(-2px) !important;
}
body.home-themed .dvh-clients-frame .brand-tile img{
  max-width:100% !important;max-height:78px !important;width:auto;height:auto;
  object-fit:contain !important;filter:none !important;opacity:1 !important;
}
body.home-themed .dvh-clients-frame .brand-tile--dark{
  background:var(--dvh-ink) !important;border-color:var(--dvh-ink) !important;
}
body.home-themed .dvh-clients-frame .brand-tile--dark img{
  filter:brightness(0) invert(1) !important;opacity:.95 !important;
}

/* Foot CTA strip */
body.home-themed .dvh-clients-foot{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  padding:36px 0 0;
}
body.home-themed .dvh-clients-credit{
  font-family:'JetBrains Mono',monospace !important;font-size:.7rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.14em !important;text-transform:uppercase !important;
}
body.home-themed .dvh-clients-link{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:800 !important;font-size:1rem !important;letter-spacing:-.01em;
  color:var(--dvh-ink) !important;text-decoration:none !important;
  border-bottom:1.5px solid var(--dvh-ink);padding-bottom:4px;
  transition:color .28s,border-color .28s,gap .35s cubic-bezier(.22,.61,.36,1);
}
body.home-themed .dvh-clients-link:hover{
  color:var(--dvh-spot-text) !important;border-color:var(--dvh-spot-text) !important;gap:16px;
}
body.home-themed .dvh-clients-link svg{width:16px;height:16px;transition:transform .35s}
body.home-themed .dvh-clients-link:hover svg{transform:translateX(4px)}

/* Responsive */
@media (max-width:980px){
  body.home-themed .dvh-clients-mast{grid-template-columns:1fr;gap:32px}
  body.home-themed .dvh-clients-mast .right{border-left:0;border-top:1px solid var(--dvh-rule);padding-top:18px}
  body.home-themed .dvh-stat-block{padding-left:0}
  body.home-themed .dvh-stat-block .num{min-width:84px}
  body.home-themed .dvh-clients-frame .brand-tile{flex:0 0 168px !important;height:108px !important;padding:18px !important}
  body.home-themed .dvh-clients-frame .brand-tile img{max-height:60px !important}
}

/* Dark mode parity */
[data-theme="dark"] body.home-themed .dvh-clients-mast{border-bottom-color:rgba(241,245,249,.12) !important}
[data-theme="dark"] body.home-themed .dvh-clients-mast .left h2{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-clients-mast .dvh-clients-lead{color:#cbd5e1 !important}
[data-theme="dark"] body.home-themed .dvh-clients-mast .right{border-left-color:rgba(241,245,249,.12) !important}
[data-theme="dark"] body.home-themed .dvh-stat-block{border-bottom-color:rgba(241,245,249,.1) !important}
[data-theme="dark"] body.home-themed .dvh-stat-block .num{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-filter{border-bottom-color:rgba(241,245,249,.1) !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill{border-color:rgba(241,245,249,.18) !important;color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill:hover{border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-filter .pill.is-active{background:#f1f5f9 !important;color:#0b1220 !important;border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-clients-frame{border-top-color:rgba(241,245,249,.1) !important;border-bottom-color:rgba(241,245,249,.1) !important}
[data-theme="dark"] body.home-themed .dvh-clients-frame .brand-tile{background:#FBFBF0 !important;border-color:rgba(255,255,255,.08) !important}
[data-theme="dark"] body.home-themed .dvh-clients-frame .brand-tile--dark{background:#14141A !important;border-color:#1e293b !important}
[data-theme="dark"] body.home-themed .dvh-clients-link{color:#f1f5f9 !important;border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-clients-link:hover{color:#22c55e !important;border-color:#22c55e !important}

/* ============================================================
   CASE STUDIES SECTION — numbered editorial list
   ============================================================ */
body.home-themed .dvh-cases-section{padding:48px 0 !important}
body.home-themed .dvh-cases-section .panel{padding:0 !important;background:transparent !important;box-shadow:none !important;border:0 !important}

/* Asymmetric mast (same pattern as clients section) */
body.home-themed .dvh-cases-mast{
  display:grid;grid-template-columns:1.2fr 1fr;
  gap:64px;align-items:end;
  padding-bottom:48px;margin-bottom:0;
  border-bottom:1px solid var(--dvh-rule);
}
body.home-themed .dvh-cases-mast .left h2{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(2.4rem,5vw,4.2rem) !important;
  font-weight:900 !important;letter-spacing:-.045em !important;line-height:.95 !important;
  margin:18px 0 0 !important;color:var(--dvh-ink) !important;text-align:left !important;max-width:none !important;
}
body.home-themed .dvh-cases-mast .left h2 span{
  color:var(--dvh-spot-text) !important;font-style:italic !important;font-weight:900 !important;
}
body.home-themed .dvh-cases-mast .right{display:flex;flex-direction:column;gap:24px}
body.home-themed .dvh-cases-lead{
  font-family:'Inter',sans-serif !important;font-size:1.04rem !important;line-height:1.6 !important;
  color:var(--dvh-text) !important;max-width:480px !important;margin:0 !important;
}
body.home-themed .dvh-cases-credit{
  display:flex;flex-direction:column;gap:6px;
  padding-top:18px;border-top:1px dashed var(--dvh-rule);
}
body.home-themed .dvh-mono-line{
  font-family:'JetBrains Mono',monospace !important;font-size:.72rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.14em !important;text-transform:uppercase !important;
  display:flex;align-items:center;gap:10px;
}
body.home-themed .dvh-mono-line:before{
  content:"";width:4px;height:4px;border-radius:50%;background:var(--dvh-spot);
}

/* Numbered editorial list */
body.home-themed .dvh-cases-list{
  display:flex;flex-direction:column;
  margin-bottom:36px;
}
body.home-themed .dvh-case-row{
  position:relative;overflow:hidden;
  display:grid;grid-template-columns:64px 200px 1fr 130px 44px;
  gap:32px;align-items:center;
  padding:32px 0;
  border-bottom:1px solid var(--dvh-rule);
  text-decoration:none !important;color:var(--dvh-ink) !important;
  transition:padding .35s cubic-bezier(.22,.61,.36,1),background .25s !important;
}
body.home-themed .dvh-case-row:hover{
  padding-left:24px;padding-right:24px;background:rgba(20,20,26,.025);
}

/* Big serial number */
body.home-themed .dvh-case-row .num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;letter-spacing:-.04em !important;
  font-size:clamp(2.2rem,3.4vw,3rem) !important;
  color:transparent !important;
  -webkit-text-stroke:1.5px var(--dvh-ink);
  line-height:1;font-variant-numeric:tabular-nums;
  transition:color .3s,-webkit-text-stroke .3s !important;
  align-self:center;
}
body.home-themed .dvh-case-row:hover .num{
  color:var(--dvh-spot-text) !important;-webkit-text-stroke:0 !important;
}

/* Brand identity column */
body.home-themed .dvh-case-row .brand{display:flex;flex-direction:column;gap:6px}
body.home-themed .dvh-case-row .brand .b-name{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:800 !important;font-size:1.15rem !important;letter-spacing:-.02em !important;
  color:var(--dvh-ink) !important;line-height:1.15;
  display:block;
}
body.home-themed .dvh-case-row .brand .b-meta{
  font-family:'JetBrains Mono',monospace !important;font-size:.58rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.1em !important;text-transform:uppercase !important;
  line-height:1.45;
  display:block;white-space:normal;word-break:normal;overflow-wrap:break-word;
  max-width:100%;margin-top:4px;
}

/* Body — headline + description */
body.home-themed .dvh-case-row .body h3{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;letter-spacing:-.025em !important;
  font-size:1.4rem !important;line-height:1.1 !important;
  margin:0 0 8px !important;color:var(--dvh-ink) !important;
  transition:color .3s !important;
}
body.home-themed .dvh-case-row:hover .body h3{color:var(--dvh-spot-text) !important}
body.home-themed .dvh-case-row .body p{
  font-family:'Inter',sans-serif !important;font-size:.94rem !important;line-height:1.55 !important;
  color:var(--dvh-text) !important;margin:0 !important;max-width:540px;
}

/* Metric column */
body.home-themed .dvh-case-row .metric{
  display:flex;flex-direction:column;gap:4px;text-align:right;align-items:flex-end;
}
body.home-themed .dvh-case-row .metric .m-num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;font-style:italic !important;letter-spacing:-.04em !important;
  font-size:2.4rem !important;line-height:1 !important;
  color:var(--dvh-spot-text) !important;
}
body.home-themed .dvh-case-row .metric .m-num em{
  font-style:italic !important;font-weight:900 !important;color:var(--dvh-spot-text) !important;
}
body.home-themed .dvh-case-row .metric .m-lbl{
  font-family:'JetBrains Mono',monospace !important;font-size:.64rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.12em !important;text-transform:uppercase !important;
}

/* Arrow circle on the far right */
body.home-themed .dvh-case-row .arrow{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;
  background:transparent;color:var(--dvh-ink);
  border:1.5px solid var(--dvh-rule);flex-shrink:0;
  transition:background .28s,color .28s,border-color .28s,transform .35s !important;
}
body.home-themed .dvh-case-row .arrow svg{width:16px;height:16px}
body.home-themed .dvh-case-row:hover .arrow{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;
  border-color:var(--dvh-spot) !important;transform:translateX(4px) !important;
}

/* Foot CTA */
body.home-themed .dvh-cases-foot{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  padding-top:32px;
}

/* Responsive */
@media (max-width:1100px){
  body.home-themed .dvh-case-row{grid-template-columns:48px 1fr 100px 40px;gap:24px}
  body.home-themed .dvh-case-row .brand{grid-column:2 / 3;margin-bottom:-4px}
  body.home-themed .dvh-case-row .body{grid-column:2 / 3;grid-row:auto}
  body.home-themed .dvh-case-row .num{font-size:1.6rem !important;align-self:start;padding-top:4px}
  }
@media (max-width:760px){
  body.home-themed .dvh-cases-section{padding:40px 0 !important}
  body.home-themed .dvh-cases-mast{grid-template-columns:1fr;gap:18px;padding-bottom:20px}
  body.home-themed .dvh-case-row{
    grid-template-columns:auto 1fr;gap:14px;padding:28px 0;
  }
  body.home-themed .dvh-case-row .num{grid-column:1;grid-row:1;font-size:1.2rem !important}
  body.home-themed .dvh-case-row .brand{grid-column:2;grid-row:1}
  body.home-themed .dvh-case-row .body{grid-column:1 / -1;grid-row:2}
  body.home-themed .dvh-case-row .metric{grid-column:1 / -1;grid-row:3;flex-direction:row;align-items:baseline;gap:14px;text-align:left;align-items:flex-start}
  body.home-themed .dvh-case-row .metric .m-num{font-size:1.6rem !important}
  body.home-themed .dvh-case-row .arrow{grid-column:1 / -1;grid-row:4;justify-self:flex-end}
  body.home-themed .dvh-case-row:hover{padding-left:0;padding-right:0;background:transparent}
}

/* Dark mode parity */
[data-theme="dark"] body.home-themed .dvh-cases-mast{border-bottom-color:rgba(241,245,249,.12) !important}
[data-theme="dark"] body.home-themed .dvh-cases-mast .left h2{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-cases-lead{color:#cbd5e1 !important}
[data-theme="dark"] body.home-themed .dvh-cases-credit{border-top-color:rgba(241,245,249,.1) !important}
[data-theme="dark"] body.home-themed .dvh-case-row{border-bottom-color:rgba(241,245,249,.1) !important;color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-case-row:hover{background:rgba(241,245,249,.04)}
[data-theme="dark"] body.home-themed .dvh-case-row .num{-webkit-text-stroke-color:#f1f5f9}
[data-theme="dark"] body.home-themed .dvh-case-row:hover .num{color:#22c55e !important;-webkit-text-stroke:0 !important}
[data-theme="dark"] body.home-themed .dvh-case-row .brand .b-name{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-case-row .body h3{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-case-row:hover .body h3{color:#22c55e !important}
[data-theme="dark"] body.home-themed .dvh-case-row .body p{color:#cbd5e1 !important}
[data-theme="dark"] body.home-themed .dvh-case-row .metric .m-num,
[data-theme="dark"] body.home-themed .dvh-case-row .metric .m-num em{color:#22c55e !important}
[data-theme="dark"] body.home-themed .dvh-case-row .arrow{border-color:rgba(241,245,249,.2) !important;color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-case-row:hover .arrow{background:#22c55e !important;color:#0b1220 !important;border-color:#22c55e !important}
[data-theme="dark"] [data-theme="dark"] body.home-themed .dvh-cases-foot{border-top-color:rgba(241,245,249,.12) !important}
/* ============================================================
   CASE STUDIES — Numbered editorial list (new design)
   Replaces the featured-spread + 3-grid layout
   ============================================================ */
body.home-themed .dvh-cases-list{
  display:flex;flex-direction:column;
  border-top:1px solid var(--dvh-rule);
  margin-bottom:32px;
}
body.home-themed .dvh-case-row{
  position:relative;display:grid;
  grid-template-columns:80px 200px 1fr 140px 48px;
  align-items:center;gap:32px;
  padding:40px 0;
  text-decoration:none !important;color:var(--dvh-ink) !important;
  border-bottom:1px solid var(--dvh-rule);
  transition:padding .35s cubic-bezier(.22,.61,.36,1),background .35s !important;
  overflow:hidden;
}
body.home-themed .dvh-case-row:hover{
  padding-left:24px;padding-right:24px;
  background:rgba(34,197,94,.025);
}

/* 01 02 03 04 numbers — outlined display */
body.home-themed .dvh-case-row .num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(3.4rem,6vw,5.2rem) !important;
  font-weight:900 !important;letter-spacing:-.05em !important;line-height:.9 !important;
  color:transparent !important;
  -webkit-text-stroke:1.5px var(--dvh-ink);
  font-variant-numeric:tabular-nums;
  transition:color .35s,-webkit-text-stroke .35s !important;
}
body.home-themed .dvh-case-row:hover .num{
  color:var(--dvh-spot-text) !important;-webkit-text-stroke:0 !important;
}

/* Brand column — name + small mono industry tag */
body.home-themed .dvh-case-row .brand{display:flex;flex-direction:column;gap:6px;min-width:0}
body.home-themed .dvh-case-row .b-name{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-weight:900 !important;font-size:1.25rem !important;letter-spacing:-.02em !important;
  color:var(--dvh-ink) !important;line-height:1.1;
}
body.home-themed .dvh-case-row .b-meta{
  font-family:'JetBrains Mono',monospace !important;font-size:.6rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.12em !important;text-transform:uppercase !important;
  line-height:1.4;
  display:block;white-space:normal;word-break:normal;overflow-wrap:break-word;
  max-width:100%;
}

/* Headline + description */
body.home-themed .dvh-case-row .body{display:flex;flex-direction:column;gap:6px;min-width:0}
body.home-themed .dvh-case-row .body h3{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(1.2rem,1.9vw,1.55rem) !important;
  font-weight:800 !important;letter-spacing:-.025em !important;line-height:1.15 !important;
  color:var(--dvh-ink) !important;margin:0 !important;
  transition:color .35s;
}
body.home-themed .dvh-case-row .body p{
  font-family:'Inter',sans-serif !important;font-size:.94rem !important;line-height:1.5 !important;
  color:var(--dvh-text) !important;margin:0 !important;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
body.home-themed .dvh-case-row:hover .body h3{color:var(--dvh-spot-text) !important}

/* Metric — big italic green number */
body.home-themed .dvh-case-row .metric{
  display:flex;flex-direction:column;gap:4px;align-items:flex-end;text-align:right;
}
body.home-themed .dvh-case-row .m-num{
  font-family:'Inter Tight','Inter',sans-serif !important;
  font-size:clamp(1.8rem,3vw,2.6rem) !important;
  font-weight:900 !important;font-style:italic !important;letter-spacing:-.04em !important;line-height:1 !important;
  color:var(--dvh-spot-text) !important;font-variant-numeric:tabular-nums;
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}
body.home-themed .dvh-case-row .m-num em{font-style:italic !important;font-weight:900 !important;color:var(--dvh-spot-text) !important}
body.home-themed .dvh-case-row:hover .m-num{transform:scale(1.06)}
body.home-themed .dvh-case-row .m-lbl{
  font-family:'JetBrains Mono',monospace !important;font-size:.66rem !important;
  color:var(--dvh-mute) !important;letter-spacing:.14em !important;text-transform:uppercase !important;
}

/* Arrow circle */
body.home-themed .dvh-case-row .arrow{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;flex-shrink:0;
  background:transparent;color:var(--dvh-ink);
  border:1.5px solid var(--dvh-ink);
  transition:background .3s,color .3s,border-color .3s,transform .35s !important;
}
body.home-themed .dvh-case-row:hover .arrow{
  background:var(--dvh-spot) !important;color:var(--dvh-ink) !important;border-color:var(--dvh-spot) !important;
  transform:translateX(4px);
}
body.home-themed .dvh-case-row .arrow svg{width:18px;height:18px}

/* Responsive */
@media (max-width:1100px){
  body.home-themed .dvh-case-row{
    grid-template-columns:60px 1fr 120px 40px;
    gap:24px;padding:32px 0;
  }
  body.home-themed .dvh-case-row .brand{grid-column:2/3;grid-row:1/2;flex-direction:row;align-items:baseline;gap:14px;flex-wrap:wrap}
  body.home-themed .dvh-case-row .body{grid-column:2/3;grid-row:2/3}
  }
@media (max-width:760px){
  body.home-themed .dvh-case-row{
    grid-template-columns:48px 1fr auto;
    grid-template-rows:auto auto auto;
    gap:14px 18px;padding:28px 0;
  }
  body.home-themed .dvh-case-row .num{
    grid-column:1/2;grid-row:1/4;font-size:2.4rem !important;
  }
  body.home-themed .dvh-case-row .brand{grid-column:2/-1;grid-row:1/2}
  body.home-themed .dvh-case-row .body{grid-column:2/-1;grid-row:2/3}
  body.home-themed .dvh-case-row .body h3{font-size:1.1rem !important}
  body.home-themed .dvh-case-row .metric{grid-column:2/3;grid-row:3/4;align-items:flex-start;text-align:left}
  body.home-themed .dvh-case-row .m-num{font-size:1.6rem !important}
  body.home-themed .dvh-case-row .arrow{
    grid-column:3/4;grid-row:3/4;align-self:end;width:38px;height:38px;
  }
  body.home-themed .dvh-case-row:hover{padding-left:14px;padding-right:14px}
}

/* Dark mode parity */
[data-theme="dark"] body.home-themed .dvh-cases-list{border-top-color:rgba(241,245,249,.12) !important}
[data-theme="dark"] body.home-themed .dvh-case-row{border-bottom-color:rgba(241,245,249,.1) !important}
[data-theme="dark"] body.home-themed .dvh-case-row:hover{background:rgba(34,197,94,.04) !important}
[data-theme="dark"] body.home-themed .dvh-case-row .num{-webkit-text-stroke-color:#f1f5f9}
[data-theme="dark"] body.home-themed .dvh-case-row:hover .num{color:#22c55e !important}
[data-theme="dark"] body.home-themed .dvh-case-row .b-name,
[data-theme="dark"] body.home-themed .dvh-case-row .body h3{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-case-row .body p{color:#cbd5e1 !important}
[data-theme="dark"] body.home-themed .dvh-case-row .m-num,
[data-theme="dark"] body.home-themed .dvh-case-row .m-num em{color:#22c55e !important}
[data-theme="dark"] body.home-themed .dvh-case-row:hover .body h3{color:#22c55e !important}
[data-theme="dark"] body.home-themed .dvh-case-row .arrow{color:#f1f5f9 !important;border-color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .dvh-case-row:hover .arrow{background:#22c55e !important;color:#0b1220 !important;border-color:#22c55e !important}

/* ============================================================
   === QA pass: overlap & contrast fixes ===
   Surgical overrides only. All scoped to body.home-themed.
   Issues addressed:
   1. Green #22c55e text on cream fails WCAG (1.86:1).
      Swap to #16a34a where the text is on cream/white.
   2. Hero 3D review cards translateX collide horizontally
      with the left text column at narrow viewports.
   3. Case-row outlined "01..04" font-size 5.2rem overflows
      the fixed 80px column and gets clipped by overflow:hidden.
   4. Long industry strings in .b-meta + rating-card platform
      chips need bounded wrapping and contained sizing.
   5. Final CTA inline-styled button text vs background.
   ============================================================ */

/* --- 1a. WWD row numbers + arrows: green-on-cream → darker green --- */
body.home-themed .wwd-row .row-num{color:var(--dvh-spot-text) !important}
body.home-themed .wwd-row.active .row-arrow,
body.home-themed .wwd-row:hover .row-arrow{color:var(--dvh-spot-text) !important}

/* --- 1b. Rating-card "Verified / Top Rated / Recommended" chip:
       green text on light-green soft bg failed contrast.
       Force darker green text + slightly opaque tint. --- */
body.home-themed .rating-card .verified{
  background:rgba(34,197,94,.14) !important;
  color:var(--dvh-spot-text) !important;
  border-color:rgba(22,163,74,.35) !important;
}
body.home-themed .rating-card .verified:before{color:var(--dvh-spot-text) !important}

/* --- 1c. Tcard quote-mark on dark testimonials: was --dvh-spot @ .5
       → opaque brighter green so the glyph reads (decorative but
       was washing out). Spot #22c55e on ink #14141A is 6.6:1. --- */
body.home-themed .testimonials-bg .tcard2 .quote-mark{opacity:.85 !important}

/* --- 1d. Section-head h2 SPAN inside .testimonials-bg currently
       inherits --dvh-spot-text (#16a34a) which is muddy on dark ink.
       Use brighter spot for green-on-dark contexts. --- */
body.home-themed .testimonials-bg .section-head h2 span,
body.home-themed .testimonials-bg h2 span{
  color:var(--dvh-spot) !important;
}

/* --- 2. Hero review cards: prevent horizontal collision with the
       left text column at intermediate viewport widths.
       Cards translateX up to -32px / +36px inside the right column;
       add clear inner padding and clamp the column so they stay
       within their grid track. --- */
body.home-themed .hv-a-reviews{
  padding:8px 40px !important;       /* breathing room for translateX */
  min-width:0 !important;             /* prevent grid blowout */
}
body.home-themed .hero .container.hv-a > .hv-a-text,
body.home-themed .hero .container.hv-a > .hv-a-reviews{
  min-width:0 !important;
}
/* Narrower viewports (above mobile breakpoint): cards translate less
   so they don't bleed across the gap. */
@media (max-width:1180px) and (min-width:961px){
  body.home-themed .hv-a-reviews{padding:8px 24px !important}
  body.home-themed .hv-a-reviews .rev:nth-child(2){
    animation:dvhCardPop1Tight .9s cubic-bezier(.34,1.56,.64,1) .12s backwards,
              dvhFloat1Tight 8s ease-in-out 1.1s infinite !important;
  }
  body.home-themed .hv-a-reviews .rev:nth-child(3){
    animation:dvhCardPop2Tight .9s cubic-bezier(.34,1.56,.64,1) .28s backwards,
              dvhFloat2Tight 8s ease-in-out 2.8s infinite !important;
  }
  body.home-themed .hv-a-reviews .rev:nth-child(4){
    animation:dvhCardPop3Tight .9s cubic-bezier(.34,1.56,.64,1) .44s backwards,
              dvhFloat3Tight 8s ease-in-out 4.4s infinite !important;
  }
  body.home-themed .hv-a-reviews .rev:nth-child(2):hover{transform:perspective(1200px) rotateY(-3deg) rotateX(1deg) translateX(-14px) translateY(-12px) !important}
  body.home-themed .hv-a-reviews .rev:nth-child(3):hover{transform:perspective(1200px) rotateY(2deg) rotateX(-1deg) translateX(16px) translateY(-12px) !important}
  body.home-themed .hv-a-reviews .rev:nth-child(4):hover{transform:perspective(1200px) rotateY(-2deg) rotateX(1deg) translateX(-8px) translateY(-12px) !important}
}
@keyframes dvhCardPop1Tight{
  0%{opacity:0;transform:perspective(1200px) rotateY(-3deg) rotateX(1deg) translateX(-14px) translateY(48px) scale(.92)}
  100%{opacity:1;transform:perspective(1200px) rotateY(-3deg) rotateX(1deg) translateX(-14px) translateY(0) scale(1)}
}
@keyframes dvhCardPop2Tight{
  0%{opacity:0;transform:perspective(1200px) rotateY(2deg) rotateX(-1deg) translateX(16px) translateY(48px) scale(.92)}
  100%{opacity:1;transform:perspective(1200px) rotateY(2deg) rotateX(-1deg) translateX(16px) translateY(0) scale(1)}
}
@keyframes dvhCardPop3Tight{
  0%{opacity:0;transform:perspective(1200px) rotateY(-2deg) rotateX(1deg) translateX(-8px) translateY(48px) scale(.92)}
  100%{opacity:1;transform:perspective(1200px) rotateY(-2deg) rotateX(1deg) translateX(-8px) translateY(0) scale(1)}
}
@keyframes dvhFloat1Tight{
  0%,100%{transform:perspective(1200px) rotateY(-3deg) rotateX(1deg) translateX(-14px) translateY(0)}
  50%{transform:perspective(1200px) rotateY(-3deg) rotateX(1deg) translateX(-14px) translateY(-8px)}
}
@keyframes dvhFloat2Tight{
  0%,100%{transform:perspective(1200px) rotateY(2deg) rotateX(-1deg) translateX(16px) translateY(0)}
  50%{transform:perspective(1200px) rotateY(2deg) rotateX(-1deg) translateX(16px) translateY(-8px)}
}
@keyframes dvhFloat3Tight{
  0%,100%{transform:perspective(1200px) rotateY(-2deg) rotateX(1deg) translateX(-8px) translateY(0)}
  50%{transform:perspective(1200px) rotateY(-2deg) rotateX(1deg) translateX(-8px) translateY(-8px)}
}

/* --- 3. Case-row outlined number overflowing fixed 80px column.
       Widen first column slightly and tame max font-size so 01..04
       always fit; also drop overflow:hidden on the row so glyphs
       don't get clipped if anything still extrudes. --- */
@media (min-width:1101px){
  body.home-themed .dvh-cases-list .dvh-case-row{
    grid-template-columns:104px 200px 1fr 140px 48px !important;
    overflow:visible !important;
  }
  body.home-themed .dvh-cases-list .dvh-case-row .num{
    font-size:clamp(3rem,4.6vw,4.4rem) !important;
    line-height:1 !important;
    max-width:104px;
  }
}
/* On the responsive 1100px breakpoint the column shrinks again — keep tame. */
@media (max-width:1100px) and (min-width:761px){
  body.home-themed .dvh-cases-list .dvh-case-row .num{
    font-size:clamp(2rem,3.4vw,2.6rem) !important;
  }
}

/* --- 4a. Case-row brand column: long meta strings ("Automotive · India ·
       14 cities") can push the 200px track. Keep contained and wrap. --- */
body.home-themed .dvh-case-row .brand{min-width:0 !important}
body.home-themed .dvh-case-row .brand .b-name{
  overflow-wrap:break-word !important;
  word-break:break-word !important;
}
body.home-themed .dvh-case-row .body{min-width:0 !important}
body.home-themed .dvh-case-row .body h3{
  overflow-wrap:break-word !important;word-break:break-word !important;
}

/* --- 4b. Filter-pill labels — "Real Estate & Construction",
       "Healthcare & Wellness" — should never wrap into the count
       chip; keep label on one line, count separate. --- */
body.home-themed .dvh-filter .pill{
  white-space:nowrap !important;
  max-width:100% !important;
}
body.home-themed .client-filter .pill{
  white-space:nowrap !important;
  max-width:100% !important;
}
body.home-themed .dvh-filter .pill .lbl,
body.home-themed .client-filter .pill .lbl{
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  max-width:240px;
}

/* --- 4c. Trust micro-bar: "Leads delivered" label can wrap into
       the next .tr if the row hits a narrow width. Keep each tr
       intact and prevent label wrapping. --- */
body.home-themed .hv-a-trust .tr{min-width:0}
body.home-themed .hv-a-trust .tr span{
  white-space:nowrap;
}

/* --- 4d. Hero h1 + lead: long words must wrap rather than overflow
       the left grid column at intermediate viewport widths. --- */
body.home-themed .hv-a-text{min-width:0}
body.home-themed .hv-a-title,
body.home-themed .hv-a-lead{
  overflow-wrap:break-word;
  word-break:normal;
}

/* --- 4e. Stat-block num column (60+, 7, 13+) — at narrow widths
       the min-width:100px combined with the 4rem clamp could
       overflow into the label. Allow shrink. --- */
@media (max-width:540px){
  body.home-themed .dvh-stat-block{flex-direction:column;align-items:flex-start;gap:6px}
  body.home-themed .dvh-stat-block .num{min-width:0}
}

/* --- 5. Final CTA section: the inline-styled <a class="btn"
       style="background:#fff;color:#065f46"> is overridden by the
       overlay's ink button, BUT inline color #065f46 (deep emerald)
       on a green section can resemble bg if any cascade leaks
       through. Lock the values with the section selector. --- */
body.home-themed main > section[style*="linear-gradient"] a.btn{
  background:var(--dvh-ink) !important;
  color:var(--dvh-cream) !important;
  border-color:var(--dvh-ink) !important;
}
body.home-themed main > section[style*="linear-gradient"] a.btn:hover{
  background:var(--dvh-cream) !important;
  color:var(--dvh-ink) !important;
  border-color:var(--dvh-cream) !important;
}
/* The h2 has inline color:#fff and p has inline color:#d1fae5 on a now-flat
   green section — overlay already overrides h2 to ink and p to ink-translucent,
   but pin them again at higher specificity to be safe. */
body.home-themed main > section[style*="linear-gradient"] h2[style*="#fff"],
body.home-themed main > section[style*="linear-gradient"] h2[style*="color"]{
  color:var(--dvh-ink) !important;
}
body.home-themed main > section[style*="linear-gradient"] p[style*="#d1fae5"],
body.home-themed main > section[style*="linear-gradient"] p[style*="color"]{
  color:rgba(20,20,26,.78) !important;
}

/* --- 6. Hero review card stars (★★★★★) inside Google card use
       #FBC02D yellow — fine. The .stars class globally is green
       (.rating-card .stars). On the white rating-card surface,
       green stars #22c55e on #fff = 2.2:1, just decorative but
       still readable enough. Bump to a slightly darker hue so
       they read as actual stars, not vague shapes. --- */
body.home-themed .rating-card .stars{color:#16a34a !important}

/* --- 7. WWD preview "Explore SEO Services" CTA inside dark
       wwd-preview — already overridden to green-on-ink. The
       hover state was cream-on-cream-bordered. Confirm via
       darker text on cream hover. --- */
body.home-themed .wwd-preview .pv-cta:hover{
  background:var(--dvh-cream) !important;
  color:var(--dvh-ink) !important;
  border-color:var(--dvh-cream) !important;
}

/* --- 8. Hero rev cards: stop translateY from the page-level
       dvh-reveal motion compounding on top of the per-card
       float keyframes (which can spike vertical overlap during
       the first 800ms). Reviews aside is not a .dvh-reveal but
       belongs to the hv-a container that has data-parallax. --- */
body.home-themed .hv-a-reviews .rev{
  contain:layout paint;
}

/* --- 9. dvh-clients-link svg uses currentColor — ensure visible
       on hover (was --dvh-spot-text which is OK on cream).
       This is fine; no override needed.  --- */

/* --- 10. Marquee strip horizontal overflow guard: the
       .dvh-clients-frame uses mask-image. Ensure the inner
       .marquee-track doesn't push parent width. --- */
body.home-themed .dvh-clients-frame{overflow:hidden !important}
body.home-themed .dvh-clients-frame .marquee{max-width:100%}

/* --- 11. Dark-mode parity for the contrast fixes --- */
/* All large section headings — home.css's light-mode rule forces
   color:var(--dvh-ink) !important (=#14141A) so the dark-mode default
   color:#f1f5f9 loses the cascade. Override here with !important. */
[data-theme="dark"] body.home-themed .section-head h2,
[data-theme="dark"] body.home-themed .impact-head h2,
[data-theme="dark"] body.home-themed .sec-head h2{
  color:#f1f5f9 !important;
}

[data-theme="dark"] body.home-themed .wwd-row{
  border-color:rgba(255,255,255,.1) !important;
}
[data-theme="dark"] body.home-themed .wwd-row .row-num{color:#22c55e !important}
[data-theme="dark"] body.home-themed .wwd-row .row-title{color:#f1f5f9 !important}
[data-theme="dark"] body.home-themed .wwd-row .row-arrow{color:#94a3b8 !important}
[data-theme="dark"] body.home-themed .wwd-row.active .row-arrow,
[data-theme="dark"] body.home-themed .wwd-row:hover .row-arrow{color:#22c55e !important}
[data-theme="dark"] body.home-themed .rating-card .verified{
  background:rgba(34,197,94,.16) !important;
  color:#86efac !important;
  border-color:rgba(34,197,94,.35) !important;
}
[data-theme="dark"] body.home-themed .rating-card .verified:before{color:#86efac !important}
[data-theme="dark"] body.home-themed .rating-card .stars{color:#22c55e !important}
[data-theme="dark"] body.home-themed .testimonials-bg .section-head h2 span,
[data-theme="dark"] body.home-themed .testimonials-bg h2 span{color:#22c55e !important}

/* ------------------------------------------------------------------ */
/* Dark-mode contrast fixes (audit 2026-05-16)                        */
/* ------------------------------------------------------------------ */

/* Eyebrow chips across all home sections — white pill + dark text was
   invisible on dark page bg. Switch to the same green-tinted pill used
   in the global eyebrow rule. Applies to .section-head .eyebrow,
   .impact-head .eyebrow, .dvh-clients-mast .eyebrow, .dvh-cases-mast
   .left .eyebrow, .testimonials-bg .eyebrow, etc. */
[data-theme="dark"] body.home-themed .eyebrow,
[data-theme="dark"] body.home-themed .section-head .eyebrow,
[data-theme="dark"] body.home-themed .impact-head .eyebrow,
[data-theme="dark"] body.home-themed .dvh-clients-mast .eyebrow,
[data-theme="dark"] body.home-themed .dvh-cases-mast .left .eyebrow,
[data-theme="dark"] body.home-themed .testimonials-bg .eyebrow{
  background:linear-gradient(135deg,#0b3520,#0f2a1c) !important;
  color:#86efac !important;
  border-color:rgba(34,197,94,.3) !important;
}

/* Section-head description paragraph — base color var(--dvh-text)
   = #3a3a4a, which is unreadable on dark bg. */
[data-theme="dark"] body.home-themed .section-head p,
[data-theme="dark"] body.home-themed .impact-head p{
  color:#cbd5e1 !important;
}

/* Impact metric labels — base #6b7280 is dim on dark bg. */
[data-theme="dark"] body.home-themed .impact-label{
  color:#94a3b8 !important;
}

/* Case-studies / clients "credit" microcopy — base #6b6b78 is dim. */
[data-theme="dark"] body.home-themed .dvh-clients-credit,
[data-theme="dark"] body.home-themed .dvh-cases-mast .dvh-clients-credit{
  color:#94a3b8 !important;
}

/* ------------------------------------------------------------------ */
/* Dark-mode contrast fixes — second pass (multi-page audit 2026-05-16) */
/* ------------------------------------------------------------------ */

/* Homepage: "What We Do" preview-card icon (stroke uses --dvh-ink). */
[data-theme="dark"] body.home-themed .wwd-preview .pv-icon svg{
  stroke:#cbd5e1 !important;
}

/* Homepage: Impact stat suffix em (60+, 15+, ×, etc.) was dim green. */
[data-theme="dark"] body.home-themed .impact-num em{color:#86efac !important}

/* Homepage: Bento hero sparkline + Why-Choose card icons — bump green. */
[data-theme="dark"] body.home-themed .bento-spark path[stroke]{stroke:#86efac !important}
[data-theme="dark"] body.home-themed .why-item .ic svg{stroke:#86efac !important}

/* About: green-text wavy underline SVG should use lighter green on dark. */
[data-theme="dark"] body.home-themed .about-hero h1 .green_text:after{
  filter:brightness(1.35);
}

/* About: mission/vision decorative line drawings — bump for visibility. */
[data-theme="dark"] body.home-themed .mv-card .mv-deco svg{
  stroke:#cbd5e1 !important;opacity:.9;
}

/* About: expertise card hover green — use brighter green in BOTH modes
   so hover state pops without going muddy. */
body.home-themed .exp-card:hover .exp-link{color:#22c55e !important}

/* ------------------------------------------------------------------ */
/* Mobile centering — make all major sections read centered on phones */
/* ------------------------------------------------------------------ */
@media (max-width:900px){
  /* "Why Choose DigiVeritaz" — left panel content + right items header */
  body.home-themed .why-visual{text-align:center;align-items:center}
  body.home-themed .why-visual > *{align-self:center}
  body.home-themed .why-visual .badge{align-self:center}
  body.home-themed .why-visual p{margin-left:auto;margin-right:auto}
  body.home-themed .mini-stats{justify-items:center}

  /* "What We Do" services list — row content centered when stacked */
  body.home-themed .wwd-list{align-items:center}

  /* Three cases / case-study editorial mast head */
  body.home-themed .dvh-cases-mast{text-align:center}
  body.home-themed .dvh-cases-mast .left,
  body.home-themed .dvh-cases-mast .right{text-align:center}
  body.home-themed .dvh-cases-mast .left .eyebrow,
  body.home-themed .dvh-cases-mast .right .dvh-cases-credit{margin-left:auto;margin-right:auto}

  /* Testimonials section head */
  body.home-themed .testimonials-bg .section-head{text-align:center}

  /* Generic section-head centering on mobile */
  body.home-themed .section-head{text-align:center}
  body.home-themed .section-head .eyebrow,
  body.home-themed .section-head p{margin-left:auto;margin-right:auto}
}

/* ------------------------------------------------------------------ */
/* Mobile polish — WWD rows + client logo marquee (audit 2026-05-18)   */
/* User report: '01 SEO & Organic Growth ...' rows + the client logo  */
/* tiles look buggy on phones. Fixing layout + sizing.                 */
/* ------------------------------------------------------------------ */
@media (max-width:780px){
  /* WWD: switch from full-width row list to a 2-column grid of
     identically-sized square-ish cards. Every cell is the same height
     and width, content is centered, no chance of uneven boxes. */
  body.home-themed .wwd-list{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    flex-direction:initial !important;
  }
  body.home-themed .wwd-row{
    margin-bottom:0 !important;
    padding:18px 14px !important;
    border-radius:14px !important;
    aspect-ratio:1 / 1 !important;          /* uniform square cells */
    box-sizing:border-box !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:space-between !important;
    gap:8px !important;
  }
  body.home-themed .wwd-row .row-num{
    font-size:.7rem !important;
    line-height:1 !important;
    margin:0 !important;
  }
  body.home-themed .wwd-row .row-title{
    flex:1 1 auto !important;
    min-width:0 !important;
    display:flex !important;align-items:center !important;
    font-size:1.05rem !important;
    line-height:1.2 !important;
    white-space:normal !important;
    overflow:hidden !important;
    word-break:break-word !important;
  }
  body.home-themed .wwd-row .row-arrow{
    align-self:flex-end !important;
    display:flex !important;align-items:center !important;justify-content:center !important;
  }
  body.home-themed .wwd-row .row-arrow svg{
    width:18px !important;height:18px !important;
  }

  /* WWD preview pane: tighten on mobile. */
  body.home-themed .wwd-preview{
    padding:24px !important;border-radius:14px !important;
  }
  body.home-themed .wwd-preview h3{font-size:1.4rem !important}

  /* Client logo marquee tiles — narrower, less padding, smaller logo. */
  body.home-themed .client-marquee .brand-tile,
  body.home-themed .dvh-clients-frame .brand-tile{
    flex:0 0 130px !important;height:88px !important;
    padding:12px !important;border-radius:12px !important;
  }
  body.home-themed .brand-tile img,
  body.home-themed .client-marquee .brand-tile img,
  body.home-themed .dvh-clients-frame .brand-tile img{
    max-height:42px !important;max-width:88% !important;
  }
}

/* Even tighter for very narrow phones. */
@media (max-width:420px){
  body.home-themed .wwd-row .row-title{font-size:.92rem !important}
  body.home-themed .client-marquee .brand-tile,
  body.home-themed .dvh-clients-frame .brand-tile{
    flex:0 0 116px !important;height:78px !important;padding:10px !important;
  }
  body.home-themed .brand-tile img,
  body.home-themed .client-marquee .brand-tile img,
  body.home-themed .dvh-clients-frame .brand-tile img{
    max-height:36px !important;
  }
}

/* ------------------------------------------------------------------ */
/* Mobile clients section — replace horizontal logo marquee with a    */
/* static 3-column grid so the logos look cleanly arranged. Desktop   */
/* still shows the dual-row scrolling marquee.                        */
/* ------------------------------------------------------------------ */
@media (max-width:780px){
  /* Stop the marquee animation and overflow, make it a normal block. */
  body.home-themed .dvh-clients-frame .marquee{
    overflow:visible !important;
    max-width:100% !important;
  }
  /* Hide the second (reverse) row — we only need one set of logos. */
  body.home-themed .dvh-clients-frame .marquee + .marquee{
    display:none !important;
  }
  /* Convert the track from a scrolling flex strip to a 3-column grid. */
  body.home-themed .dvh-clients-frame .marquee-track{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:10px !important;
    width:100% !important;
    animation:none !important;
    transform:none !important;
    padding:0 !important;
  }
  body.home-themed .dvh-clients-frame .marquee-track .brand-tile,
  body.home-themed .client-marquee .brand-tile{
    flex:initial !important;
    width:100% !important;height:auto !important;
    aspect-ratio:1 / 1 !important;
    padding:10px !important;
    border-radius:12px !important;
  }
  body.home-themed .dvh-clients-frame .brand-tile img,
  body.home-themed .client-marquee .brand-tile img{
    max-height:48px !important;max-width:80% !important;
  }
  /* Limit visible tiles to 9 (3x3) to keep the section compact. */
  body.home-themed .dvh-clients-frame .marquee-track .brand-tile:nth-child(n+10){
    display:none !important;
  }
  /* Disable hover animation effects that don't suit static grid. */
  body.home-themed .dvh-clients-frame .brand-tile:hover{
    transform:none !important;
  }
}

@media (max-width:420px){
  /* Very narrow phones: 2-column grid, slightly bigger logos. */
  body.home-themed .dvh-clients-frame .marquee-track{
    grid-template-columns:repeat(2,1fr) !important;
  }
  body.home-themed .dvh-clients-frame .marquee-track .brand-tile:nth-child(n+9){
    display:none !important;
  }
  body.home-themed .dvh-clients-frame .brand-tile img,
  body.home-themed .client-marquee .brand-tile img{
    max-height:54px !important;
  }
}
