/* ==========================================================================
   VERIFY CHECK — DESIGN SYSTEM
   Tokens derived from the brand logo: teal-cyan checkmark (#00AFC3) on
   black wordmark. Typography: Manrope (display) + IBM Plex Sans (body).
   ========================================================================== */

:root {
  /* Brand */
  --vc-teal: #049AB0;
  --vc-teal-deep: #037587;
  --vc-teal-light: #E3F6F8;
  --vc-blue: #1C8FD6;
  --vc-ink: #0A0D0F;
  --vc-ink-soft: #384047;

  /* Neutrals */
  --vc-bg: #FBFCFC;
  --vc-surface: #FFFFFF;
  --vc-surface-alt: #F2F5F6;
  --vc-border: #DFE5E7;
  --vc-border-strong: #C5CDD0;
  --vc-text: #14181A;
  --vc-text-muted: #5B666B;
  --vc-text-faint: #8B979C;

  /* Semantic */
  --vc-cta: #049AB0;
  --vc-cta-hover: #037587;
  --vc-focus: #1C8FD6;
  --vc-link: #037587;

  /* Type */
  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Scale (1.25 ratio, clamp for fluid type) */
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;
  --fs-lead: 1.1875rem;
  --fs-h4: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --fs-h3: clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem);
  --fs-h2: clamp(1.85rem, 1.5rem + 1.5vw, 2.6rem);
  --fs-h1: clamp(2.4rem, 1.8rem + 2.6vw, 3.75rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;

  /* Shape */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 1px 2px rgba(10,13,15,0.04), 0 8px 24px -12px rgba(10,13,15,0.10);
  --shadow-elevated: 0 4px 10px rgba(10,13,15,0.06), 0 24px 48px -20px rgba(4,154,176,0.22);
  --container: 1220px;

  /* Extended accent family for homepage color variety — drawn from the
     logo's teal-to-blue checkmark gradient, plus one deeper navy and one
     brighter cyan for range. Used only on homepage-scoped classes below;
     shared component base styles (.value-card, .industry-card, etc.) are
     untouched so every other page keeps its current look. */
  --vc-cyan: #17B4C7;
  --vc-navy-deep: #063049;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--vc-text);
  background: var(--vc-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--vc-link); text-decoration: none; }
a:hover { color: var(--vc-cta-hover); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--vc-ink);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: var(--fs-h4); font-weight: 700; }
p { margin: 0 0 var(--space-md); max-width: 62ch; color: var(--vc-text-muted); }
:focus-visible {
  outline: 2.5px solid var(--vc-focus);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-2xl) 0; }
