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

:root {
  /* Brand palette */
  --navy: #0A0F1E;
  --navy-mid: #0D1B3E;
  --navy-light: #131D3B;
  --electric: #2563EB;
  --electric-hover: #1D4ED8;
  --teal: #06B6D4;
  --olive: #4A7C1B;
  --olive-hover: #3D6A16;
  --olive-light: rgba(74, 124, 27, 0.1);
  --amber: #F59E0B;
  --amber-dark: #C77700;
  --purple: #8B5CF6;
  --success: #10B981;
  --error: #EF4444;
  --off-white: #F8F9FB;
  /* Text */
  --text-light: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dark: #1E293B;
  --text-mid: #475569;
  /* Type scale (7 stops — 1.25x ratio for decisive contrast) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 3rem;
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 22px;
  /* Spacing (8px grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 64px;
  /* Card system */
  --card-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.05), inset 0 0 0 0.5px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 2px 4px rgba(0,0,0,0.03), 0 20px 48px rgba(0,0,0,0.10), inset 0 0 0 0.5px rgba(0,0,0,0.06);
  --card-transition: box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* Fonts */
  --font-display: 'Space Grotesk', 'Space Grotesk Fallback', system-ui, sans-serif;
  --font-body: 'Inter', 'Inter Fallback', system-ui, sans-serif;
  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .reveal-ready .reveal, .reveal-ready .reveal-scale, .reveal-ready .reveal-left, .reveal-ready .reveal-right, .reveal-ready .reveal-blur { transition: opacity 0.3s ease !important; transform: none !important; filter: none !important; }
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 48px; } }
.section-pad { padding: 80px 0; }
@media (min-width: 768px) { .section-pad { padding: 120px 0; } }
.section-pad-lg { padding: 100px 0; }
@media (min-width: 768px) { .section-pad-lg { padding: 160px 0; } }
.section-pad-sm { padding: 56px 0; }
@media (min-width: 768px) { .section-pad-sm { padding: 80px 0; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== REVEAL ===== */
/* Visible by default — JS adds .reveal-ready to enable animation */
.reveal, .reveal-left, .reveal-right, .reveal-blur { opacity: 1; transform: none; }
.reveal-scale { opacity: 1; transform: none; }

/* Default: slide up */
.reveal-ready .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal-ready .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal-ready .reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-ready .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal-ready .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Blur-in (for stats/impact items) */
.reveal-ready .reveal-blur { opacity: 0; filter: blur(8px); transform: translateY(16px) scale(0.95); transition: opacity 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal-ready .reveal-blur.visible { opacity: 1; filter: blur(0px); transform: translateY(0) scale(1); }

/* Stagger delays — shared across all reveal types */
.reveal-ready .reveal-delay-1 { transition-delay: 0.08s; }
.reveal-ready .reveal-delay-2 { transition-delay: 0.16s; }
.reveal-ready .reveal-delay-3 { transition-delay: 0.24s; }
.reveal-ready .reveal-delay-4 { transition-delay: 0.32s; }
.reveal-ready .reveal-delay-5 { transition-delay: 0.40s; }
.reveal-ready .reveal-delay-6 { transition-delay: 0.48s; }

/* Scale entrance */
.reveal-ready .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); }
.reveal-ready .reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; z-index: 1001; }
.nav-logo img { height: 68px; width: auto; transition: filter 0.3s ease; }
.nav-logo.inverted img { filter: brightness(0) invert(1); }

/* Hamburger */
.menu-toggle {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 28px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, background 0.3s ease, width 0.3s ease;
}
.menu-toggle span:nth-child(1) { width: 28px; }
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle span:nth-child(3) { width: 24px; }
.menu-toggle:hover span { width: 28px; }
.menu-toggle.active span { background: white; width: 28px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; background: var(--navy); z-index: 999;
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease-out-expo);
  overflow-y: auto;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay .nav-main-link { opacity: 0; transform: translateY(16px); transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), color 0.3s ease; }
.nav-overlay.open .nav-main-link { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-main-link:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay.open .nav-main-link:nth-child(2) { transition-delay: 0.14s; }
.nav-overlay.open .nav-main-link:nth-child(3) { transition-delay: 0.20s; }
.nav-overlay.open .nav-main-link:nth-child(4) { transition-delay: 0.26s; }
.nav-overlay.open .nav-main-link:nth-child(5) { transition-delay: 0.32s; }
.nav-overlay.open .nav-main-link:nth-child(6) { transition-delay: 0.38s; }
.nav-overlay .nav-secondary { opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--ease-out-expo) 0.3s, transform 0.5s var(--ease-out-expo) 0.3s; }
.nav-overlay.open .nav-secondary { opacity: 1; transform: translateY(0); }
.nav-overlay .nav-sec-group { opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo); }
.nav-overlay.open .nav-sec-group { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-sec-group:nth-child(1) { transition-delay: 0.35s; }
.nav-overlay.open .nav-sec-group:nth-child(2) { transition-delay: 0.42s; }
.nav-overlay.open .nav-sec-group:nth-child(3) { transition-delay: 0.49s; }
.nav-overlay.open .nav-sec-group:nth-child(4) { transition-delay: 0.56s; }
.nav-overlay-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 140px 40px 60px; display: grid;
  grid-template-columns: 1fr; gap: 48px; align-content: start;
}
@media (min-width: 768px) {
  .nav-overlay-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; padding: 160px 60px 80px; }
}
.nav-main-links { display: flex; flex-direction: column; gap: 8px; }
.nav-main-link {
  display: block; text-decoration: none; color: rgba(255,255,255,0.5);
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.2;
  padding: 8px 0; position: relative;
  transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}
