/* ============================================================
   YASHVI GLOBAL · Site CSS
   Brand: Navy #0a2540 · Crimson #c8102e · Teal #0e8e85
   Type: Inter Tight (display) + Inter (body + labels)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* brand */
  --navy: #0a2540;
  --navy-2: #0e2e4d;
  --navy-3: #143557;
  --crimson: #c8102e;
  --crimson-2: #a30b25;
  --teal: #0e8e85;
  --teal-2: #0a6f68;

  /* neutrals (warm-cool) */
  --ink: #0b1a2e;
  --ink-2: #2b3a51;
  --ink-3: #5a677a;
  --ink-4: #8a93a3;
  --line: #e6e9ef;
  --line-2: #eef1f5;
  --bg: #fbfbf9;       /* warm off-white */
  --bg-2: #f4f5f2;
  --paper: #ffffff;

  /* utilities */
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 1px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 6px 24px -8px rgba(10, 37, 64, 0.18), 0 2px 6px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(10, 37, 64, 0.28);

  --display: 'Inter Tight', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --mono: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: 32px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── TYPE ─────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(14, 142, 133, 0.14);
}
.eyebrow.eyebrow-crimson { color: var(--crimson); }
.eyebrow.eyebrow-crimson::before { background: var(--crimson); box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12); }
.eyebrow.on-dark { color: #5fdbd2; }
.eyebrow.on-dark::before { background: #5fdbd2; box-shadow: 0 0 0 4px rgba(95, 219, 210, 0.18); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  font-feature-settings: 'ss01', 'cv11';
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
}
h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 700;
}
h3 {
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.018em;
  font-weight: 600;
}
h4 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.h-italic, h1 em, h2 em, .h-serif {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.028em;
}

body {
  letter-spacing: -0.006em;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
p { letter-spacing: -0.006em; }

p { color: var(--ink-2); }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); line-height: 1.6; max-width: 60ch; text-wrap: pretty; }
.muted { color: var(--ink-3); }
.tnum { font-variant-numeric: tabular-nums; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(200, 16, 46, .55);
}
.btn-primary:hover { background: var(--crimson-2); transform: translateY(-1px); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink-2); background: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--crimson); }

.btn-on-dark { border-color: rgba(255,255,255,.22); color: #fff; }
.btn-on-dark:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 249, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links li.is-active > a { color: var(--ink); }
.nav-links li.is-active > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}
.nav-links .has-menu > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -1px);
  margin-left: 4px;
  opacity: .55;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 11px 18px; font-size: 14px; }

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 14px;
  min-width: 280px;
  display: none;
  z-index: 60;
}
.nav-links .has-menu:hover .nav-menu { display: grid; gap: 2px; }
.nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  display: block;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-menu a:hover { background: var(--bg-2); color: var(--ink); }
.nav-menu .nm-title { font-size: 12px; font-family: var(--mono); color: var(--ink-3); padding: 6px 12px 4px; letter-spacing: 0; font-weight: 500; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .accent-red { color: var(--crimson); font-weight: 700; }
.hero h1 .accent-teal { color: var(--teal); font-weight: 700; }
.hero .lead { margin-top: 22px; font-size: 19px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-meta .hm-num { font-family: var(--display); font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.hero-meta .hm-label { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

/* hero visual: stylized dashboard card */
.hero-vis {
  position: relative;
  aspect-ratio: 1.05 / 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 110% -10%, rgba(14, 142, 133, 0.08), transparent 60%),
    radial-gradient(600px 300px at -10% 110%, rgba(200, 16, 46, 0.06), transparent 60%);
  pointer-events: none;
}

/* ── LOGO STRIP ───────────────────────────────────────────── */
.logo-strip {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.logo-strip .ls-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 500;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: center;
}
.logo-cell {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
  border-right: 1px solid var(--line-2);
  opacity: .85;
}
.logo-cell:last-child { border-right: 0; }

/* ── SECTION HEAD ─────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 { margin-top: 14px; }
.section-head .sh-right { padding-bottom: 6px; }

/* ── SERVICE CARDS ────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 280px;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cfd5dd;
}
.svc-card .svc-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-card .svc-num::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-4);
  display: inline-block;
}
.svc-card h3 { font-size: 22px; }
.svc-card p { font-size: 14.5px; color: var(--ink-3); }
.svc-card .svc-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card .svc-link .arr { transition: transform .2s; }
.svc-card:hover .svc-link .arr { transform: translateX(3px); }
.svc-card.feature {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.svc-card.feature h3, .svc-card.feature .svc-num { color: #fff; }
.svc-card.feature p { color: #b6c4d3; }
.svc-card.feature .svc-link { color: #ff7a8a; }
.svc-card.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(420px 220px at 100% 0%, rgba(200,16,46,.25), transparent 60%);
  pointer-events: none;
}

/* ── STATS BAND ───────────────────────────────────────────── */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 480px at 0% 0%, rgba(14,142,133,.18), transparent 60%),
              radial-gradient(900px 480px at 100% 100%, rgba(200,16,46,.16), transparent 60%);
}
.stats-band .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}
.stat {
  padding: 12px 24px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat .stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat .stat-num .pct { color: var(--teal); }
.stat .stat-num .plus { color: green; }
.stat .stat-label {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  max-width: 180px;
}

/* ── METHODOLOGY ──────────────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.method-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.method-step .ms-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.method-step .ms-num::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-4);
  display: inline-block;
}
.method-step h3 { font-size: 22px; }
.method-step p { font-size: 14.5px; color: var(--ink-3); }
.method-step::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.method-step.active::before { background: var(--teal); border-color: var(--teal); }

/* ── CASE STUDIES ─────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-img {
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.case-img .ph-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}
.case-card .case-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card .case-sector {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--teal);
  font-weight: 500;
}
.case-card h3 { font-size: 20px; }
.case-card .case-result {
  margin-top: auto;
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.case-card .case-result .cr { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: green; }
.case-card .case-result .cl { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* striped placeholder for img cells */
.stripe-bg {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(10,37,64,.04) 0,
    rgba(10,37,64,.04) 1px,
    transparent 1px,
    transparent 12px
  );
}

