/* ============================================================
   Workforce360 redesign — shared base + variation A & B styles
   ============================================================ */

:root {
  --brand: #00AEEF;          /* original Workforce360 brand blue */
  --brand-deep: #0085B8;
  --brand-ink: #00425C;
  --bg: #ffffff;
  --bg-soft: #F6F7F9;
  --bg-soft-2: #EEF1F4;
  --ink: #0A0F14;
  --ink-2: #1B2530;
  --muted: #5B6573;
  --muted-2: #8A95A3;
  --line: #E5E8EC;
  --line-2: #D7DCE2;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 15, 20, 0.04), 0 1px 1px rgba(10, 15, 20, 0.02);
  --shadow: 0 2px 6px rgba(10, 15, 20, 0.04), 0 8px 24px rgba(10, 15, 20, 0.06);
  --shadow-blue: 0 10px 40px -10px rgba(0, 133, 184, 0.35);
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* Initial page fade-in — pure CSS so it fires even before React mounts */
#root {
  animation: wf-page-fade-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes wf-page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Per-section reveal on scroll */
.wf-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.wf-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Image fade-in on load — prevents the "snap to size" pop once a bitmap decodes.
   Gated on body.js-images-fade so it only activates on pages whose JS will flip
   img.is-loaded after each image decodes (i.e. the React-driven homepage).
   Static subpages don't carry that class, so their images render normally. */
body.js-images-fade #va-root img {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
body.js-images-fade #va-root img.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  #root, .wf-reveal { animation: none !important; transition: none !important; }
  .wf-reveal { opacity: 1 !important; transform: none !important; }
  body.js-images-fade #va-root img { opacity: 1 !important; transition: none !important; }
}

body {
  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ============================================================
   Client logo proof bar
   ============================================================ */
.va .client-bar {
  background: var(--bg);
  padding: 40px 0 56px;
  border-top: 1px solid rgba(10, 15, 20, 0.04);
}
.va .client-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.va .client-bar-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-right: 8px;
}
.va .client-bar-logos {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.va .client-bar-logos img {
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}
.va .client-bar-logos img:hover {
  opacity: 0.95;
  filter: grayscale(0);
}
@media (max-width: 760px) {
  .va .client-bar { padding: 32px 0 40px; }
  .va .client-bar-inner { gap: 24px; flex-direction: column; }
  .va .client-bar-logos { gap: 32px; }
  .va .client-bar-logos img { height: 24px; }
}

/* ============================================================
   Lead form — shared block
   ============================================================ */
.va .lead-section {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.va .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.va .lead-side .section-eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.va .lead-side h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.va .lead-side h2 .accent {
  color: var(--brand);
}
.va .lead-side p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.55;
  max-width: 460px;
}
.va .lead-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.va .lead-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.va .lead-bullets .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.va .lead-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.va .lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
}
.va .lead-field { display: flex; flex-direction: column; gap: 6px; }
.va .lead-field.full { grid-column: 1 / -1; }
.va .lead-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.va .lead-field input,
.va .lead-field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: white;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  appearance: none;
}
.va .lead-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B6573' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.va .lead-field input::placeholder { color: var(--muted-2); }
.va .lead-field input:focus,
.va .lead-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.14);
}
.va .lead-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
  background: var(--ink);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
}
.va .lead-submit:hover { background: var(--brand); }
.va .lead-submit:active { transform: scale(0.99); }
.va .lead-foot {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--muted-2);
  text-align: center;
  margin-top: 4px;
}
.va .lead-success {
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.25);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-size: 14.5px;
  grid-column: 1 / -1;
}
.va .lead-success .badge {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============================================================
   Testimonial — shared
   ============================================================ */
.va .testimonial {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.va .testimonial-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.va .testimonial-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 28px;
}
.va .testimonial-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 0.6;
  color: var(--brand);
  display: block;
  margin: 0 0 8px;
  height: 36px;
}
.va .testimonial-quote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 36px;
  text-wrap: balance;
}
.va .testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.va .testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.va .testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.va .testimonial-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Variation B testimonial */
@media (max-width: 760px) {
  .va .testimonial, .vb .testimonial { padding: 72px 0; }
  .vb .testimonial-card { padding: 44px 28px; }
}

/* ============================================================
   Placeholder photo helper
   ============================================================ */
