/* ============================================================
   NUKIT.CO.ZA — Design Tokens & Base Styles
   ============================================================ */

:root {
  /* Color — derived from brand logo */
  --navy: #081424;
  --navy-soft: #112538;
  --blue: #218BF1;
  --blue-dim: #1a6fc2;
  --blue-pale: #EAF3FD;
  --white: #FFFFFF;
  --bg: #F6F7F8;
  --panel: #EDEFF2;
  --line: #DCE0E5;
  --ink: #0F1B26;
  --ink-soft: #5B6470;
  --ink-faint: #8A9099;
  --ok: #1B7F3A;

  /* Type */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Scale */
  --container: 1180px;
  --radius: 6px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { color: var(--ink-soft); }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease), border-color 0.15s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(8,20,36,0.08);
}
.btn-primary:hover { background: var(--blue-dim); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(33,139,241,0.28); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-1px); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-block { width: 100%; justify-content: center; }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,247,248,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo img { height: 28px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s var(--ease);
}

@media (max-width: 860px) {
  .nav-links { 
    position: fixed; top: 65px; left: 0; right: 0; 
    background: var(--white); 
    flex-direction: column; 
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.25s var(--ease);
    box-shadow: 0 8px 24px rgba(8,20,36,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta .btn-secondary { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid img { height: 26px; margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.93rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--blue); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Section utilities ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }

.bg-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.65); }
.bg-panel { background: var(--panel); }
.bg-white { background: var(--white); }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
}

/* breadcrumb-style page header used on interior pages */
.page-hero {
  padding: 56px 0 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 620px; }

/* card */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* fade-up reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CTA band (used across all pages) ---------- */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -120px; left: 40%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(33,139,241,0.22), transparent 70%);
}
.cta-band-text { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p { color: rgba(255,255,255,0.6); margin: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }

@media (max-width: 760px) {
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-band-actions { flex-direction: column; width: 100%; }
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
  color: var(--white);
}
.wa-float svg {
  width: 22px; height: 22px; fill: var(--white); flex-shrink: 0;
}
.wa-label { line-height: 1; }
.wa-label span { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.85; }

/* ---------- NIT Solutions division banner ---------- */
.nit-banner {
  background: rgba(33,139,241,0.08);
  border-top: 1px solid rgba(33,139,241,0.2);
  padding: 18px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.nit-banner strong { color: var(--white); }
.nit-banner a { color: var(--blue); font-weight: 600; }

/* ---------- Packages bundle grid (home + pricing) ---------- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bundle-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.bundle-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.bundle-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.bundle-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 24px;
  background: var(--blue); color: var(--white);
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 4px 10px; border-radius: 4px;
}
.bundle-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.bundle-card .bundle-sub { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 20px; }
.bundle-card .bundle-price {
  font-family: var(--font-display); font-weight: 700; font-size: 2.1rem;
  color: var(--white); margin-bottom: 22px;
}
.bundle-card .bundle-price sup { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.bundle-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex-grow: 1; }
.bundle-card li { font-size: 0.88rem; color: rgba(255,255,255,0.7); display: flex; gap: 8px; align-items: flex-start; }
.bundle-card li::before { content: '✓'; color: #2ECC71; font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) { .bundle-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ---------- Full catalog grid ---------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.catalog-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.catalog-card-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.catalog-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.catalog-card-icon svg { width: 18px; height: 18px; stroke: var(--blue); }
.catalog-card h3 { font-size: 0.95rem; color: var(--navy); margin: 0; }
.catalog-card .catalog-sub { font-size: 0.75rem; color: var(--ink-faint); font-style: italic; }
.catalog-card table { width: 100%; border-collapse: collapse; }
.catalog-card table tr { border-bottom: 1px solid var(--panel); }
.catalog-card table tr:last-child { border-bottom: none; }
.catalog-card table td { padding: 6px 0; font-size: 0.82rem; }
.catalog-card table td:last-child { text-align: right; font-weight: 600; color: var(--navy); white-space: nowrap; }
@media (max-width: 900px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } }

/* ---------- Corporate portfolio tiers ---------- */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.corp-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.corp-card .corp-tier { font-family: var(--font-mono); font-size: 0.72rem; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.corp-card h3 { color: var(--white); font-size: 1.02rem; margin-bottom: 4px; }
.corp-card .corp-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.corp-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }
@media (max-width: 900px) { .corp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .corp-grid { grid-template-columns: 1fr; } }

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}
.stat-item { background: var(--white); padding: 28px; text-align: center; }
.stat-item .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.stat-item .stat-desc { font-size: 0.82rem; color: var(--ink-faint); margin-top: 4px; }
@media (max-width: 700px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   EDITORIAL UPGRADE — v3 Design System Extension
   Synthesised from Kyndryl (authority rhythm, credential depth),
   SysGuru (SA-specific proof, technical credibility),
   IT2U (scarcity, process honesty, single-page CTA)
   ============================================================ */

:root {
  /* Expanded type scale */
  --display: clamp(3rem, 6.5vw, 5.2rem);
  --h1-xl: clamp(2.6rem, 5vw, 4.2rem);
  --ink-ghost: rgba(15,27,38,0.06);
  /* New accent — warm amber for scarcity/urgency signals only */
  --amber: #E8A020;
  --amber-bg: rgba(232,160,32,0.10);
  /* Separator */
  --rule: 1px solid var(--line);
}

/* ---- Kyndryl-derived: editorial section labels ---- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 20px;
}
.section-label.on-dark { color: rgba(255,255,255,0.45); }
.section-label.accent { color: var(--blue); }

/* ---- Full-bleed editorial hero ---- */
.hero-v3 {
  background: var(--navy);
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  overflow: hidden;
}
/* Subtle grid texture — earns the dark background without decoration */
.hero-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,139,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,139,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Blue radial bloom — where the eye lands, not where it decorates */
.hero-v3::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at 70% 20%,
    rgba(33,139,241,0.13) 0%,
    rgba(33,139,241,0.04) 45%,
    transparent 70%);
  pointer-events: none;
}