.section--tight { padding: var(--space-xl) 0; }
.section--alt { background: var(--vc-surface-alt); }
.section--ink { background: var(--vc-ink); color: #fff; position: relative; overflow: hidden; }
.section--ink p { color: #B7C0C3; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: var(--space-lg); }
.section-head--wide { max-width: 780px; }
.kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--vc-teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--vc-teal);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  line-height: 1;
}
.btn-primary { background: var(--vc-cta); color: #fff; }
.btn-primary:hover { background: var(--vc-cta-hover); color: #fff; }
.btn-secondary { background: transparent; color: var(--vc-ink); border-color: var(--vc-border-strong); }
.btn-secondary:hover { border-color: var(--vc-ink); color: var(--vc-ink); }
.btn-ghost-inverse { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost-inverse:hover { border-color: #fff; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,252,252,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vc-border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo { margin-right: 28px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: var(--vc-ink); font-weight: 500; font-size: 0.95rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--vc-teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-panel {
  position: absolute; top: 100%; left: -14px; margin-top: 10px;
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 8px; min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 110;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-panel a {
  display: block; padding: 9px 10px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--vc-ink);
}
.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-panel a:hover, .nav-dropdown-panel a:focus-visible {
  background: var(--vc-surface-alt); color: var(--vc-teal-deep);
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; margin-left: 28px; flex-shrink: 0; }
.nav-toggle { display: none; }
.breadcrumbs {
  font-size: 0.82rem; color: var(--vc-text-faint); padding: 14px 0 0;
}
.breadcrumbs a { color: var(--vc-text-faint); }
.breadcrumbs a:hover { color: var(--vc-teal-deep); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-secondary, .nav-cta .btn-whatsapp { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1.5px solid var(--vc-border-strong);
    border-radius: var(--radius-sm); background: none; cursor: pointer;
  }
  .nav-cta { gap: 0; }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.85fr; gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { margin-bottom: var(--space-md); }
.hero-lead { font-size: var(--fs-lead); color: var(--vc-text-muted); max-width: 52ch; }
.hero-actions { display: flex; gap: 1rem; margin: var(--space-lg) 0; flex-wrap: wrap; }
.hero-microcopy { font-size: var(--fs-small); color: var(--vc-text-faint); }

/* Hero ambient background — slow flowing verification-signal glow.
   Purely decorative (aria-hidden), sits behind hero content, never
   affects layout: absolutely positioned within the hero's own
   overflow:hidden box, hero height/position of text is untouched. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 42% 38% at 18% 28%, rgba(4,154,176,0.13) 0%, transparent 100%),
    radial-gradient(ellipse 38% 32% at 82% 18%, rgba(28,143,214,0.11) 0%, transparent 100%),
    radial-gradient(ellipse 40% 34% at 55% 90%, rgba(91,110,225,0.08) 0%, transparent 100%);
  background-size: 160% 160%, 150% 150%, 170% 170%;
  background-position: 0% 0%, 100% 0%, 50% 100%;
  animation: heroFlow 11s ease-in-out infinite alternate;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.hero-orb-1 {
  width: 420px; height: 420px;
  top: -140px; left: -100px;
  background: radial-gradient(circle, rgba(4,154,176,0.34) 0%, rgba(4,154,176,0) 72%);
  animation: heroOrbDrift1 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  top: 4%; right: -140px;
  background: radial-gradient(circle, rgba(28,143,214,0.26) 0%, rgba(28,143,214,0) 72%);
  animation: heroOrbDrift2 7s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  bottom: -140px; left: 38%;
  background: radial-gradient(circle, rgba(91,110,225,0.16) 0%, rgba(91,110,225,0) 72%);
  animation: heroOrbDrift3 10s ease-in-out infinite alternate;
}
@keyframes heroFlow {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%; }
  100% { background-position: 30% 22%, 68% 26%, 32% 78%; }
}
@keyframes heroOrbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(130px, 90px) scale(1.22); }
}
@keyframes heroOrbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-110px, 80px) scale(1.18); }
}
@keyframes heroOrbDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(90px, -70px) scale(1.25); }
}

/* Animated keyword treatment — used on exactly one hero phrase */
.hero-highlight {
  background: linear-gradient(90deg, var(--vc-teal-deep), var(--vc-teal) 35%, var(--vc-blue) 65%, var(--vc-teal-deep));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--vc-teal-deep);
  animation: heroTextFlow 4.5s ease-in-out infinite alternate;
}
@keyframes heroTextFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 760px) {
  .hero-orb-1 { width: 240px; height: 240px; filter: blur(40px); top: -80px; left: -60px; }
  .hero-orb-2 { width: 200px; height: 200px; filter: blur(36px); right: -80px; }
  .hero-orb-3 { display: none; }
  .hero-bg::before { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before, .hero-orb-1, .hero-orb-2, .hero-orb-3 { animation: none; }
  .hero-highlight { animation: none; background-position: 30% 50%; }
}

/* verification ledger visual */
.ledger {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-md);
  position: relative;
}
.ledger-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: var(--space-sm); margin-bottom: var(--space-sm);
  border-bottom: 1px dashed var(--vc-border);
}
.ledger-head span { font-family: var(--font-mono); font-size: 0.78rem; color: var(--vc-text-faint); }
.ledger-status {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  color: var(--vc-teal-deep); background: var(--vc-teal-light);
  padding: 3px 10px; border-radius: 20px;
}
.ledger-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--vc-surface-alt);
  opacity: 0; animation: ledgerIn 0.5s ease forwards;
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row .tick {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--vc-teal); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.ledger-row .rlabel { font-size: 0.9rem; color: var(--vc-ink); font-weight: 500; }
.ledger-row .rmeta { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--vc-text-faint); }
.ledger-row:nth-child(2) { animation-delay: 0.15s; }
.ledger-row:nth-child(3) { animation-delay: 0.3s; }
.ledger-row:nth-child(4) { animation-delay: 0.45s; }
.ledger-row:nth-child(5) { animation-delay: 0.6s; }
@keyframes ledgerIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .ledger-row { opacity: 1; animation: none; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats ---------- */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--vc-border);
  border-bottom: 1px solid var(--vc-border);
}
.stat {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--vc-border);
  text-align: left;
}
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem); font-weight: 800; color: var(--vc-ink); display: block; }
.stat .label { font-size: 0.88rem; color: var(--vc-text-muted); }
@media (max-width: 760px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}