.photo-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(10, 15, 20, 0.04) 0,
      rgba(10, 15, 20, 0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(135deg, #E8ECEF 0%, #D5DBE0 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-placeholder::after {
  content: attr(data-label);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10, 15, 20, 0.45);
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(10, 15, 20, 0.06);
}
.photo-placeholder.dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(135deg, #1B2530 0%, #0A0F14 100%);
  border-color: rgba(255,255,255,0.08);
}
.photo-placeholder.dark::after {
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

/* ============================================================
   ===========  VARIATION A — "Premium Editorial"  ============
   ============================================================ */

.va {
  background: var(--bg);
}

/* Nav */
.va .nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 15, 20, 0.04);
}
.va .nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.va .logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.va .logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.va .logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.04em;
}
.va .logo-mark::before {
  content: "W";
}
.va .nav-links {
  display: flex;
  gap: 4px;
}
.va .nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.va .nav-links a:hover, .va .nav-links a.active { color: var(--ink); background: var(--bg-soft); }
.va .nav-cta {
  background: var(--ink);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}
.va .nav-cta:hover { background: var(--brand); }
.va .nav-cta.nav-cta-brand { background: var(--brand); color: white; }
.va .nav-cta.nav-cta-brand:hover { background: var(--ink); color: white; }

/* Hero */
.va .hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.va .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.va .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0, 174, 239, 0.08);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 174, 239, 0.18);
}
.va .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--brand);
}
.va .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 22px 0 22px;
  color: var(--ink);
}
.va .hero h1 .accent {
  display: block;
  color: var(--brand);
  font-weight: 500;
  font-size: 0.62em;
  letter-spacing: -0.025em;
  margin-top: 14px;
  line-height: 1.15;
  max-width: 600px;
}
.va .hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 32px;
}
.va .hero-form {
  display: flex;
  gap: 8px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px;
  max-width: 480px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.va .hero-form:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.14);
}
.va .hero-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 15px;
  background: transparent;
  font-family: inherit;
  color: var(--ink);
}
.va .hero-form input::placeholder { color: var(--muted-2); }
.va .btn-primary {
  background: var(--ink);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.va .btn-primary:hover { background: var(--brand); }
.va .btn-primary:active { transform: scale(0.98); }
.va .hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}
.va .avatars {
  display: flex;
}
.va .avatars span {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D5DBE0 0%, #B5BFC9 100%);
  border: 2px solid white;
  margin-left: -8px;
}
.va .avatars span:first-child { margin-left: 0; }
.va .avatars span:nth-child(1) { background: linear-gradient(135deg, #00AEEF 0%, #0085B8 100%); }
.va .avatars span:nth-child(2) { background: linear-gradient(135deg, #6B7B8C 0%, #44505C 100%); }
.va .avatars span:nth-child(3) { background: linear-gradient(135deg, #C5CED8 0%, #8A95A3 100%); }
.va .avatars span:nth-child(4) { background: linear-gradient(135deg, #00425C 0%, #001824 100%); }

.va .hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
}
.va .hero-visual .photo-placeholder { width: 100%; height: 100%; border-radius: 22px; }
.va .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
.va .stat-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.va .stat-card.tl { top: 24px; left: -28px; }
.va .stat-card.br { bottom: 28px; right: -28px; }
.va .stat-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1;
}
.va .stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Logo wall / experience */
.va .experience {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg-soft);
}
.va .experience-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.va .experience-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.va .experience-title {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  margin-top: 4px;
}
.va .logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.va .logo-chip {
  height: 44px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Savings band */
.va .savings {
  background: linear-gradient(180deg, var(--ink) 0%, #06121C 100%);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.va .savings::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 80% 0%, rgba(0, 174, 239, 0.22), transparent 70%);
  pointer-events: none;
}
.va .savings-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.va .savings h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.va .savings h2 .num {
  background: linear-gradient(135deg, #66D4F7 0%, var(--brand) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.va .savings p { color: rgba(255,255,255,0.65); font-size: 17px; margin: 0 0 32px; }
.va .savings-actions { display: inline-flex; gap: 12px; }
.va .btn-light {
  background: white; color: var(--ink); padding: 13px 22px; border-radius: 999px; border: none; font-size: 14px; font-weight: 600;
  transition: background 0.15s;
}
.va .btn-light:hover { background: var(--brand); color: white; }
.va .btn-ghost-dark {
  background: transparent; color: white; padding: 13px 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); font-size: 14px; font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.va .btn-ghost-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* Section header pattern */
.va .section { padding: 110px 0; }
.va .section-head { max-width: 720px; margin: 0 0 56px; }
.va .section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.va .section h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ink);
}
.va .section-lead {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 580px;
}

/* Why cards */
.va .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.va .why-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.va .why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.va .why-card .photo-placeholder {
  aspect-ratio: 16 / 11;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
}
.va .why-card-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid var(--line);
  background: white;
}
.va .why-card-body { padding: 28px 26px 32px; }
.va .why-card-num {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 12px;
  display: block;
}
.va .why-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.va .why-card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.55; }

/* Services */
.va .services { background: var(--bg-soft); }
.va .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.va .role {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.va .role:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.va .role-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(0, 174, 239, 0.12);
  color: var(--brand);
  display: grid; place-items: center;
}
.va .role h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.va .role p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.va .services-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.va .services-cta p { margin: 0; color: var(--ink); font-size: 16px; font-weight: 500; }
.va .services-cta p span { color: var(--muted); font-weight: 400; }

/* Benefits */
.va .benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.va .benefit {
  background: white;
  padding: 32px 24px;
  transition: background 0.2s;
}
.va .benefit:hover { background: var(--bg-soft); }
.va .benefit-num {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 18px;
}
.va .benefit-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,174,239,0.14), rgba(0,174,239,0.06));
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.va .benefit h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.3;
}
.va .benefit p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }

/* FAQ */
.va .faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.va .faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.va .faq-item {
  border-bottom: 1px solid var(--line);
}
.va .faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color 0.2s;
}
.va .faq-q:hover { color: var(--brand); }
.va .faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform 0.25s, background 0.2s, border-color 0.2s;
  color: var(--muted);
}
.va .faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.va .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.va .faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 60px 24px 0;
}