.nav-main-link:hover { color: white; transform: translateX(12px); }
.nav-main-link:hover::before {
  content: ''; position: absolute; left: -24px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 3px; background: var(--olive); border-radius: 2px;
}
.nav-secondary { display: flex; flex-direction: column; gap: 40px; padding-top: 12px; }
.nav-sec-group h4 {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}
.nav-sec-link {
  display: flex; align-items: center; text-decoration: none; color: rgba(255,255,255,0.7);
  font-size: var(--text-base); font-weight: 500; padding: 6px 0; transition: color 0.3s ease;
  min-height: 44px;
}
.nav-sec-link:hover { color: white; }
.nav-cta-block { margin-top: 24px; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--electric); color: white;
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  border: none; border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.nav-cta-btn:hover { background: var(--electric-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.35); }
.nav-contact-info { margin-top: auto; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.nav-contact-info p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.7; }
.nav-contact-info a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.nav-contact-info a:hover { color: white; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 100px;
  background: linear-gradient(160deg, #FFFFFF 0%, #F0F4FF 40%, #E8EEFF 70%, #F8F9FB 100%);
}
.hero-gridlines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.hero-content { position: relative; z-index: 2; }
.hero-super {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 24px;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.2s forwards;
}
.hero-super::before { content: ''; width: 32px; height: 2px; background: var(--olive); border-radius: 1px; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--text-dark); margin-bottom: 24px;
}
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(30px); animation: wordReveal 0.7s var(--ease-out-expo) forwards; }
.hero-title .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .word:nth-child(2) { animation-delay: 0.38s; }
.hero-title .word:nth-child(3) { animation-delay: 0.46s; }
.hero-title .word:nth-child(4) { animation-delay: 0.54s; }
.hero-title .word:nth-child(5) { animation-delay: 0.62s; }
.hero-title .word:nth-child(6) { animation-delay: 0.7s; }
.hero-title .word:nth-child(7) { animation-delay: 0.78s; }
.hero-title .accent { color: var(--olive); }
.hero-sub {
  font-size: var(--text-lg); line-height: 1.5; color: var(--text-mid); max-width: 520px; margin-bottom: 40px;
  opacity: 0; animation: fadeSlideUp 1s var(--ease-out-expo) 1.0s forwards;
}
@media (min-width: 768px) { .hero-sub { line-height: 1.7; } }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px;
  opacity: 0; animation: fadeSlideUp 1s var(--ease-out-expo) 1.2s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px;
  background: var(--electric); color: white; font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 600; border: none; border-radius: var(--radius-md);
  cursor: pointer; text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary:hover { background: var(--electric-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.35); }
.btn-primary:active { transform: scale(0.97); box-shadow: 0 2px 8px rgba(37,99,235,0.2); transition-duration: 0.1s; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px;
  background: transparent; color: var(--text-dark); font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 600; border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
.btn-ghost:hover { border-color: var(--olive); background: var(--olive-light); transform: translateY(-2px); }
.btn-ghost:active { transform: scale(0.97); transition-duration: 0.1s; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px;
  background: transparent; color: var(--olive); font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 600; border: 1.5px solid var(--olive);
  border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover { background: var(--olive); color: white; transform: translateY(-2px); border-color: var(--olive); }
.btn-secondary:active { transform: scale(0.97); transition-duration: 0.1s; }
.staffing .btn-secondary:hover { background: var(--teal); border-color: var(--teal); color: white; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 40px;
  padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.06);
  opacity: 0; animation: fadeSlideUp 1s var(--ease-out-expo) 1.5s forwards;
}
@media (max-width: 480px) { .hero-stats { gap: 24px; } }
.hero-stat-num { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--text-dark); letter-spacing: -0.03em; }
.hero-stat-label { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
@media (max-width: 1023px) {
  .hero-visual { max-width: 320px; margin: 0 auto; min-height: 280px; }
  .hero-illustration { width: 320px; height: 320px; }
}
.hero-illustration { width: 520px; height: 520px; }

/* Hero SVG animations */
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes heroSpinR { to { transform: rotate(-360deg); } }
@keyframes heroNodePop { 0% { opacity: 0; transform: scale(0); } 60% { opacity: 1; transform: scale(1.15); } 100% { opacity: 1; transform: scale(1); } }
@keyframes heroDash { to { stroke-dashoffset: -20; } }
@keyframes heroCardBob1 { 0%, 100% { transform: translate(42px, 118px) rotate(-2deg); } 50% { transform: translate(42px, 100px) rotate(1deg); } }
@keyframes heroCardBob2 { 0%, 100% { transform: translate(310px, 148px) rotate(2deg); } 50% { transform: translate(310px, 128px) rotate(-1deg); } }
@keyframes heroCardBob3 { 0%, 100% { transform: translate(148px, 318px) rotate(1deg); } 50% { transform: translate(148px, 300px) rotate(-2deg); } }
.hero-ring-1 { transform-origin: 210px 200px; animation: heroSpin 55s linear infinite; will-change: transform; }
.hero-ring-2 { transform-origin: 210px 200px; animation: heroSpinR 45s linear infinite; will-change: transform; }
.hero-ring-3 { transform-origin: 210px 200px; animation: heroSpin 70s linear infinite; will-change: transform; }
.hero-node { animation: heroNodePop 0.9s var(--ease-spring) both; }
.hero-node-1 { animation-delay: 0.4s; } .hero-node-2 { animation-delay: 0.6s; }
.hero-node-3 { animation-delay: 0.8s; } .hero-node-4 { animation-delay: 1.0s; } .hero-node-5 { animation-delay: 1.2s; }
.hero-conn { animation: heroDash 1.8s linear infinite; }
.hero-card-1 { animation: heroCardBob1 8s ease-in-out infinite; }
.hero-card-2 { animation: heroCardBob2 9s ease-in-out 0.5s infinite; }
.hero-card-3 { animation: heroCardBob3 8.5s ease-in-out 1s infinite; }
@keyframes heroHexSpin { to { transform: rotate(360deg); } }
@keyframes heroHexSpinR { to { transform: rotate(-360deg); } }
@keyframes heroArcSpin { to { transform: rotate(360deg); } }
@keyframes heroArcSpinR { to { transform: rotate(-360deg); } }
.hero-hex-outer { animation: heroHexSpin 25s linear infinite; }
.hero-hex-inner { animation: heroHexSpinR 20s linear infinite; }
.hero-arc-spin { animation: heroArcSpin 8s linear infinite; will-change: transform; }
.hero-arc-spin-r { animation: heroArcSpinR 10s linear infinite; will-change: transform; }
@keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { to { opacity: 1; transform: translateY(0); } }

/* ===== TRUSTED ===== */
.trusted {
  padding: 56px 0; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #F2F7E8 0%, #F8F9FB 40%, #EDF4FF 100%);
  border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--olive), var(--electric), var(--teal)) 1;
}
.trusted-header { text-align: center; margin-bottom: 36px; }
.trusted-label { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.trusted-sublabel { font-size: var(--text-sm); color: var(--text-muted); font-weight: 500; }
.trusted-sublabel span { color: var(--olive); font-weight: 700; }
.trusted-row-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 12px; margin-top: 24px; }
.trusted-row-label:first-of-type { margin-top: 0; }
.logo-row {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center;
}
.logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 36px; background: white; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; white-space: nowrap;
  transition: border-color 0.3s ease, box-shadow 0.3s ease; user-select: none;
}
.logo-item:hover { border-color: var(--olive); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.logo-item img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--electric); margin-bottom: var(--space-sm);
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--electric); border-radius: 1px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; color: var(--text-dark); max-width: 560px;
}
.section-title.light { color: white; }
.section-desc { font-size: var(--text-lg); line-height: 1.7; color: var(--text-mid); max-width: 560px; margin-top: 20px; }
.section-desc.light { color: var(--text-muted); }