/* ── PROOF / TESTIMONIAL ──────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: stretch;
}
.proof-quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.proof-quote .pq-mark {
  font-family: var(--display);
  font-size: 80px;
  line-height: .8;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: -28px;
}
.proof-quote blockquote {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.proof-quote .pq-cite { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.proof-quote .pq-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink-2);
}
.proof-quote .pq-name { font-weight: 600; font-size: 15px; }
.proof-quote .pq-title { font-size: 13px; color: var(--ink-3); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 90% 10%, rgba(200,16,46,.22), transparent 60%),
    radial-gradient(700px 360px at 10% 90%, rgba(14,142,133,.18), transparent 60%);
}
.cta-band .container { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(34px, 3.8vw, 52px); }
.cta-band p { color: rgba(255,255,255,.78); margin-top: 16px; font-size: 18px; }
.cta-band .cta-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cta-band .cta-side {
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-band .cs-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cta-band .cs-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.cta-band .cs-text { font-size: 15px; color: #fff; }
.cta-band .cs-text small { display: block; color: rgba(255,255,255,.6); font-size: 13px; margin-top: 2px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #aab4c2;
  padding: 80px 0 32px;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h5 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 14.5px; color: #aab4c2; }
.site-footer ul a:hover { color: #fff; }
.site-footer .f-brand-logo {     height: 50px; margin-bottom: 18px; background: rgb(204 212 223); padding: 8px; border-radius: 5px;}
.site-footer .f-brand-desc { font-size: 14.5px; color: #aab4c2; max-width: 36ch; line-height: 1.6; }
.site-footer .f-contact { margin-top: 18px; font-size: 14px; color: #c2cad6; line-height: 1.7; }
.site-footer .f-sister {
  margin-top: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #c2cad6;
}
.site-footer .f-sister strong { color: #fff; }
.site-footer .f-sister p{  color: #aab4c2;}
.site-footer .footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6b7889;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .footer-bottom a { color: #aab4c2; margin-left: 18px; }
.site-footer .footer-bottom a:hover { color: #fff; }

/* ── PAGE HERO (interior) ─────────────────────────────────── */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero .crumb {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-3);
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 22px;
}
.page-hero .crumb a { color: var(--ink-3); }
.page-hero .crumb .sep { color: var(--ink-4); }
.page-hero .crumb a:hover { color: var(--ink); }
.page-hero h1 { font-size: clamp(36px, 4vw, 56px); }
.page-hero .lead { margin-top: 18px; }