/* ---------- Logo strip ---------- */
.logo-strip-head { text-align: center; color: var(--vc-text-faint); font-size: 0.85rem; margin-bottom: var(--space-md); }
.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-xl);
}
.logo-strip span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--vc-text-faint); letter-spacing: 0.01em;
}

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.card-flush { padding: 0; border: none; background: none; }
.value-card {
  border-top: 2px solid var(--vc-teal);
  background: var(--vc-surface);
  padding: var(--space-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-card);
}
.value-card h4 { margin-bottom: 0.4rem; }
.value-card p { margin: 0; font-size: 0.94rem; }

.service-card {
  display: block;
  border: 1px solid var(--vc-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: var(--vc-surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { border-color: var(--vc-teal); box-shadow: var(--shadow-card); }
.service-card h4 { color: var(--vc-ink); margin-bottom: 0.35rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.service-card .go { font-size: 0.85rem; font-weight: 600; color: var(--vc-teal-deep); }

/* Process steps (genuine sequence -> numbered) */
.process {
  counter-reset: step;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md);
}
.process-step { position: relative; padding-top: 2.5rem; }
.process-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600;
  color: var(--vc-teal-deep); background: var(--vc-teal-light);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.9rem; margin: 0; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* Industries */
.industry-card {
  display: block; padding: var(--space-md);
  border: 1px solid var(--vc-border); border-radius: var(--radius-md);
  background: var(--vc-surface);
}
.industry-card h4 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.industry-card p { font-size: 0.88rem; margin: 0; }

/* Table */
.table-clean { width: 100%; border-collapse: collapse; }
.table-clean th, .table-clean td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--vc-border); font-size: 0.92rem; }
.table-clean th { font-family: var(--font-mono); font-size: 0.74rem; text-transform: none; color: var(--vc-text-faint); font-weight: 500; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); align-items: stretch; }
.price-card { border: 1px solid var(--vc-border); border-radius: var(--radius-md); padding: var(--space-lg) var(--space-md); background: var(--vc-surface); display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--vc-teal); box-shadow: var(--shadow-elevated); position: relative; }
.price-card .tier-name { font-family: var(--font-mono); font-size: 0.8rem; color: var(--vc-text-faint); margin-bottom: 0.5rem; }
.price-card .tier-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--vc-ink); margin-bottom: 0.25rem; }
.price-card .tier-unit { font-size: 0.85rem; color: var(--vc-text-faint); margin-bottom: var(--space-md); }
.price-card ul { margin-bottom: var(--space-md); flex-grow: 1; }
.price-card li { font-size: 0.9rem; color: var(--vc-text-muted); padding: 7px 0; padding-left: 22px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--vc-teal-deep); font-weight: 700; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--vc-border); }
.faq-item summary {
  cursor: pointer; padding: 1.15rem 0; font-weight: 600; color: var(--vc-ink);
  font-size: 1rem; display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--vc-teal-deep); font-weight: 400; margin-left: 1rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 1.15rem; margin: 0; }