/* ===== SOLUTIONS ===== */
.solutions { background: var(--off-white); }
.solutions-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 640px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(6, 1fr); } .solutions-grid > .sol-card { grid-column: span 2; } .solutions-grid > .sol-card:nth-last-child(2) { grid-column: 2 / span 2; } .solutions-grid > .sol-card:last-child { grid-column: 4 / span 2; } }
.sol-card {
  position: relative; padding: 0; background: #fff; border: none;
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.sol-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.sol-art {
  height: 164px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sol-art svg { width: 200px; height: 130px; transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1); }
.sol-card:hover .sol-art svg { transform: scale(1.06); }
.sol-body { padding: 28px; border-top: 0.5px solid rgba(0,0,0,0.06); }
.sol-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px;
}
.sol-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.018em; color: var(--text-dark); margin-bottom: var(--space-xs); line-height: 1.25; }
.sol-card p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); margin-bottom: var(--space-sm); }
.sol-cta {
  display: inline-flex; align-items: center; font-size: var(--text-sm); font-weight: 600;
  text-decoration: none; gap: 2px; transition: gap 0.2s ease;
}
.sol-card:hover .sol-cta { gap: 8px; }
.sol-cta .arrow { display: inline-block; transition: transform 0.2s ease; }
.sol-card:hover .arrow { transform: translateX(2px); }
/* Sol color themes */
.sol-card.c-blue .sol-label, .sol-card.c-blue .sol-cta { color: var(--electric); }
.sol-card.c-teal .sol-label, .sol-card.c-teal .sol-cta { color: var(--teal); }
.sol-card.c-olive .sol-label, .sol-card.c-olive .sol-cta { color: var(--olive); }
.sol-card.c-purple .sol-label, .sol-card.c-purple .sol-cta { color: var(--purple); }
.sol-card.c-amber .sol-label, .sol-card.c-amber .sol-cta { color: var(--amber-dark); }

/* ===== STAFFING ===== */
.staffing { background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; }
.staffing-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 640px) { .staffing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .staffing-grid { grid-template-columns: repeat(3, 1fr); } }
.staffing-card {
  position: relative; padding: 0; background: rgba(255,255,255,0.03); border: none;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.08), inset 0 0 0 0.5px rgba(255,255,255,0.08);
  transition: var(--card-transition);
}
.staffing-card:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.2), inset 0 0 0 0.5px rgba(255,255,255,0.12);
}
.staffing-art {
  height: 150px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.staffing-art svg { width: 130px; height: 95px; transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1); }
.staffing-card:hover .staffing-art svg { transform: scale(1.06); }
.staffing-body { padding: 28px; border-top: 0.5px solid rgba(255,255,255,0.06); }
.staffing-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.staffing-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: white; margin-bottom: var(--space-xs); letter-spacing: -0.018em; line-height: 1.25; }
.staffing-card p { font-size: var(--text-sm); line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: var(--space-sm); }
.staffing .section-tag::before { background: var(--teal); }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  position: relative; padding: 0; background: #fff; border: none;
  border-radius: var(--radius-lg); text-align: center; overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.product-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.product-art {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-art svg { width: 170px; height: 125px; transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1); }