/* Final CTA */
.va .final {
  background: var(--bg-soft);
  padding: 110px 0;
}
.va .final-card {
  background: linear-gradient(135deg, var(--ink) 0%, #06121C 60%, var(--brand-ink) 100%);
  border-radius: 28px;
  padding: 84px 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.va .final-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(600px 300px at 50% 0%, rgba(0,174,239,0.25), transparent 60%);
  pointer-events: none;
}
.va .final-card h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
  position: relative;
}
.va .final-card p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 32px;
  max-width: 560px;
  position: relative;
}
.va .final-card .btn-light {
  position: relative;
  font-size: 15px;
  padding: 14px 26px;
}

/* Footer */
.va .footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
}
.va .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.va .footer h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 18px;
}
.va .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.va .footer ul a { font-size: 14px; transition: color 0.15s; }
.va .footer ul a:hover { color: var(--brand); }
.va .footer .brand-block { max-width: 280px; }
.va .footer .footer-logo-img { width: auto; height: 56px; display: block; margin-bottom: 6px; }
.va .footer .brand-block p { font-size: 14px; margin: 18px 0 0; }
.va .contact-block { font-size: 13.5px; line-height: 1.55; }
.va .contact-block strong { color: white; display: block; font-weight: 600; margin-bottom: 4px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.va .contact-block .group { margin-bottom: 18px; }
.va .footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ============================================================
   ===========  VARIATION B — "Structured Confidence" =========
   ============================================================ */

/* Nav */
/* Hero — dark with blue glow */
/* Hero stats strip */
/* Experience band */
/* Sections */
/* Why grid — staggered numbered cards */
/* Services — big asymmetric list */
/* Benefits — large grid w/ big numerals */
/* FAQ — two column with sticky head */
/* Final CTA */
/* Footer */
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .va .services-grid, .va .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .vb .services-grid { grid-template-columns: 1fr; }
  .vb .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .va .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .va .hero-visual { aspect-ratio: 4 / 3; max-width: 600px; }
  .va .stat-card.tl { left: 16px; top: 16px; }
  .va .stat-card.br { right: 16px; bottom: 16px; }
  .va .experience-inner { grid-template-columns: 1fr; gap: 24px; }
  .va .logo-wall { grid-template-columns: repeat(5, 1fr); }
  .va .faq-grid, .vb .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .vb .faq-side { position: static; }
  .vb .experience-card { grid-template-columns: 1fr; }
  .vb .experience-card .photo-placeholder { min-height: 220px; }
  .vb .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .vb .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 28px; }
}
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .va .nav-links, .vb .nav-links { display: none; }
  .va .why-grid, .vb .why-grid { grid-template-columns: 1fr; }
  .va .services-grid, .va .benefits-grid, .vb .benefits-grid { grid-template-columns: 1fr 1fr; }
  .va .footer-grid, .vb .footer-grid { grid-template-columns: 1fr 1fr; }
  .va .section, .vb .section { padding: 72px 0; }
  .va .final-card { padding: 56px 28px; }
  .vb .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .vb .experience-card .content { padding: 36px 28px; }

  /* Industries logo wall: 3 columns instead of 5 */
  .va .logo-wall { grid-template-columns: repeat(3, 1fr); }

  /* Services CTA: stack button below text */
  .va .services-cta { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Lead form: stack form below heading copy */
  .va .lead-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Lead form fields: single column on mobile */
  .va .lead-form { grid-template-columns: 1fr; }
}