.hero-v3-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  min-height: calc(100svh - 65px);
}
.hero-v3 .display-headline {
  font-family: var(--font-display);
  font-size: var(--display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-v3 .display-headline em {
  font-style: normal;
  color: var(--blue);
}
.hero-v3 .hero-deck {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-v3-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
/* Credential strip — borrowed from Kyndryl's inline proof pattern */
.cred-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  flex-wrap: wrap;
}
.cred-item {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cred-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.cred-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cred-item span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
}
/* scroll prompt */
.scroll-prompt {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0 28px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.scroll-line {
  width: 32px; height: 1px; background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .hero-v3-inner { padding: 60px 0 40px; min-height: auto; }
  .cred-strip { gap: 0; }
  .cred-item { padding-right: 24px; margin-right: 24px; }
}

/* ---- Outcomes narrative (replaces generic services grid) ---- */
.outcomes-list { display: flex; flex-direction: column; }
.outcome-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 36px 0;
  border-bottom: var(--rule);
  transition: background 0.2s;
}
.outcome-row:first-child { padding-top: 0; }
.outcome-row:last-child { border-bottom: none; }
.outcome-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  padding-top: 6px;
  letter-spacing: 0.04em;
}
.outcome-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.outcome-body p { font-size: 0.94rem; max-width: 580px; margin-bottom: 12px; }
.outcome-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.outcome-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--panel);
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.outcome-arrow {
  color: var(--blue);
  font-size: 1.3rem;
  padding-top: 4px;
  flex-shrink: 0;
  transition: transform 0.15s;
  text-decoration: none;
  font-weight: 300;
}
.outcome-row:hover .outcome-arrow { transform: translateX(4px); }
@media (max-width: 760px) {
  .outcome-row { grid-template-columns: 1fr; gap: 10px; }
  .outcome-num { display: none; }
}