.product-card:hover .product-art svg { transform: scale(1.06); }
.product-body { padding: 36px 28px; border-top: 0.5px solid rgba(0,0,0,0.06); }
.product-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text-dark); margin-bottom: var(--space-xs); letter-spacing: -0.018em; }
.product-card p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); margin-bottom: var(--space-sm); }
.product-tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: var(--text-xs); font-weight: 700;
  font-family: var(--font-display); letter-spacing: 0.02em;
}

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; padding: 0; background: #fff; border: none;
  border-radius: var(--radius-lg); overflow: hidden; cursor: default;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.service-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.service-art {
  height: 150px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-art svg { width: 130px; height: 95px; transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1); }
.service-card:hover .service-art svg { transform: scale(1.06); }
.service-body { padding: 28px; border-top: 0.5px solid rgba(0,0,0,0.06); }
.service-num { font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.service-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.018em; color: var(--text-dark); margin-bottom: var(--space-xs); line-height: 1.25; }
.service-card p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); }

/* ===== INDUSTRIES ===== */
.industries { background: var(--off-white); }
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
  text-align: center; padding: 0; background: #fff; border: none;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.industry-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.industry-icon {
  width: 100%; height: 100px; margin: 0; display: flex; align-items: center; justify-content: center;
}
.industry-icon svg { width: 32px; height: 32px; opacity: 0.85; }
.industry-body { padding: 0 20px 24px; border-top: 0.5px solid rgba(0,0,0,0.06); padding-top: 18px; }
.industry-card h3 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text-dark); margin-bottom: 6px; letter-spacing: -0.018em; }
.industry-card p { font-size: var(--text-xs); color: var(--text-mid); line-height: 1.6; }

/* ===== CASES ===== */
.cases { background: var(--off-white); overflow: hidden; }
.cases-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.cases-nav { display: flex; gap: 8px; flex-shrink: 0; }
.cases-nav-btn {
  width: 44px; height: 44px; border-radius: var(--radius-md); border: 1.5px solid rgba(0,0,0,0.12);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
.cases-nav-btn:hover { border-color: var(--olive); background: var(--olive-light); transform: translateY(-1px); }
.cases-nav-btn svg { width: 20px; height: 20px; color: var(--text-dark); }
.cases-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  max-width: 1280px; margin: 0 auto; padding: 0 24px 8px; touch-action: pan-x;
  mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
  scroll-snap-type: x mandatory;
}
@media (min-width: 768px) { .cases-scroll { padding: 0 48px 8px; } }
.cases-scroll::-webkit-scrollbar { display: none; }
.cases-track { display: flex; gap: 20px; width: max-content; }
.case-card {
  width: 340px; flex-shrink: 0; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: none; scroll-snap-align: start;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.case-card:hover { box-shadow: var(--card-shadow-hover); }
.case-thumb { height: 220px; position: relative; overflow: hidden; }
.case-thumb-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: white; }
.case-thumb-bg svg { width: 130px; height: 95px; color: white; opacity: 0.85; }
.case-body { padding: 28px; }
.case-type { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--olive); margin-bottom: var(--space-xs); }
.case-body h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; letter-spacing: -0.02em; color: var(--text-dark); margin-bottom: var(--space-xs); }
.case-body > p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); margin-bottom: 16px; }
.case-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.case-pill { padding: 5px 12px; background: rgba(74,124,27,0.06); color: var(--olive); font-size: var(--text-xs); font-weight: 600; border-radius: 10px; }
.case-metric { display: flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 600; color: var(--olive); }
.cases-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.cases-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15);
  border: none; padding: 0; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
}
.cases-dot.active { background: var(--electric); transform: scale(1.3); }

/* ===== TECH ===== */
.tech { background: var(--off-white); }
.tech-groups { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .tech-groups { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech-groups { grid-template-columns: repeat(3, 1fr); } }
.tech-group { background: #fff; border: none; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--card-shadow); transition: var(--card-transition); }
.tech-group:hover { box-shadow: var(--card-shadow-hover); }
.tech-group-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.tech-group-header .tg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tech-group-header h4 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text-dark); }
.tech-group-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pill {
  padding: 8px 16px; background: var(--off-white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm); font-size: var(--text-sm); font-weight: 600; color: var(--text-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.tech-pill:hover { border-color: var(--olive); }
.tech-pill.featured { background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.08)); border-color: rgba(37,99,235,0.2); color: var(--electric); font-weight: 700; }