/* CTA band */
.cta-band {
  background: var(--vc-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 0.35rem; }
.cta-band p { color: #B7C0C3; margin: 0; }
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 760px) { .cta-band { flex-direction: column; align-items: flex-start; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-md); }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--vc-ink); }
.field .req { color: var(--vc-teal-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.75rem 0.9rem; border: 1.5px solid var(--vc-border-strong);
  border-radius: var(--radius-sm); background: var(--vc-surface); color: var(--vc-text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--vc-teal); outline: none; box-shadow: 0 0 0 3px rgba(4,154,176,0.15);
}
.field .hint { font-size: 0.78rem; color: var(--vc-text-faint); }
.field .error { font-size: 0.8rem; color: #B4232C; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #B4232C; }
.field.invalid .error { display: block; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin-bottom: var(--space-md); }
.checkbox-field input { margin-top: 4px; }
.checkbox-field label { font-size: 0.86rem; color: var(--vc-text-muted); font-weight: 400; }
.field-honeypot {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.form-status { font-size: 0.9rem; padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: var(--space-md); display: none; }
.form-status.show { display: block; }
.form-status.success { background: var(--vc-teal-light); color: var(--vc-teal-deep); }
.form-status.error { background: #FBEAEB; color: #B4232C; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--vc-ink); color: #B7C0C3; padding: var(--space-2xl) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--space-lg); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand img { height: 30px; margin-bottom: var(--space-sm); }
.footer-brand p { color: #879296; font-size: 0.88rem; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-family: var(--font-mono); font-weight: 500; margin-bottom: var(--space-sm); }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: #B7C0C3; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-md); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: #71797D; font-size: 0.82rem; margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: #879296; font-size: 0.82rem; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.72rem;
  background: var(--vc-teal-light); color: var(--vc-teal-deep);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 0.75rem; font-weight: 600;
}
.divider { height: 1px; background: var(--vc-border); border: none; margin: var(--space-lg) 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--vc-ink); color: #fff;
  padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   HOMEPAGE COLOR ACCENTS — scoped to classes only used on index.html.
   Adds variety from the logo's teal→cyan→blue family plus one navy accent.
   Does not modify .value-card / .industry-card / .stat base rules, so every
   other page that reuses those components is completely unaffected.
   ========================================================================== */

.home-stat { position: relative; overflow: hidden; }
.home-stat::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.home-stat--1::before { background: linear-gradient(90deg, var(--vc-teal), var(--vc-teal-deep)); }
.home-stat--2::before { background: linear-gradient(90deg, var(--vc-blue), var(--vc-cyan)); }
.home-stat--3::before { background: linear-gradient(90deg, var(--vc-cyan), var(--vc-teal)); }
.home-stat--4::before { background: linear-gradient(90deg, var(--vc-navy-deep), var(--vc-blue)); }
.home-stat-num {
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.home-stat--1 .home-stat-num { background-image: linear-gradient(90deg, var(--vc-teal-deep), var(--vc-teal)); }
.home-stat--2 .home-stat-num { background-image: linear-gradient(90deg, var(--vc-blue), var(--vc-cyan)); }
.home-stat--3 .home-stat-num { background-image: linear-gradient(90deg, var(--vc-cyan), var(--vc-teal-deep)); }
.home-stat--4 .home-stat-num { background-image: linear-gradient(90deg, var(--vc-navy-deep), var(--vc-blue)); }

.home-value-card { border-top-width: 3px; }
.home-value-card--1 { border-top-color: var(--vc-teal); background: linear-gradient(180deg, rgba(4,154,176,0.06), var(--vc-surface) 55%); }
.home-value-card--2 { border-top-color: var(--vc-blue); background: linear-gradient(180deg, rgba(28,143,214,0.06), var(--vc-surface) 55%); }
.home-value-card--3 { border-top-color: var(--vc-cyan); background: linear-gradient(180deg, rgba(23,180,199,0.07), var(--vc-surface) 55%); }
.home-value-card--4 { border-top-color: var(--vc-navy-deep); background: linear-gradient(180deg, rgba(6,48,73,0.06), var(--vc-surface) 55%); }
.home-value-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem; font-size: 1.05rem; color: #fff; font-weight: 700;
}
.home-value-card--1 .home-value-icon { background: linear-gradient(135deg, var(--vc-teal), var(--vc-teal-deep)); }
.home-value-card--2 .home-value-icon { background: linear-gradient(135deg, var(--vc-blue), #0F6FB0); }
.home-value-card--3 .home-value-icon { background: linear-gradient(135deg, var(--vc-cyan), var(--vc-teal)); }
.home-value-card--4 .home-value-icon { background: linear-gradient(135deg, var(--vc-navy-deep), var(--vc-blue)); }

.home-industry-card { border-left-width: 3px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.home-industry-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.home-industry-card--1 { border-left-color: var(--vc-teal); }
.home-industry-card--2 { border-left-color: var(--vc-blue); }
.home-industry-card--3 { border-left-color: var(--vc-cyan); }
.home-industry-card--4 { border-left-color: var(--vc-navy-deep); }

/* Tech section ambient glow — echoes the hero's flowing visual language
   on the dark "technology-driven verification" band, using the same
   brand family so the page reads as one designed system. */
.home-tech-glow {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.home-tech-glow span {
  position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform;
}
.home-tech-glow .g1 {
  width: 380px; height: 380px; top: -120px; right: 6%;
  background: radial-gradient(circle, rgba(4,154,176,0.30) 0%, rgba(4,154,176,0) 72%);
  animation: heroOrbDrift1 12s ease-in-out infinite alternate;
}
.home-tech-glow .g2 {
  width: 320px; height: 320px; bottom: -140px; left: 8%;
  background: radial-gradient(circle, rgba(28,143,214,0.22) 0%, rgba(28,143,214,0) 72%);
  animation: heroOrbDrift2 9s ease-in-out infinite alternate;
}
.section--ink > .wrap { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .home-tech-glow .g1, .home-tech-glow .g2 { animation: none; }
}

/* Final CTA band — subtle brand glow instead of flat black */
.home-cta-glow { position: relative; overflow: hidden; }
.home-cta-glow::before {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(ellipse 45% 60% at 15% 30%, rgba(4,154,176,0.35) 0%, transparent 70%),
              radial-gradient(ellipse 40% 55% at 90% 80%, rgba(28,143,214,0.25) 0%, transparent 70%);
  animation: heroFlow 13s ease-in-out infinite alternate;
  pointer-events: none;
}
.home-cta-glow > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .home-cta-glow::before { animation: none; } }

/* ---------- Client logo marquee ---------- */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--space-2xl);
  animation: marqueeScroll 34s linear infinite;
}
.marquee-wrap:hover .marquee-track,
.marquee-wrap:focus-within .marquee-track { animation-play-state: paused; }
.marquee-track .client-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vc-text-faint);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Social icons (footer) ---------- */
.social-icons { display: flex; gap: 10px; margin-top: var(--space-sm); }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}
.social-icons a:hover, .social-icons a:focus-visible {
  background: var(--vc-teal); border-color: var(--vc-teal);
}
.social-icons svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- WhatsApp CTA ---------- */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--vc-ink);
  border: 1.5px solid var(--vc-border-strong);
}
.btn-whatsapp:hover { border-color: var(--vc-teal); color: var(--vc-teal-deep); }
.btn-whatsapp svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 0.9rem; font-weight: 500; margin-top: var(--space-sm);
}
.footer-whatsapp svg { width: 17px; height: 17px; fill: currentColor; }
.footer-whatsapp:hover { color: var(--vc-teal-light); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--vc-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-elevated);
  transition: background 0.15s ease, transform 0.15s ease;
}
.whatsapp-float:hover { background: var(--vc-teal-deep); transform: translateY(-2px); color: #fff; }
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