/* ── SHARED COMPONENTS ────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--teal);
  background: rgba(14, 142, 133, 0.08);
  border: 1px solid rgba(14, 142, 133, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.kbd {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink-2);
}

/* small label. Replaces all-caps mono labels */
.small-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.small-label.with-rule::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-4);
  display: inline-block;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* feature list w/ icons */
.feat-list { display: grid; gap: 14px; }
.feat-row { display: flex; gap: 14px; align-items: flex-start; }
.feat-row .feat-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(14,142,133,.1);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-row p { color: var(--ink-2); font-size: 15.5px; }
.feat-row strong { color: var(--ink); font-weight: 600; }

/* form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--ink-3); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* hero visual internals */
.hv-head { display:flex; align-items:center; justify-content:space-between; }
.hv-tabs { display:flex; gap:6px; background:var(--bg-2); border-radius:8px; padding:4px; }
.hv-tab { font-family:var(--mono); font-size:12px; padding:6px 10px; border-radius:6px; color:var(--ink-3); }
.hv-tab.active { background:#fff; color:var(--ink); box-shadow:var(--shadow-sm); }
.hv-badge { font-family:var(--mono); font-size:12px; letter-spacing:0; color:var(--teal); display:inline-flex; align-items:center; gap:6px; font-weight:500; }
.hv-badge::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(14,142,133,.18); }
.hv-row { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.hv-label { font-family:var(--mono); font-size:12px; color:var(--ink-3); letter-spacing:0; }
.hv-num { font-family:var(--display); font-size:42px; font-weight:700; letter-spacing:-.03em; color:var(--ink); margin-top:4px; }
.hv-spark { width:50%; height:56px; }
.hv-divider { height:1px; background:var(--line); margin:18px 0; }
.hv-funnel { display:flex; flex-direction:column; gap:12px; }
.hv-stage { display:grid; grid-template-columns:1fr 1.4fr auto; align-items:center; gap:12px; }
.hv-stage-l { font-size:13px; color:var(--ink-2); }
.hv-stage-r { font-family:var(--mono); font-size:13px; color:var(--ink); font-weight:500; }
.hv-bar { height:8px; background:var(--bg-2); border-radius:4px; overflow:hidden; }
.hv-bar > span { display:block; height:100%; background:#bcd0e0; border-radius:4px; }
.hv-foot { margin-top:18px; }
.hv-pill { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--ink-2); background:rgba(14,142,133,.08); border:1px solid rgba(14,142,133,.18); padding:8px 12px; border-radius:999px; }
.hv-dot { width:6px; height:6px; border-radius:50%; background:var(--teal); }

/* industries grid */
.ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line); border-radius:14px; overflow:hidden; background:var(--paper); }
.ind-cell { padding:28px 24px; border-right:1px solid var(--line-2); border-bottom:1px solid var(--line-2); display:flex; flex-direction:column; gap:12px; min-height:140px; transition:background .2s ease; }
.ind-cell:hover { background:var(--bg-2); }
.ind-cell:nth-child(4n) { border-right:0; }
.ind-cell:nth-last-child(-n+4) { border-bottom:0; }
.ind-num { font-family:var(--mono); font-size:12px; color:var(--ink-3); letter-spacing:0; font-weight:500; }
.ind-name { font-family:var(--display); font-weight:700; font-size:22px; letter-spacing:-.02em; color:var(--ink); margin-top:auto; }

/* cta main */
.cta-main { display:flex; flex-direction:column; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-vis { aspect-ratio: 1.4 / 1; max-width: 640px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .svc-grid, .cases-grid, .method-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .cta-side { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 32px; }
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .logo-row { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .logo-cell:nth-child(4n) { border-right: 0; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .ind-cell:nth-child(2n) { border-right: 0; }
  .ind-cell:nth-child(4n) { border-right: 1px solid var(--line-2); }
  .ind-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--line-2); }
  .ind-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 700px) {
  :root { --gutter: 20px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .svc-grid, .cases-grid, .method-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 24px; }
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
}