/* ===== INSIGHTS ===== */
.insights { background: linear-gradient(160deg, #FAFBFC 0%, #FFF 50%, #F8F9FC 100%); }
.insights-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
.insight-card {
  background: #fff; border: none; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.insight-card:hover { box-shadow: var(--card-shadow-hover); }
.insight-thumb { height: 200px; display: flex; align-items: center; justify-content: center; }
.insight-thumb svg { width: 130px; height: 95px; }
.insight-body { padding: 28px; }
.insight-type { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-xs); }
.insight-body h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text-dark); margin-bottom: var(--space-xs); letter-spacing: -0.02em; }
.insight-body p { font-size: var(--text-sm); line-height: 1.7; color: var(--text-mid); margin-bottom: 16px; }
.insight-link { font-size: var(--text-sm); font-weight: 600; color: var(--electric); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.insight-link:hover { gap: 10px; }

/* ===== IMPACT BAND (replaces testimonials — full-width proof section) ===== */
.impact-band {
  padding: 80px 0; text-align: center;
  background: linear-gradient(160deg, #0A0F1E 0%, #0D1B3E 50%, #0E2352 100%);
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .impact-band { padding: 120px 0; } }
.impact-band::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.impact-headline {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  color: white; margin-bottom: 16px;
}
.impact-sub { font-size: var(--text-lg); color: var(--text-muted); max-width: 560px; margin: 0 auto 56px; line-height: 1.6; }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .impact-grid { gap: 32px; } }
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }
.impact-num {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #60A5FA 0%, #06B6D4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.impact-label { font-size: var(--text-sm); color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }

/* ===== CAREERS / JOBS ===== */
.careers {
  background: linear-gradient(135deg, #F2F7E8 0%, #EDF4FF 100%);
  position: relative; overflow: hidden;
}
.careers .section-header { text-align: center; margin-bottom: 48px; }
.careers .section-header .section-title { margin: 0 auto; }
.careers .section-header .section-desc { margin: 16px auto 0; text-align: center; }
.jobs-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jobs-grid { grid-template-columns: repeat(3, 1fr); } }
.job-card {
  background: #fff; border: none; border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.job-card:hover { box-shadow: var(--card-shadow-hover); }
.job-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
.job-dept {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em; width: fit-content;
}
.job-meta { display: flex; flex-direction: column; gap: 4px; }
.job-meta span { display: flex; align-items: center; gap: 6px; font-size: var(--text-sm); color: var(--text-mid); }
.job-meta svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--text-muted); }
.job-desc { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); }
.job-card .btn-primary { margin-top: auto; justify-content: center; padding: 12px 24px; font-size: var(--text-sm); }

/* Apply modal */
.apply-overlay {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  background: rgba(10,15,30,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 24px;
}
.apply-overlay.open { opacity: 1; pointer-events: auto; }
.apply-modal {
  background: white; border-radius: 20px; padding: 40px; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.96); transition: transform 0.4s var(--ease-out-expo);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.apply-overlay.open .apply-modal { transform: translateY(0) scale(1); }
.apply-modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); background: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.apply-modal-close:hover { background: var(--off-white); border-color: rgba(0,0,0,0.15); }
.apply-modal-close svg { width: 18px; height: 18px; color: var(--text-mid); }
.apply-modal h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px; padding-right: 40px;
}
.apply-modal .apply-subtitle { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 28px; }
.apply-form { display: flex; flex-direction: column; gap: 16px; }
.apply-field label {
  display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text-dark); margin-bottom: 6px;
}
.apply-field label .optional { font-weight: 400; color: var(--text-muted); }
.apply-field input:not([type="checkbox"]):not([type="hidden"]), .apply-field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px; font-family: var(--font-body); font-size: var(--text-base);
  color: var(--text-dark); outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}
.apply-field input:not([type="checkbox"]):not([type="hidden"])::placeholder, .apply-field textarea::placeholder { color: var(--text-muted); }
.apply-field input:not([type="checkbox"]):not([type="hidden"]):focus, .apply-field textarea:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.apply-field textarea { resize: vertical; min-height: 100px; }
.apply-field input[type="file"] {
  padding: 10px 16px; border-style: dashed; background: var(--off-white); cursor: pointer;
}
.apply-form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }
.apply-form-actions .btn-primary { padding: 12px 28px; }
.apply-cancel {
  padding: 12px 24px; background: none; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  color: var(--text-mid); cursor: pointer; transition: border-color 0.3s ease, background 0.3s ease;
}
.apply-cancel:hover { border-color: rgba(0,0,0,0.25); background: var(--off-white); }

/* Success toast */
.apply-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--success); color: white; padding: 14px 28px; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  box-shadow: 0 8px 32px rgba(16,185,129,0.3); z-index: 3000;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex; align-items: center; gap: 8px;
}
.apply-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ===== CTA BLOCK ===== */
.cta-block { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0E2352 100%); position: relative; overflow: hidden; padding: 80px 0; }
.cta-block::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cta-block::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cta-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .cta-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.cta-form input:not([type="checkbox"]):not([type="hidden"]), .cta-form textarea {
  width: 100%; padding: 20px 22px; background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  color: white; font-family: var(--font-body); font-size: var(--text-base); outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cta-form input:not([type="checkbox"]):not([type="hidden"]):focus, .cta-form textarea:focus { border-color: var(--olive); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(74,124,27,0.15); }
.cta-form input:not([type="checkbox"]):not([type="hidden"])::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.7); }
.cta-form textarea { resize: vertical; min-height: 120px; }
.cta-form .btn-primary { justify-content: center; width: auto; align-self: flex-end; }
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 8px; letter-spacing: 0.01em; }
.cta-block .section-tag::before { background: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--olive); }
.footer-contact-icon svg { width: 16px; height: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.04); padding: var(--space-xl) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.footer h4 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: white; margin-bottom: 20px; }
.footer p, .footer a { font-size: var(--text-sm); line-height: 1.7; color: #A1B2C8; }
.footer a { text-decoration: none; transition: color 0.3s ease; display: block; margin-bottom: 8px; }
.footer a.footer-social { display: flex; margin-bottom: 0; }
.footer a:hover { color: white; }
.footer-about-text { max-width: 300px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; margin-top: var(--space-sm); }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: var(--text-sm); cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.footer-social:hover { background: var(--teal); border-color: var(--teal); color: white; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: var(--text-xs); color: var(--text-muted); }

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; background: var(--electric); color: white;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  border: none; border-radius: 100px; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,99,235,0.4);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
}
.float-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 32px rgba(37,99,235,0.5); background: var(--electric-hover); }
.float-cta:active { transform: scale(0.97); transition-duration: 0.1s; }