/* ---- Featured case (SysGuru-derived: real work, real specifics) ---- */
.case-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.case-block::before {
  content: '';
  position: absolute; bottom: -80px; right: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(33,139,241,0.18), transparent 65%);
  pointer-events: none;
}
.case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.case-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.case-block h2 { color: var(--white); font-size: clamp(1.6rem, 2.5vw, 2.1rem); margin-bottom: 14px; }
.case-block .case-deck { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.case-details { position: relative; z-index: 1; }
.case-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.case-metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.case-metric .metric-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.case-metric .metric-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
@media (max-width: 900px) {
  .case-block { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
}

/* ---- Scarcity / urgency signal (IT2U-derived) ---- */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--amber-bg);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(232,160,32,0.5);
  animation: pulse-amber 2.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse-amber {
  0% { box-shadow: 0 0 0 0 rgba(232,160,32,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(232,160,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,160,32,0); }
}
.urgency-bar p { margin: 0; font-size: 0.88rem; color: var(--ink); }
.urgency-bar strong { color: var(--amber); }

/* ---- FAQ objection-handling (Kyndryl-derived) ---- */
.faq-v2 { display: flex; flex-direction: column; }
.faq-v2-item {
  border-bottom: var(--rule);
}
.faq-v2-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-v2-trigger h3 {
  font-size: 1.05rem;
  color: var(--navy);
  transition: color 0.15s;
}
.faq-v2-trigger:hover h3 { color: var(--blue); }
.faq-v2-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ink-faint);
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-v2-item.open .faq-v2-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-v2-body {
  display: none;
  padding: 0 0 24px;
}
.faq-v2-body p { font-size: 0.95rem; max-width: 680px; }
.faq-v2-item.open .faq-v2-body { display: block; }

/* ---- Inline contact section ---- */
.contact-inline {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-inline { grid-template-columns: 1fr; gap: 40px; } }
.contact-inline-left h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.contact-inline-left p { margin-bottom: 28px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: var(--rule);
  font-size: 0.92rem;
}
.contact-channel:last-child { border-bottom: var(--rule); }
.contact-channel-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 17px; height: 17px; stroke: var(--blue); }
.contact-channel a { color: var(--ink); font-weight: 600; }
.contact-channel a:hover { color: var(--blue); }
.contact-channel span { color: var(--ink-faint); font-size: 0.8rem; display: block; }

/* ---- Trust logos (Kyndryl-derived: partner proof row) ---- */
.partners-row {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.partner-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  padding: 10px 28px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  text-transform: uppercase;
}
.partner-badge:last-child { border-right: none; }

/* ---- Sector callout row (editorial proof of ICP specificity) ---- */
.sector-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.sector-pill {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  transition: border-color 0.15s, color 0.15s;
}
.sector-pill:hover { border-color: var(--blue); color: var(--navy); }
@media (max-width: 900px) { .sector-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sector-row { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FORMS — global (applies on all pages that include base.css)
   Moved from contact.css so the homepage embedded form works
   ============================================================ */

/* Honeypot: display:none is more reliable than position tricks
   inside flex/grid containers */
.hp-field {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -99999px;
  top: -99999px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(8, 20, 36, 0.08), 0 1px 4px rgba(8,20,36,0.04);
}

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-row label .opt { color: var(--ink-faint); font-weight: 400; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,139,241,0.12);
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B6470' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-row textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form-two-col { grid-template-columns: 1fr; } }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-top: 14px;
  line-height: 1.5;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.form-status.success { background: #E6F4EA; color: #1B7F3A; display: block; }
.form-status.error { background: #FDECEA; color: #C0392B; display: block; }

/* contact channel rows (used in both index.html and contact.html) */
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; }
.contact-info-item h3 { font-size: 0.95rem; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 0.92rem; }