/* ===== DESKTOP NAV ===== */
.desktop-nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
}
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 10px 14px;
  color: var(--text-dark); font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 600; text-decoration: none; border-radius: var(--radius-sm);
  transition: color 0.3s ease, background 0.3s ease; white-space: nowrap;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--electric); background: rgba(37,99,235,0.06); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; color: var(--text-muted); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .nav-link svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(6px) scale(0.98);
  transform-origin: top center;
  min-width: 240px; background: white; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px; padding: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease-out-expo); z-index: 1002;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.dropdown-menu a {
  display: block; padding: 10px 16px; color: var(--text-mid); font-size: var(--text-sm);
  font-weight: 500; text-decoration: none; border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease; margin-bottom: 0;
}
.dropdown-menu a:hover { color: var(--electric); background: rgba(37,99,235,0.06); }
.nav-cta-desktop {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; margin-left: 8px;
  background: var(--electric); color: white; font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 600; border-radius: 10px; text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.nav-cta-desktop:hover { background: var(--electric-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.35); }

/* ===== SUB-PAGE ===== */
#subPageView { display: none; }
#subPageView.active { display: block; }
.subpage-hero {
  padding: 160px 0 80px; position: relative;
  background: linear-gradient(160deg, #FFFFFF 0%, #F0F4FF 40%, #E8EEFF 70%, #F8F9FB 100%);
}
.subpage-hero .hero-gridlines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.subpage-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.subpage-breadcrumb a { color: var(--electric); text-decoration: none; font-weight: 500; }
.subpage-breadcrumb a:hover { text-decoration: underline; }
.subpage-breadcrumb span { color: var(--text-muted); }
.subpage-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px) {
  .subpage-hero.has-illus .subpage-hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.subpage-hero-visual { display: none; position: relative; justify-self: center; }
@media (min-width: 1024px) { .subpage-hero-visual { display: flex; align-items: center; justify-content: center; animation: subIllusFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; } }
.subpage-illus { width: 100%; max-width: 520px; height: auto; }
@keyframes subIllusFadeIn { from { opacity: 0; transform: scale(0.96) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.subpage-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text-dark); margin-bottom: 20px; max-width: 700px;
}
.subpage-hero-content > p { font-size: var(--text-lg); line-height: 1.7; color: var(--text-mid); max-width: 560px; margin-bottom: 36px; }
.subpage-hero > .container > p { font-size: var(--text-lg); line-height: 1.7; color: var(--text-mid); max-width: 560px; margin-bottom: 36px; }
.subpage-features { padding: 80px 0; background: var(--off-white); }
@media (min-width: 768px) { .subpage-features { padding: 100px 0; } }
.subpage-features .section-header { margin-bottom: 56px; }
.subpage-features-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 640px) { .subpage-features-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); } }
@media (min-width: 1024px) { .subpage-features-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); } }
.subpage-feature-card {
  position: relative; padding: 0; background: #fff; border: none;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.subpage-feature-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.subpage-feature-art {
  height: 150px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.subpage-feature-art svg { width: 130px; height: 95px; }
.subpage-feature-body { padding: 28px; border-top: 0.5px solid rgba(0,0,0,0.06); }
.subpage-feature-body h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-dark); margin-bottom: var(--space-xs); letter-spacing: -0.018em; line-height: 1.25; }
.subpage-feature-body p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); }
/* Feature card gradient themes + icon color - cycle via nth-child */
.subpage-feature-card:nth-child(6n+1) .subpage-feature-art { background: linear-gradient(160deg, #dbeeff 0%, #c5dff8 60%, #b8d4f5 100%); color: var(--electric); }
.subpage-feature-card:nth-child(6n+2) .subpage-feature-art { background: linear-gradient(160deg, #d8f3e3 0%, #c3ecda 60%, #b0e4cf 100%); color: var(--success); }
.subpage-feature-card:nth-child(6n+3) .subpage-feature-art { background: linear-gradient(160deg, #fff1d6 0%, #ffe8b8 60%, #fddfa0 100%); color: var(--amber-dark); }
.subpage-feature-card:nth-child(6n+4) .subpage-feature-art { background: linear-gradient(160deg, #ede9fe 0%, #e0d9fb 60%, #d4ccf8 100%); color: var(--purple); }
.subpage-feature-card:nth-child(6n+5) .subpage-feature-art { background: linear-gradient(160deg, #e0f2fe 0%, #cce8fd 60%, #b9ddfb 100%); color: var(--electric); }
.subpage-feature-card:nth-child(6n+6) .subpage-feature-art { background: linear-gradient(160deg, #fce7f3 0%, #f9d5e9 60%, #f6c3de 100%); color: #c2185b; }
.subpage-overview { padding: 80px 0; background: white; }
@media (min-width: 768px) { .subpage-overview { padding: 100px 0; } }
.subpage-overview-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 768px) { .subpage-overview-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.subpage-overview h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.subpage-overview p { font-size: var(--text-base); line-height: 1.7; color: var(--text-mid); margin-bottom: 16px; }
.subpage-check-list { list-style: none; padding: 0; margin: 0; }
.subpage-check-list li {
  padding: 10px 0 10px 32px; position: relative; font-size: var(--text-base);
  color: var(--text-mid); line-height: 1.6; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.subpage-check-list li:last-child { border-bottom: none; }

/* ===== BLOG ===== */
.blog-listing { padding: 80px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: #fff; border: none; border-radius: var(--radius-lg);
  padding: 36px; cursor: pointer; display: flex; flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); }
.blog-card-category {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em; width: fit-content;
  background: rgba(37,99,235,0.08); color: var(--electric); margin-bottom: 16px;
}
.blog-card.case-study .blog-card-category { background: rgba(74,124,27,0.08); color: var(--olive); }
.blog-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.blog-card > p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); flex: 1; }
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06);
}
.blog-card-date { font-size: var(--text-xs); color: var(--text-muted); }
.blog-card-link { font-size: var(--text-sm); font-weight: 600; color: var(--electric); }
.blog-article { padding: 60px 0 80px; background: white; }
.blog-article-content { max-width: 760px; margin: 0 auto; }
.blog-article-content p { font-size: var(--text-base); line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
.blog-article-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin: 36px 0 16px; }
.blog-article-content h4 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-dark); margin: 28px 0 12px; }
.blog-article-content strong { color: var(--text-dark); }
.blog-article-content ul, .blog-article-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-article-content li { font-size: var(--text-base); line-height: 1.75; color: var(--text-mid); margin-bottom: 8px; }
.blog-article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.blog-article-category {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em;
  background: rgba(37,99,235,0.08); color: var(--electric);
}
.blog-article-date { font-size: var(--text-sm); color: var(--text-muted); }
.blog-article-nav { max-width: 760px; margin: 48px auto 0; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08); }
.subpage-check-list li::before {
  content: ''; position: absolute; left: 0; top: 15px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--olive-light); border: 2px solid var(--olive);
}
.subpage-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.subpage-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--electric); letter-spacing: -0.03em; }
.subpage-stat-label { font-size: var(--text-xs); color: var(--text-muted); margin-top: 4px; }

/* Footer certifications */
.footer-certs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* Industries inline */
.industries-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.industry-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; font-size: var(--text-sm); font-weight: 600; color: var(--text-muted);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.industry-pill:hover { border-color: var(--olive); background: rgba(74,124,27,0.08); color: var(--text-light); }

/* ===== FOCUS INDICATORS ===== */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 2px;
}

/* ===== SKIP NAVIGATION ===== */
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--electric);
  color: white;
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  margin: 0;
}

/* ===== LOADING SPINNER ===== */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 360px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: white;
  font-size: var(--text-sm);
  font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 10px 18px;
  background: var(--olive);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.newsletter-form button:hover { background: var(--olive-hover); }

/* Consent checkbox alignment */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 14px;
}
.consent-label.dark {
  color: var(--text-mid);
}
.consent-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--electric);
  cursor: pointer;
}
.consent-label span { flex: 1; }

/* Card keyboard accessibility & active states */
.sol-card[data-nav],
.blog-card[data-nav],
.insight-card[data-nav],
.product-card[data-nav] { cursor: pointer; }
.sol-card:active, .product-card:active, .insight-card:active, .blog-card:active, .staffing-card:active, .case-card:active { transform: scale(0.98); transition-duration: 0.1s; }
.sol-card[data-nav]:focus-visible,
.blog-card[data-nav]:focus-visible,
.insight-card[data-nav]:focus-visible,
.product-card[data-nav]:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 2px;
  border-radius: 16px;
}

/* SPA page CTA banners */
.spa-cta-banner { padding: 80px 0; text-align: center; }
@media (min-width: 768px) { .spa-cta-banner { padding: 120px 0; } }
.spa-cta-banner.bg-light { background: var(--off-white); }
.spa-cta-banner.bg-dark { background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%); }
.spa-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.spa-cta-banner.bg-dark .spa-cta-heading { color: white; }
.spa-cta-desc {
  font-size: var(--text-base);
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.spa-legal-content {
  line-height: 1.8;
  color: var(--text-mid);
  font-size: var(--text-base);
}
.spa-legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.spa-legal-content p { margin-bottom: 24px; }

/* C1: Dark CTA banner text fix */
.spa-cta-banner.bg-dark .spa-cta-desc { color: var(--text-muted); }

/* M1: Subpage CTA box */
.subpage-cta-box {
  margin-top: 40px; padding: 32px;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(6,182,212,0.04));
  border-radius: 16px; border: 1px solid rgba(37,99,235,0.1);
}
.subpage-cta-box h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.subpage-cta-box p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-mid); margin-bottom: 16px; }
.subpage-cta-box .btn-primary { font-size: var(--text-sm); padding: 12px 24px; }

/* Staffing card learn-more link */
.staffing-link { color: var(--electric); font-size: var(--text-sm); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 2px; transition: gap 0.2s ease; }
.staffing-card:hover .staffing-link { gap: 6px; }

/* Section tag teal variant */
.section-tag.teal { color: var(--teal); }
.section-tag.teal::before { background: var(--teal); }

/* Centered section header */
.section-header-center { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header-center .section-tag { justify-content: center; }
.section-header-center .section-title { max-width: none; margin: 0 auto; }
.section-header-center .section-desc { margin: 16px auto 0; text-align: center; }

/* Section header flush (no bottom margin) */
.section-header.flush { margin-bottom: 0; }

/* Legal page container */
.legal-container { max-width: 800px; }

/* Breadcrumb current */
.breadcrumb-current { color: var(--text-dark); font-weight: 600; }

/* ===== GRADIENT UTILITIES ===== */
.gradient-blue { background: linear-gradient(160deg, #dbeeff 0%, #c5dff8 60%, #b8d4f5 100%); }
.gradient-teal { background: linear-gradient(160deg, #ccfbf1 0%, #b2f5ea 60%, #99f0e0 100%); }
.gradient-olive { background: linear-gradient(160deg, #ecfccb 0%, #d9f99d 60%, #c6f06c 100%); }
.gradient-purple { background: linear-gradient(160deg, #ede9fe 0%, #e0d9fb 60%, #d4ccf8 100%); }
.gradient-amber { background: linear-gradient(160deg, #fff1d6 0%, #ffe8b8 60%, #fddfa0 100%); }
.gradient-electric { background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 60%, #a5c8fc 100%); }

/* Product tag color variants */
.product-tag.tag-olive { background: rgba(74,124,27,0.08); color: var(--olive); }
.product-tag.tag-teal { background: rgba(6,182,212,0.08); color: var(--teal); }
.product-tag.tag-electric { background: rgba(37,99,235,0.06); color: var(--electric); }

/* Author avatar variant */
.author-avatar.avatar-olive { background: linear-gradient(135deg, var(--olive), #8AB83A); }

/* ===== FORM STATE CLASSES ===== */
.btn--loading { background: var(--electric-hover) !important; }
.btn--success { background: var(--success) !important; }
.btn--error { background: var(--error) !important; }
.apply-toast.toast-success { background: var(--success); }
.apply-toast.toast-error { background: var(--error); }

/* ===== SPA PAGE TRANSITION ===== */
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(20px) scale(0.99); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pageFadeOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-12px); } }
#homeView { transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo); }
#homeView.fading { opacity: 0; transform: translateY(-12px); }
#subPageView.active { animation: pageFadeIn 0.55s var(--ease-out-expo) both; }
#subPageView.fading { animation: pageFadeOut 0.3s var(--ease-out-expo) forwards; }

/* ===== NAV ACTIVE STATE ===== */
.nav-link.active { color: var(--electric); }
.nav-link.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--electric); border-radius: 1px; }

/* ===== EXTRACTED INLINE STYLES ===== */
.section-title.narrow { max-width: 500px; }
.footer-logo { margin-bottom: var(--space-sm); display: inline-flex; }
.footer-logo img { height: 56px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: var(--text-xs); color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-legal-links a:hover { color: white; }
.link-muted { color: var(--text-muted); text-decoration: none; }
.link-accent, .link-policy { color: var(--electric); text-decoration: underline; text-underline-offset: 2px; }
.link-accent:hover, .link-policy:hover { color: var(--electric-hover); }
.link-teal { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.link-teal:hover { color: #22D3EE; }
.consent-label.compact { margin-top: var(--space-xs); font-size: 0.72rem; max-width: 360px; }
.footer-certs img { height: 88px; width: auto; object-fit: contain; border-radius: 6px; }
.cta-contact-block { margin-top: 32px; }
.cta-contact-block a, .cta-contact-block span { font-size: var(--text-sm); line-height: 1.6; }
.nav-contact-address { margin-top: 4px; }
.icon-olive { color: var(--olive); }

/* ===== CTA HEADING CRESCENDO ===== */
.cta-block .section-title { font-size: clamp(2.6rem, 5.5vw, 4rem); }


/* ===== CUSTOM CHECKBOXES ===== */
.consent-checkbox { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px; background: rgba(255,255,255,0.06); cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; position: relative; }
.consent-checkbox:checked { background: var(--electric); border-color: var(--electric); }
.consent-checkbox:checked::after { content: ''; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.consent-checkbox:focus-visible { box-shadow: 0 0 0 3px rgba(37,99,235,0.3); }
.consent-label.dark .consent-checkbox { border-color: rgba(0,0,0,0.2); background: white; }
.consent-label.dark .consent-checkbox:checked { background: var(--electric); border-color: var(--electric); }

/* ===== CASES FRACTION COUNTER ===== */
.cases-counter { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; color: var(--text-muted); text-align: center; margin-top: 24px; letter-spacing: 0.05em; }
.cases-counter .current { color: var(--text-dark); font-size: var(--text-base); }


.subpage-illus {
  filter: drop-shadow(0 8px 24px rgba(10,15,30,0.08));
}

/* ===== STATS BAND (full-width climax) ===== */
.stats-band {
  padding: 80px 0;
  background: linear-gradient(160deg, #0A0F1E 0%, #0D1B3E 50%, #0E2352 100%);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.stats-band-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center;
}
@media (max-width: 640px) { .stats-band-grid { grid-template-columns: 1fr; gap: 24px; } }
.stats-band-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #60A5FA 0%, #06B6D4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-band-label {
  font-size: var(--text-sm); color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500;
}

/* ===== SUBPAGE CTA (full-width crescendo) ===== */
.subpage-cta-section {
  padding: 100px 0; text-align: center;
  background: linear-gradient(160deg, #F0F4FF 0%, #E8EEFF 40%, #DBEAFE 100%);
  position: relative;
}
@media (min-width: 768px) { .subpage-cta-section { padding: 120px 0; } }
.subpage-cta-section h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 16px;
}
.subpage-cta-section p {
  font-size: var(--text-lg); color: var(--text-mid); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.6;
}
.subpage-cta-section .btn-primary {
  padding: 18px 40px; font-size: var(--text-lg);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 0; border: none; margin: 0; display: none;
}

/* ===== PRODUCT CARD DIFFERENTIATION ===== */
.product-card { border: 1px solid rgba(0,0,0,0.04); }
.product-card:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 24px 56px rgba(37,99,235,0.12); }
.product-card h3 { font-size: var(--text-2xl); }

/* ===== SECTION BACKGROUND RHYTHM ===== */
.products { background: white; }

/* ===== FLOATING CTA — hide when subpage CTAs visible ===== */
.float-cta.hide { opacity: 0 !important; pointer-events: none !important; }


/* ===== FONT FALLBACK ===== */
@font-face {
  font-family: 'Space Grotesk Fallback';
  src: local('Arial');
  size-adjust: 105%; ascent-override: 95%; descent-override: 22%; line-gap-override: 0%;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 100%; ascent-override: 90%; descent-override: 22%; line-gap-override: 0%;
}
