/* ===== NUBEVEST DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors - derived from Nubevest logo */
  --midnight: #0a1628;
  --navy: #0f1d33;
  --navy-light: #162541;
  --blue: #4285F4;
  --blue-hover: #3367D6;
  --blue-light: #5A9CF5;
  --cyan: #34A853;
  --cyan-soft: rgba(52, 168, 83, 0.15);
  --violet: #EA4335;
  --violet-soft: rgba(234, 67, 53, 0.12);
  --nv-red: #EA4335;
  --nv-green: #34A853;
  --nv-yellow: #FBBC05;
  --nv-blue: #4285F4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --green: #34A853;
  --red: #EA4335;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Misc */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(66,133,244,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --header-height: 90px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-xl); }
.section { padding: var(--space-5xl) 0; }
.section--dark { background: var(--midnight); color: var(--gray-200); }
.section--navy { background: var(--navy); color: var(--gray-200); }
.section--light {
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}
.section--light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,0.08), transparent);
  pointer-events: none;
}
.section--light > * { position: relative; z-index: 1; }
.section--gradient {
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(96,165,250,0.14), transparent 60%),
    radial-gradient(ellipse 55% 40% at 80% 90%, rgba(251,191,36,0.10), transparent 60%),
    linear-gradient(160deg, var(--midnight) 0%, var(--navy) 45%, #0f1d3d 100%);
  color: var(--gray-200);
  position: relative;
  overflow: hidden;
}
.section--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,160,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}
.section--gradient > * { position: relative; z-index: 1; }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--nv-blue), var(--nv-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--navy h1, .section--navy h2, .section--navy h3,
.section--gradient h1, .section--gradient h2, .section--gradient h3 {
  color: var(--white);
}
h1 { font-size: var(--fs-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-md);
}
.section--dark .kicker, .section--gradient .kicker { color: var(--nv-yellow); }
.lead { font-size: var(--fs-lg); color: var(--gray-600); line-height: 1.8; max-width: 680px; }
.section--dark .lead, .section--gradient .lead { color: var(--gray-300); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--nv-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}
.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(66,133,244,0.4);
}
.btn--secondary {
  background: transparent;
  color: var(--nv-blue);
  border: 1.5px solid rgba(66,133,244,0.3);
}
.btn--secondary:hover {
  border-color: var(--nv-blue);
  background: rgba(66,133,244,0.05);
  transform: translateY(-2px);
}
.section--dark .btn--secondary, .section--gradient .btn--secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.section--dark .btn--secondary:hover, .section--gradient .btn--secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.btn--white {
  background: var(--white);
  color: var(--midnight);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--sm { padding: 0.625rem 1.5rem; font-size: var(--fs-xs); }
.btn--arrow::after { content: ' \2192'; opacity: 1; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.microcopy { font-size: var(--fs-sm); color: var(--gray-500); margin-top: var(--space-sm); }
.section--dark .microcopy { color: var(--gray-400); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: linear-gradient(180deg, rgba(8,12,36,0.72) 0%, rgba(8,12,36,0.35) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}
.header.scrolled {
  background: rgba(8,12,36,0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  border-bottom-color: rgba(255,255,255,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.header__logo:hover { transform: translateY(-1px); }
.header__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}

.header__nav { display: flex; align-items: center; gap: var(--space-2xl); }
.header__nav-list { display: flex; align-items: center; gap: 6px; }
.header__nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-block;
}
.header__nav-link:hover,
.header__nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.header__nav-link.active {
  background: rgba(59,130,246,0.14);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.25);
}
.header__nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
}
.header__nav-link:hover::after {
  width: 24px;
  left: calc(50% - 12px);
}
.header__cta {
  margin-left: var(--space-md);
  box-shadow: 0 8px 22px rgba(59,130,246,0.35);
}

/* Mega Menu */
.has-mega { position: relative; }
/* Invisible hover bridge — keeps the mega menu open when the mouse
   moves across the gap between the nav link and the panel */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(var(--space-md) + 12px);
  z-index: 10;
}
.mega-menu {
  position: absolute;
  top: calc(100% + var(--space-md));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 680px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Slower on close (0.25s delay), instant on open */
  transition: opacity 0.2s ease, visibility 0s 0.25s, transform 0.2s ease;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, visibility 0s 0s, transform 0.2s ease;
}
.mega-menu__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--gray-800);
}
.mega-menu__item:hover { background: var(--gray-50); }
.mega-menu__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  background: var(--gray-100);
}
.mega-menu__label { font-weight: 600; font-size: var(--fs-sm); color: var(--gray-900); }
.mega-menu__desc { font-size: var(--fs-xs); color: var(--gray-500); margin-top: 2px; }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 999;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition-slow);
}
.mobile-menu.active { opacity: 1; transform: translateX(0); }
.mobile-menu__link {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--white);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu__link:hover { color: var(--cyan); padding-left: var(--space-md); }
.mobile-menu__sub {
  padding-left: var(--space-xl);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu__sub.open { max-height: 600px; }
.mobile-menu__sub a {
  display: block;
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--gray-400);
  padding: var(--space-sm) 0;
}
.mobile-menu__sub a:hover { color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 90% 60% at 15% 30%, rgba(66,133,244,0.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 70%, rgba(234,67,53,0.14), transparent 60%),
    linear-gradient(160deg, var(--midnight) 0%, var(--navy) 55%, #0c1352 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero--sm { min-height: auto; padding: calc(var(--header-height) + var(--space-5xl)) 0 var(--space-5xl); }
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,160,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 15%, transparent 75%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 20s ease-in-out infinite;
}
.hero__orb--1 { width: 560px; height: 560px; background: rgba(66,133,244,0.28); top: -120px; right: -80px; }
.hero__orb--2 { width: 420px; height: 420px; background: rgba(234,67,53,0.18); bottom: -80px; left: -60px; animation-delay: -7s; }
.hero__orb--3 { width: 320px; height: 320px; background: rgba(52,168,83,0.14); top: 45%; left: 55%; animation-delay: -14s; }
.hero__glow {
  position: absolute;
  top: 30%; right: 8%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(96,165,250,0.22) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-rows: auto auto;
  gap: var(--space-2xl) var(--space-3xl);
  align-items: center;
}
.hero__container > .hero__content { grid-column: 1; grid-row: 1; }
.hero__container > .hero__visual-new { grid-column: 2; grid-row: 1; }
.hero__container > .trust-strip {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: var(--space-xl);
}
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__content .lead { color: var(--gray-300); margin-bottom: var(--space-2xl); max-width: 560px; }

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: var(--space-xl);
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18), 0 0 12px rgba(74,222,128,0.7);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.18), 0 0 12px rgba(74,222,128,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.08), 0 0 18px rgba(74,222,128,0.9); }
}

/* Title */
.hero__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: clamp(2.2rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.hero__title-gradient {
  display: inline-block;
  background: linear-gradient(120deg, #60a5fa 0%, #a78bfa 40%, #f472b6 75%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Right visual */
.hero__visual-new {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: block;
}
.hero__card {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96,165,250,0.5), rgba(167,139,250,0.2), rgba(244,114,182,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.hero__card--main { max-width: 460px; margin-left: auto; animation: floatY 6s ease-in-out infinite; }
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.hero__card-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hero__card-dot:nth-child(1) { background: #f87171; }
.hero__card-dot:nth-child(2) { background: #fbbf24; }
.hero__card-dot:nth-child(3) { background: #4ade80; }
.hero__card-title {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.hero__stat {
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.hero__stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero__stat-value span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-bottom: 18px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero__chart span {
  flex: 1;
  height: var(--h, 40%);
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 0 12px rgba(96,165,250,0.35);
  animation: barGrow 1.2s cubic-bezier(.5,1.4,.4,1) both;
}
.hero__chart span:nth-child(2) { background: linear-gradient(180deg, #a78bfa, #7c3aed); box-shadow: 0 0 12px rgba(167,139,250,0.35); animation-delay: 0.1s; }
.hero__chart span:nth-child(3) { animation-delay: 0.2s; }
.hero__chart span:nth-child(4) { background: linear-gradient(180deg, #f472b6, #db2777); box-shadow: 0 0 12px rgba(244,114,182,0.35); animation-delay: 0.3s; }
.hero__chart span:nth-child(5) { animation-delay: 0.4s; }
.hero__chart span:nth-child(6) { background: linear-gradient(180deg, #4ade80, #16a34a); box-shadow: 0 0 12px rgba(74,222,128,0.35); animation-delay: 0.5s; }
.hero__chart span:nth-child(7) { animation-delay: 0.6s; }
.hero__chart span:nth-child(8) { background: linear-gradient(180deg, #fbbf24, #d97706); box-shadow: 0 0 12px rgba(251,191,36,0.4); animation-delay: 0.7s; }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }

.hero__card-rows { display: flex; flex-direction: column; gap: 8px; }
.hero__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
}
.hero__row em { margin-left: auto; font-style: normal; font-size: 0.72rem; color: #4ade80; font-weight: 600; }
.hero__row-dot { width: 8px; height: 8px; border-radius: 50%; }
.hero__row-dot--blue { background: #60a5fa; box-shadow: 0 0 8px #60a5fa; }
.hero__row-dot--green { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.hero__row-dot--yellow { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }

/* Floating tiles */
.hero__tile {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.hero__tile-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--white);
}
.hero__tile-label { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.hero__tile-sub { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.hero__tile--1 {
  top: 4%; left: -6%;
  animation: floatY 5s ease-in-out infinite;
}
.hero__tile--1 .hero__tile-icon { background: linear-gradient(135deg, #60a5fa, #3b82f6); box-shadow: 0 8px 20px rgba(59,130,246,0.5); }
.hero__tile--2 {
  bottom: 8%; right: -4%; left: auto;
  animation: floatY 6.5s ease-in-out infinite;
  animation-delay: -2s;
}
.hero__tile--2 .hero__tile-icon { background: linear-gradient(135deg, #f472b6, #db2777); box-shadow: 0 8px 20px rgba(219,39,119,0.5); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Old visual (kept for compat, hidden by default) */
.hero__visual { display: none; }
.hero-nodes { display: none; }

/* Hero Nodes Animation */
.hero-nodes {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 500px;
  z-index: 1;
}
.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--nv-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(66,133,244,0.4);
  animation: nodePulse 3s ease-in-out infinite;
}
.node--lg { width: 14px; height: 14px; }
.node--cyan { background: var(--nv-green); box-shadow: 0 0 20px rgba(52,168,83,0.4); }
.node--violet { background: var(--nv-red); box-shadow: 0 0 20px rgba(234,67,53,0.4); }
.node-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66,133,244,0.2), transparent);
  transform-origin: left center;
  animation: linePulse 4s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes nodePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes linePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== HERO NEW (light theme) ===== */
.hero--new {
  min-height: auto;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
  padding: calc(var(--header-height) + 40px) 0 40px;
}
.hero--new .hero__bg { opacity: 0.5; }
.hero--new .hero__grid {
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
}
.hero--new .hero__orb--1 { background: rgba(99,102,241,0.10); }
.hero--new .hero__orb--2 { background: rgba(236,72,153,0.08); }
.hero--new .hero__glow { display: none; }

.hero--new .hero__container {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}
.hero--new .hero__content { max-width: 620px; }
.hero__kicker { margin-bottom: 22px; }
.hero--new .hero__title {
  color: #0f172a;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}
.hero--new .hero__title-gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 60%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  padding: 0 0.05em 0.05em 0;
}
.hero__underline {
  display: block;
  width: 130px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  margin: 4px 0 24px;
}
.hero__lead {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 26px;
  max-width: 520px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn--arrow-blue { color: #2563eb; border-color: #dbeafe; background: #ffffff; }
.btn--arrow-blue:hover { background: #f5f8ff; border-color: #bfdbfe; }

/* Dashboard mockup */
.hero-dash {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  animation: floatY 8s ease-in-out infinite;
}
.hero-dash__top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 14px;
  margin-bottom: 14px;
}
.hero-dash__pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  box-shadow: 0 12px 30px -18px rgba(15,23,42,0.15);
}
.hero-dash__pill-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #dbeafe;
  flex-shrink: 0;
}
.hero-dash__pill-body { line-height: 1.2; }
.hero-dash__pill-title { font-size: 0.9rem; font-weight: 800; color: #0f172a; }
.hero-dash__pill-sub { font-size: 0.75rem; color: #64748b; margin-top: 3px; }
.hero-dash__pill-sub span { color: #10b981; font-weight: 700; margin-left: 4px; }

.hero-dash__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  box-shadow: 0 12px 30px -18px rgba(15,23,42,0.15);
}
.hero-dash__stat { line-height: 1.15; }
.hero-dash__stat-label { font-size: 0.6rem; font-weight: 700; color: #94a3b8; letter-spacing: 0.1em; margin-bottom: 5px; }
.hero-dash__stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-dash__stat-value em { font-style: normal; font-size: 0.75rem; color: #94a3b8; font-weight: 700; }
.hero-dash__stat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-dash__panel {
  position: relative;
  padding: 20px 22px 22px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 24px 50px -25px rgba(15,23,42,0.20);
}
.hero-dash__panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hero-dash__panel-title { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.hero-dash__panel-select {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.hero-dash__chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  height: 130px;
  padding: 8px 4px 26px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}
.hero-dash__bar {
  position: relative;
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--c1), var(--c2));
  border-radius: 8px 8px 4px 4px;
  animation: barRise 1s cubic-bezier(0.5, 1.4, 0.4, 1) both;
}
.hero-dash__bar:nth-child(1) { animation-delay: 0s; }
.hero-dash__bar:nth-child(2) { animation-delay: 0.08s; }
.hero-dash__bar:nth-child(3) { animation-delay: 0.16s; }
.hero-dash__bar:nth-child(4) { animation-delay: 0.24s; }
.hero-dash__bar:nth-child(5) { animation-delay: 0.32s; }
.hero-dash__bar:nth-child(6) { animation-delay: 0.40s; }
.hero-dash__bar:nth-child(7) { animation-delay: 0.48s; }
.hero-dash__bar span {
  position: absolute;
  bottom: -22px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
}
@keyframes barRise {
  from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

.hero-dash__rows { display: flex; flex-direction: column; gap: 8px; }
.hero-dash__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}
.hero-dash__row-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-dash__row-icon--blue { background: #dbeafe; }
.hero-dash__row-icon--green { background: #d1fae5; }
.hero-dash__row-icon--amber { background: #fef3c7; }
.hero-dash__row-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-dash__row-status--blue { color: #2563eb; }
.hero-dash__row-status--green { color: #10b981; }
.hero-dash__row-status--amber { color: #d97706; }

.hero-dash__float {
  position: absolute;
  right: -20px;
  bottom: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  box-shadow: 0 20px 40px -15px rgba(15,23,42,0.25);
  animation: floatY 5s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-dash__float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #ec4899, #db2777);
  box-shadow: 0 8px 18px -4px rgba(236,72,153,0.4);
  flex-shrink: 0;
}
.hero-dash__float-body { line-height: 1.2; }
.hero-dash__float-title { font-size: 0.82rem; font-weight: 800; color: #0f172a; }
.hero-dash__float-sub { font-size: 0.7rem; color: #64748b; margin-top: 3px; }
.hero-dash__float-line { width: 60px; height: 22px; margin-left: 4px; }

/* Trust strip (light) */
.hero--new + * .trust-strip,
.hero--new .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 20px 40px -25px rgba(15,23,42,0.12);
  border-top: 1px solid #eef1f5;
}
.hero--new .trust-strip__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 14px;
  border-right: 1px solid #f1f5f9;
  background: transparent;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
}
.hero--new .trust-strip__item:last-child { border-right: 0; }
.hero--new .trust-strip__item::before { display: none; }
.hero--new .trust-strip__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(37,99,235,0.10);
  color: inherit;
  display: grid; place-items: center;
}
.hero--new .trust-strip__icon--green { background: rgba(16,185,129,0.10); }
.hero--new .trust-strip__icon--purple { background: rgba(139,92,246,0.10); }
.hero--new .trust-strip__icon--pink { background: rgba(236,72,153,0.10); }
.hero--new .trust-strip__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.005em;
  margin-bottom: 3px;
}
.hero--new .trust-strip__sub {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .hero--new .hero__container { grid-template-columns: 1fr; }
  .hero-dash { max-width: 100%; }
  .hero--new .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .hero--new .trust-strip__item:nth-child(2) { border-right: 0; }
}

/* ===== TRUST STRIP (legacy dark) ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.trust-strip__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  min-width: 0;
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.trust-strip__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #60a5fa, #a78bfa);
  opacity: 0.7;
}
.trust-strip__item:nth-child(2)::before { background: linear-gradient(180deg, #4ade80, #16a34a); }
.trust-strip__item:nth-child(3)::before { background: linear-gradient(180deg, #fbbf24, #f472b6); }
.trust-strip__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
}
.trust-strip__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(96,165,250,0.15);
  color: #93c5fd;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(96,165,250,0.25);
  margin-top: 1px;
}
.trust-strip__item > div {
  min-width: 0;
  flex: 1;
}
.trust-strip__title {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.trust-strip__item:nth-child(2) .trust-strip__icon {
  background: rgba(74,222,128,0.15);
  color: #86efac;
  box-shadow: inset 0 0 0 1px rgba(74,222,128,0.25);
}
.trust-strip__item:nth-child(3) .trust-strip__icon {
  background: rgba(251,191,36,0.15);
  color: #fcd34d;
  box-shadow: inset 0 0 0 1px rgba(251,191,36,0.28);
}
.trust-strip__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}
.trust-strip__sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
/* legacy dot (kept for other pages that still use it) */
.trust-strip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #eef1f5;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4285F4, #34A853);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.04);
  border-color: #e2e8f0;
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.35rem;
  background: rgba(66,133,244,0.08);
  color: var(--nv-blue);
  transition: transform 0.3s ease;
}
.card:hover .card__icon { transform: scale(1.05); }

.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.card__text {
  color: #64748b;
  font-size: 0.925rem;
  line-height: 1.65;
  flex: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.25s ease;
}
.card__link:hover { gap: 10px; }
.card__link svg { transition: transform 0.25s ease; }
.card:hover .card__link svg { transform: translateX(3px); }

/* Category-tinted card variants (auto-applied via icon class) */
.card:has(.icon-web)::before { background: linear-gradient(90deg, #4285F4, #5A9CF5); }
.card:has(.icon-soft)::before { background: linear-gradient(90deg, #EA4335, #F28B83); }
.card:has(.icon-crm)::before { background: linear-gradient(90deg, #FBBC05, #F59E0B); }
.card:has(.icon-it)::before { background: linear-gradient(90deg, #34A853, #6DBE7A); }
.card:has(.icon-growth)::before { background: linear-gradient(90deg, #a78bfa, #7c3aed); }
.card:has(.icon-work)::before { background: linear-gradient(90deg, #f472b6, #db2777); }

/* Dark Cards */
.card--dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.card--dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(66,133,244,0.2);
  box-shadow: var(--shadow-glow);
}
.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: var(--gray-400); }

/* Glass Cards */
.card--glass {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.card--glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(66,133,244,0.25);
}

/* ===== GRID LAYOUTS ===== */
.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }

/* ===== SECTION HEADER ===== */
.section-header { max-width: 720px; margin-bottom: var(--space-3xl); }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }
.section-header .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(66,133,244,0.06);
  border-radius: 999px;
  border: 1px solid rgba(66,133,244,0.14);
  color: #1d4ed8;
  margin-bottom: var(--space-lg);
  font-size: 0.72rem;
}
.section-header .kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4285F4;
  box-shadow: 0 0 0 3px rgba(66,133,244,0.15);
}
.section--dark .section-header .kicker,
.section--gradient .section-header .kicker {
  background: rgba(251,188,5,0.1);
  border-color: rgba(251,188,5,0.25);
  color: var(--nv-yellow);
}
.section--dark .section-header p,
.section--gradient .section-header p { color: var(--gray-400); }

/* ===== PROCESS / STEPS ===== */
.process-section { background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%); }
.process-section .section-header { max-width: 780px; }
.kicker--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 14px;
  background: #e6efff;
  border: 1px solid #dbe6ff;
  border-radius: 999px;
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.kicker--pill i {
  width: 7px; height: 7px;
  background: #2563eb;
  border-radius: 50%;
}
.kicker--pill::before { content: none; }
.process-section .section-header h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  color: #0f172a;
}
.process-dot { color: #2563eb; }
.process-sub {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  margin-top: 20px;
  padding: 0 4px;
}
.process::before {
  content: '';
  position: absolute;
  top: 30px; left: 4px; right: 4px;
  height: 2px;
  background-image: linear-gradient(90deg,
    #3b82f6 0%,
    #8b5cf6 33%,
    #f59e0b 66%,
    #10b981 100%);
  z-index: 0;
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
          mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
}
.process__endpoint {
  position: absolute;
  top: 27px;
  width: 8px; height: 8px;
  border-radius: 50%;
  z-index: 1;
}
.process__endpoint--start { left: 0; background: #2563eb; }
.process__endpoint--end { right: 0; background: #10b981; }
.process__arrow {
  position: absolute;
  top: 23px;
  width: 16px; height: 16px;
  display: grid; place-items: center;
  transform: translateX(-50%);
  z-index: 2;
}
.process__arrow--1 { left: 25%; }
.process__arrow--2 { left: 50%; }
.process__arrow--3 { left: 75%; }
.process__step {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process__step:hover .process__card {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18);
}
.process__badge {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: -30px;
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(219,234,254,0.55);
}
.process__badge span { position: relative; z-index: 1; }
.process__step--1 .process__badge { background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%); box-shadow: 0 0 0 8px #dbeafe; }
.process__step--2 .process__badge { background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%); box-shadow: 0 0 0 8px #ede9fe; }
.process__step--3 .process__badge { background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%); box-shadow: 0 0 0 8px #fef3c7; }
.process__step--4 .process__badge { background: linear-gradient(180deg, #10b981 0%, #047857 100%); box-shadow: 0 0 0 8px #d1fae5; }

.process__card {
  margin-top: 40px;
  width: 100%;
  padding: 52px 24px 24px;
  background: #ffffff;
  border: 1px solid #e6e9f2;
  border-radius: 20px;
  box-shadow: 0 20px 40px -30px rgba(15,23,42,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 360px;
}
.process__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: rgba(37,99,235,0.10);
  border: 0;
  color: inherit;
}
.process__step--1 .process__icon { background: #e6efff; }
.process__step--2 .process__icon { background: #efeaff; }
.process__step--3 .process__icon { background: #fff4dd; }
.process__step--4 .process__icon { background: #e3f8ec; }

.process__step h4 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.process__rule {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.process__step--1 .process__rule { background: #2563eb; }
.process__step--2 .process__rule { background: #8b5cf6; }
.process__step--3 .process__rule { background: #f59e0b; }
.process__step--4 .process__rule { background: #10b981; }

.process__step p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.process__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  align-self: stretch;
  justify-content: center;
  border: 0;
}
.process__step--1 .process__tag { background: #eff4ff; color: #2563eb; }
.process__step--2 .process__tag { background: #f3efff; color: #7c3aed; }
.process__step--3 .process__tag { background: #fff4dd; color: #d97706; }
.process__step--4 .process__tag { background: #e3f8ec; color: #059669; }

.process-promise {
  margin-top: 26px;
  padding: 18px 28px;
  background: #ffffff;
  border: 1px solid #e6e9f2;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 30px -22px rgba(15,23,42,0.18);
}
.process-promise__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #e6efff;
  display: grid; place-items: center;
}
.process-promise__text {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}
.process-promise__accent {
  color: #2563eb;
  font-weight: 800;
  margin-right: 14px;
}
.process-promise__dots {
  width: 90px;
  height: 34px;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.7;
}

.section--dark .process__card,
.section--gradient .process__card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.section--dark .process__step h4,
.section--gradient .process__step h4 { color: #fff; }
.section--dark .process__step p,
.section--gradient .process__step p { color: rgba(255,255,255,0.65); }

.process__line { display: none; }

@media (max-width: 960px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process::before { display: none; }
  .process-promise { grid-template-columns: auto 1fr; }
  .process-promise__dots { display: none; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}

/* ===== OUTCOMES BAND (new) ===== */
.outcomes-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #eef2ff 0%, #f6f8fb 100%);
}
.outcomes-band {
  background: #ffffff;
  border: 1px solid #e6e9f2;
  border-radius: 28px;
  padding: 44px 44px 40px;
  color: #0f172a;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 30px 60px -30px rgba(15,23,42,0.18);
  position: relative;
  overflow: hidden;
}
.outcomes-band::before {
  content: none;
}
.outcomes-band__intro {
  position: relative;
}
.outcomes-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(15,23,42,0.04);
}
.outcomes-band__kicker i {
  width: 7px; height: 7px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}
.outcomes-band__intro h2 {
  color: #0f172a;
  font-size: clamp(1.75rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}
.outcomes-band__accent {
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.outcomes-band__underline {
  display: block;
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
  margin: 4px 0 20px;
}
.outcomes-band__lede {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}
.outcomes-band__dots {
  display: block;
  width: 90px;
  height: 40px;
  margin-top: 28px;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.7;
}
.outcomes-band__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.outcome-step {
  position: relative;
  padding: 32px 24px 26px;
  border-radius: 20px;
  border: 1px solid #e6e9f2;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.outcome-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18);
}
.outcome-step--1 { background: linear-gradient(180deg, #eff4ff 0%, #f8fafc 70%); }
.outcome-step--2 { background: linear-gradient(180deg, #f3efff 0%, #f8fafc 70%); }
.outcome-step--3 { background: linear-gradient(180deg, #ebfaf3 0%, #f8fafc 70%); }
.outcome-step__num {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}
.outcome-step--1 .outcome-step__num { background: #3b82f6; }
.outcome-step--2 .outcome-step__num { background: #8b5cf6; }
.outcome-step--3 .outcome-step__num { background: #10b981; }
.outcome-step__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 22px rgba(15,23,42,0.10);
  margin-bottom: 22px;
}
.outcome-step__body {
  width: 100%;
}
.outcome-step__body h4 {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.outcome-step__rule {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.outcome-step--1 .outcome-step__rule { background: #3b82f6; }
.outcome-step--2 .outcome-step__rule { background: #8b5cf6; }
.outcome-step--3 .outcome-step__rule { background: #10b981; }
.outcome-step__body p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.outcomes-band__arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e6e9f2;
  box-shadow: 0 6px 14px rgba(15,23,42,0.08);
}

/* Outcomes bottom CTA */
.outcomes-cta {
  margin-top: 22px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid #e6e9f2;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 30px -18px rgba(15,23,42,0.15);
}
.outcomes-cta__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(59,130,246,0.10);
  color: #2563eb;
}
.outcomes-cta__text h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: -0.005em;
}
.outcomes-cta__accent {
  color: #2563eb;
  font-weight: 800;
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .outcomes-band { grid-template-columns: 1fr; padding: 34px 26px; gap: 28px; }
  .outcomes-band__flow { grid-template-columns: 1fr; gap: 18px; }
  .outcomes-band__arrow { display: none; }
  .outcome-step { min-height: 0; }
  .outcomes-band__dots { display: none; }
  .outcomes-cta { grid-template-columns: auto 1fr; }
}

/* Legacy .outcomes styles retained for other pages but scoped away */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.outcomes::before {
  content: '';
  position: absolute;
  top: 58px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.35), rgba(167,139,250,0.35), rgba(251,191,36,0.35), transparent);
  z-index: 0;
  pointer-events: none;
}
.outcome {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.outcome::before {
  content: '';
  position: absolute;
  top: 0; left: 24px;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  border-radius: 0 0 3px 3px;
  transition: width 0.35s ease;
}
.outcome:nth-child(2)::before { background: linear-gradient(90deg, #a78bfa, #f472b6); }
.outcome:nth-child(3)::before { background: linear-gradient(90deg, #fbbf24, #f97316); }
.outcome::after {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(96,165,250,0.14), transparent 65%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.outcome:nth-child(2)::after { background: radial-gradient(circle, rgba(167,139,250,0.14), transparent 65%); }
.outcome:nth-child(3)::after { background: radial-gradient(circle, rgba(251,191,36,0.14), transparent 65%); }
.outcome:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.outcome:hover::before { width: 80px; }
.outcome:hover::after { opacity: 1; }

.outcome__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.outcome__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}
.outcome:nth-child(2) .outcome__num { background: linear-gradient(135deg, #a78bfa, #f472b6); -webkit-background-clip: text; background-clip: text; }
.outcome:nth-child(3) .outcome__num { background: linear-gradient(135deg, #fbbf24, #f97316); -webkit-background-clip: text; background-clip: text; }
.outcome__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 1.05rem;
  color: #93c5fd;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.22);
}
.outcome:nth-child(2) .outcome__icon { color: #c4b5fd; background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.22); }
.outcome:nth-child(3) .outcome__icon { color: #fcd34d; background: rgba(251,191,36,0.12); border-color: rgba(251,191,36,0.25); }

.outcome h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.outcome p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.outcome__list {
  list-style: none;
  padding: 16px 0 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.outcome__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.outcome__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.4);
}
.outcome__list li::after {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 6px; height: 3px;
  border-left: 1.5px solid #60a5fa;
  border-bottom: 1.5px solid #60a5fa;
  transform: rotate(-45deg);
}
.outcome:nth-child(2) .outcome__list li::before { background: rgba(167,139,250,0.15); border-color: rgba(167,139,250,0.4); }
.outcome:nth-child(2) .outcome__list li::after { border-color: #a78bfa; }
.outcome:nth-child(3) .outcome__list li::before { background: rgba(251,191,36,0.15); border-color: rgba(251,191,36,0.45); }
.outcome:nth-child(3) .outcome__list li::after { border-color: #fbbf24; }

/* ===== SOLUTIONS (six cards) ===== */
.solutions-section {
  position: relative;
  overflow: hidden;
  background: #f6f8fb;
}
.solutions__header {
  max-width: 780px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}
.solutions__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.solutions__kicker i {
  width: 24px; height: 2px;
  background: #cbd5e1;
  border-radius: 2px;
}
.solutions__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}
.solutions__title-accent {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.solutions__lead {
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sol-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  padding: 22px 22px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sc-accent, linear-gradient(90deg, #3b82f6, #06b6d4));
  border-radius: 20px 20px 0 0;
}
.sol-card::after {
  content: '';
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 26px;
  background-image: radial-gradient(circle, var(--sc-dot, rgba(59,130,246,0.35)) 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: 0.6;
  pointer-events: none;
}
.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -14px rgba(15,23,42,0.14);
  border-color: #dde3ec;
}

.sol-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 8px;
  align-items: center;
  flex: 1;
}
.sol-card__body { display: flex; flex-direction: column; min-width: 0; }
.sol-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  background: var(--sc-icon, linear-gradient(135deg, #3b82f6, #2563eb));
  box-shadow: 0 10px 22px -6px var(--sc-shadow, rgba(37,99,235,0.5));
  margin-bottom: 18px;
}
.sol-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.sol-card__desc {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.sol-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sc-link, #2563eb);
  transition: gap 0.25s ease;
  margin-top: auto;
}
.sol-card__arrow { transition: transform 0.25s ease; }
.sol-card:hover .sol-card__arrow { transform: translateX(4px); }
.sol-card:hover .sol-card__link { gap: 10px; }

.sol-card__art {
  align-self: center;
  width: 100%;
}
.sol-card__art svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Per-card colours */
.sol-card--blue   { --sc-accent: linear-gradient(90deg, #3b82f6, #60a5fa); --sc-icon: linear-gradient(135deg, #3b82f6, #2563eb); --sc-shadow: rgba(37,99,235,0.45); --sc-link: #2563eb; --sc-dot: rgba(59,130,246,0.35); }
.sol-card--purple { --sc-accent: linear-gradient(90deg, #8b5cf6, #a78bfa); --sc-icon: linear-gradient(135deg, #8b5cf6, #6d28d9); --sc-shadow: rgba(124,58,237,0.40); --sc-link: #7c3aed; --sc-dot: rgba(139,92,246,0.35); }
.sol-card--green  { --sc-accent: linear-gradient(90deg, #10b981, #34d399); --sc-icon: linear-gradient(135deg, #10b981, #059669); --sc-shadow: rgba(16,185,129,0.40); --sc-link: #059669; --sc-dot: rgba(16,185,129,0.35); }
.sol-card--amber  { --sc-accent: linear-gradient(90deg, #f59e0b, #f97316); --sc-icon: linear-gradient(135deg, #f59e0b, #ea580c); --sc-shadow: rgba(245,158,11,0.45); --sc-link: #d97706; --sc-dot: rgba(245,158,11,0.40); }
.sol-card--pink   { --sc-accent: linear-gradient(90deg, #ec4899, #f472b6); --sc-icon: linear-gradient(135deg, #ec4899, #db2777); --sc-shadow: rgba(236,72,153,0.40); --sc-link: #db2777; --sc-dot: rgba(236,72,153,0.35); }
.sol-card--cyan   { --sc-accent: linear-gradient(90deg, #06b6d4, #22d3ee); --sc-icon: linear-gradient(135deg, #06b6d4, #0891b2); --sc-shadow: rgba(6,182,212,0.40); --sc-link: #0891b2; --sc-dot: rgba(6,182,212,0.35); }

/* CTA band */
.solutions-cta {
  margin-top: 28px;
  padding: 22px 26px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.solutions-cta__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}
.solutions-cta__text h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.solutions-cta__text p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}
.solutions-cta__btn { background: #0f172a; border-color: #0f172a; color: #fff; }
.solutions-cta__btn:hover { background: #1e293b; border-color: #1e293b; }

@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sol-card__inner { grid-template-columns: minmax(0, 1fr) 110px; }
  .solutions-cta { grid-template-columns: auto 1fr; }
  .solutions-cta__btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 640px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-card__inner { grid-template-columns: 1fr; }
  .sol-card__art { max-width: 240px; align-self: flex-start; margin-top: 8px; }
  .solutions-cta { grid-template-columns: 1fr; text-align: left; }
}

/* ===== INDUSTRY TAGS ===== */
.tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.tag {
  padding: 0.625rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  color: var(--gray-300);
  transition: var(--transition);
}
.tag:hover { border-color: var(--blue); color: var(--white); background: rgba(66,133,244,0.1); }

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
}
.industries-section__bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(#c7d2fe 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  background-position: 40% 12%;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.industries-section__bg::after {
  content: '';
  position: absolute;
  right: 6%; bottom: 12%;
  width: 120px; height: 90px;
  background-image: radial-gradient(#e2e8f0 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.9;
}
.industries-section > .container { position: relative; z-index: 1; }

.industries {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-4xl);
  align-items: start;
}
.industries__left { position: relative; }
.industries__left .kicker--pill {
  margin-bottom: 22px;
}
.industries__left h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #0f172a;
  font-weight: 800;
}
.industries__accent {
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industries__underline {
  display: block;
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
  margin: 4px 0 24px;
}
.industries__lead {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.industries__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 26px;
  background: linear-gradient(180deg, #0f1c3d 0%, #0b1633 100%);
  border: 1px solid #0f1c3d;
  border-radius: 18px;
  max-width: 500px;
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.35);
}
.industries__meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: row;
}
.industries__meta-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.industries__meta-icon--blue { background: #2563eb; }
.industries__meta-icon--green { background: #10b981; }
.industries__meta-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2px;
}
.industries__meta-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
}
.industries__meta-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.14);
}
.industries__meta-dots {
  position: absolute;
  right: 16px; top: 14px;
  width: 60px; height: 34px;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.2px, transparent 1.2px);
  background-size: 8px 8px;
}

.industries__right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 22px 22px 22px 26px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 24px -18px rgba(15,23,42,0.12);
}
.industry-card::before {
  content: '';
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #3b82f6, #6366f1);
  opacity: 1;
  transition: top 0.3s ease, bottom 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18);
  border-color: #e2e8f0;
}
.industry-card:hover::before { top: 10px; bottom: 10px; }

.industry-card__icon {
  align-self: center;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(37,99,235,0.10);
  border: 0;
  flex-shrink: 0;
}
.industry-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.industry-card__title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.industry-card__sub {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}
.industry-card__arrow {
  align-self: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: grid; place-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.industry-card:hover .industry-card__arrow { transform: translateX(4px); border-color: #cbd5e1; background: #f8fafc; }

/* Per-card tint */
.industry-card--1 { background: linear-gradient(180deg, #ffffff 0%, #fff5f9 100%); }
.industry-card--1 .industry-card__icon { background: #fde7f0; }
.industry-card--1::before { background: linear-gradient(180deg, #ec4899, #db2777); }

.industry-card--2 { background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%); }
.industry-card--2 .industry-card__icon { background: #dbeafe; }
.industry-card--2::before { background: linear-gradient(180deg, #3b82f6, #1d4ed8); }

.industry-card--3 { background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%); }
.industry-card--3 .industry-card__icon { background: #fef3c7; }
.industry-card--3::before { background: linear-gradient(180deg, #f59e0b, #d97706); }

.industry-card--4 { background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%); }
.industry-card--4 .industry-card__icon { background: #ede9fe; }
.industry-card--4::before { background: linear-gradient(180deg, #8b5cf6, #7c3aed); }

.industry-card--5 { background: linear-gradient(180deg, #ffffff 0%, #fff3f2 100%); }
.industry-card--5 .industry-card__icon { background: #fee2e2; }
.industry-card--5::before { background: linear-gradient(180deg, #f87171, #ef4444); }

.industry-card--6 { background: linear-gradient(180deg, #ffffff 0%, #f0fdf7 100%); }
.industry-card--6 .industry-card__icon { background: #d1fae5; }
.industry-card--6::before { background: linear-gradient(180deg, #10b981, #059669); }

@media (max-width: 1024px) {
  .industries { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .industries__right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .industries__right { grid-template-columns: 1fr; }
  .industries__meta { flex-wrap: wrap; }
  .industries__meta-divider { display: none; }
}

/* ===== PLATFORMS SECTION ===== */
.platforms-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  padding-top: var(--space-3xl);
}
.platforms-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.platforms-section__bg::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(66,133,244,0.12), transparent 65%);
  filter: blur(20px);
}
.platforms-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 40% at 50% 0%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 40% at 50% 0%, black 20%, transparent 75%);
  opacity: 0.7;
}
.platforms-section > .container { position: relative; z-index: 1; }

.platforms__header {
  max-width: 780px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}
.platforms__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.platforms__kicker i {
  width: 24px; height: 2px;
  background: #cbd5e1;
  border-radius: 2px;
}
.platforms__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 18px;
  color: #0f172a;
  padding: 0.15em 0.05em;
  overflow: visible;
}
.platforms__title-accent {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-weight: 800;
  display: inline-block;
  padding: 0 0.12em 0.05em 0.02em;
  line-height: 1.15;
}
.platforms__lead {
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.platforms__stats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 999px;
  box-shadow: 0 12px 28px -14px rgba(15,23,42,0.14);
}
.platforms__stat {
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.platforms__stat span {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
}
.platforms__stat--blue { color: #2563eb; }
.platforms__stat--blue span { background: #dbeafe; color: #2563eb; }
.platforms__stat--green { color: #059669; }
.platforms__stat--green span { background: #d1fae5; color: #059669; }
.platforms__stat--amber { color: #b45309; }
.platforms__stat--amber span { background: #fef3c7; color: #b45309; }
@media (max-width: 640px) {
  .platforms__stats { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { grid-template-columns: minmax(0, 1fr) 180px; }
}
@media (max-width: 640px) {
  .platform-card { grid-template-columns: 1fr; }
  .platform-card__mock { max-width: 260px; margin: 0 auto; }
}

/* ===== PLATFORMS ===== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.platform-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 16px;
  padding: 26px 24px 22px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eef1f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  min-height: 240px;
  align-items: center;
}
.platform-card__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, var(--pc-glow, rgba(37,99,235,0.10)), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.platform-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--pc-accent, linear-gradient(180deg, #2563eb, #06b6d4));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.platform-card > * { position: relative; z-index: 1; }
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(15,23,42,0.10);
  border-color: #e2e8f0;
}
.platform-card:hover::before { opacity: 1; }
.platform-card:hover::after { transform: scaleY(1); }

.platform-card__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -8px var(--pc-shadow, rgba(37,99,235,0.4));
  position: relative;
}
.platform-card__logo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: inherit;
  filter: blur(14px);
  opacity: 0.35;
  z-index: -1;
}
.platform-card__content { flex: 1; display: flex; flex-direction: column; }
.platform-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.platform-card__desc {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.platform-card .card__link {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,0.06);
  align-self: flex-start;
}

/* Per-card accent — set with modifier classes */
.platform-card--blue {
  --pc-accent: linear-gradient(180deg, #2563eb, #06b6d4);
  --pc-glow: rgba(37,99,235,0.10);
  --pc-shadow: rgba(37,99,235,0.45);
  --pc-logo: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.platform-card--green {
  --pc-accent: linear-gradient(180deg, #10b981, #34d399);
  --pc-glow: rgba(16,185,129,0.12);
  --pc-shadow: rgba(16,185,129,0.45);
  --pc-logo: linear-gradient(135deg, #10b981, #059669);
}
.platform-card--teal {
  --pc-accent: linear-gradient(180deg, #14b8a6, #2dd4bf);
  --pc-glow: rgba(20,184,166,0.12);
  --pc-shadow: rgba(20,184,166,0.45);
  --pc-logo: linear-gradient(135deg, #14b8a6, #0d9488);
}
.platform-card--purple {
  --pc-accent: linear-gradient(180deg, #7c3aed, #a78bfa);
  --pc-glow: rgba(124,58,237,0.12);
  --pc-shadow: rgba(124,58,237,0.45);
  --pc-logo: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.platform-card__logo {
  background: var(--pc-logo) !important;
  color: #fff !important;
}
.platform-card__mock {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--pc-glow), transparent 70%);
  display: grid;
  place-items: center;
  padding: 8px;
  transition: transform 0.4s ease;
}
.platform-card__mock svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(15,23,42,0.10));
  transition: transform 0.4s ease;
}
.platform-card:hover .platform-card__mock svg { transform: translateY(-3px) scale(1.02); }

/* ============ NEW PLATFORM CARDS (pf-card) ============ */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.pf-card {
  --pf-c1: #3b82f6;
  --pf-c2: #6366f1;
  --pf-tint: #eff4ff;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 20px;
  align-items: center;
  padding: 26px 24px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 22px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 14px 30px -22px rgba(15,23,42,0.15);
  min-height: 210px;
}
.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -25px rgba(15,23,42,0.20);
  border-color: #e2e8f0;
}
.pf-card__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
}
.pf-card__logo {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pf-c1), var(--pf-c2));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  display: grid; place-items: center;
  box-shadow: 0 12px 26px -8px rgba(37,99,235,0.35);
  flex-shrink: 0;
}
.pf-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pf-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pf-card__name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
}
.pf-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pf-card__badge i {
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.pf-card__badge--live { color: #059669; background: #d1fae5; }
.pf-card__badge--live i { background: #10b981; }
.pf-card__badge--dev { color: #d97706; background: #fef3c7; }
.pf-card__badge--dev i { background: #f59e0b; }

.pf-card__desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
.pf-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pf-c1);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  align-self: flex-start;
  transition: gap 0.25s ease;
}
.pf-card:hover .pf-card__link { gap: 10px; }
.pf-card__link svg { transition: transform 0.25s ease; }
.pf-card:hover .pf-card__link svg { transform: translateX(3px); }

.pf-card__mock {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--pf-tint), transparent 70%);
  display: grid;
  place-items: center;
  padding: 8px;
  transition: transform 0.4s ease;
}
.pf-card__mock svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(15,23,42,0.10));
  transition: transform 0.4s ease;
}
.pf-card:hover .pf-card__mock svg { transform: translateY(-3px) scale(1.02); }

/* Per-card color themes */
.pf-card--blue {
  --pf-c1: #2563eb;
  --pf-c2: #6366f1;
  --pf-tint: #eff4ff;
}
.pf-card--green {
  --pf-c1: #10b981;
  --pf-c2: #059669;
  --pf-tint: #e6faf1;
}
.pf-card--teal {
  --pf-c1: #14b8a6;
  --pf-c2: #0d9488;
  --pf-tint: #e6faf7;
}
.pf-card--purple {
  --pf-c1: #8b5cf6;
  --pf-c2: #6d28d9;
  --pf-tint: #f2edff;
}
.pf-card--green .pf-card__logo { box-shadow: 0 12px 26px -8px rgba(16,185,129,0.4); }
.pf-card--teal .pf-card__logo { box-shadow: 0 12px 26px -8px rgba(20,184,166,0.4); }
.pf-card--purple .pf-card__logo { box-shadow: 0 12px 26px -8px rgba(139,92,246,0.4); }

@media (max-width: 900px) {
  .pf-card { grid-template-columns: 1fr; }
  .pf-card__mock { display: none; }
}
@media (max-width: 720px) {
  .pf-grid { grid-template-columns: 1fr; }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge--live {
  background: rgba(16,185,129,0.10);
  color: #059669;
  box-shadow: inset 0 0 0 1px rgba(16,185,129,0.22);
}
.badge--live::before { box-shadow: 0 0 0 3px rgba(16,185,129,0.18); animation: badgePulse 2s ease-in-out infinite; }
.badge--dev {
  background: rgba(251,188,5,0.12);
  color: #b45309;
  box-shadow: inset 0 0 0 1px rgba(251,188,5,0.28);
}

/* ===== WHY LIST ===== */
.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.why-item {
  position: relative;
  padding: 24px 22px 22px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.why-item::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--wi-glow, rgba(66,133,244,0.08));
  filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.why-item::after {
  content: '';
  position: absolute;
  left: 0; top: 22px; bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--wi-accent, linear-gradient(180deg, #3b82f6, #1d4ed8));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.why-item > * { position: relative; z-index: 1; }
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(15,23,42,0.10);
  border-color: #e2e8f0;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover::after { transform: scaleY(1); }

.why-item__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--wi-icon-bg, rgba(59,130,246,0.10));
  color: var(--wi-icon-color, #2563eb);
  font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px var(--wi-icon-border, rgba(59,130,246,0.18));
  transition: transform 0.3s ease;
}
.why-item:hover .why-item__icon { transform: scale(1.05) rotate(-3deg); }

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.why-item p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Colour variants */
.why-item--blue {
  --wi-accent: linear-gradient(180deg, #3b82f6, #1d4ed8);
  --wi-glow: rgba(59,130,246,0.14);
  --wi-icon-bg: rgba(59,130,246,0.10);
  --wi-icon-color: #2563eb;
  --wi-icon-border: rgba(59,130,246,0.22);
}
.why-item--purple {
  --wi-accent: linear-gradient(180deg, #8b5cf6, #6d28d9);
  --wi-glow: rgba(139,92,246,0.14);
  --wi-icon-bg: rgba(139,92,246,0.10);
  --wi-icon-color: #7c3aed;
  --wi-icon-border: rgba(139,92,246,0.22);
}
.why-item--pink {
  --wi-accent: linear-gradient(180deg, #f472b6, #db2777);
  --wi-glow: rgba(219,39,119,0.14);
  --wi-icon-bg: rgba(219,39,119,0.10);
  --wi-icon-color: #db2777;
  --wi-icon-border: rgba(219,39,119,0.22);
}
.why-item--amber {
  --wi-accent: linear-gradient(180deg, #f59e0b, #b45309);
  --wi-glow: rgba(245,158,11,0.14);
  --wi-icon-bg: rgba(245,158,11,0.12);
  --wi-icon-color: #b45309;
  --wi-icon-border: rgba(245,158,11,0.28);
}
.why-item--green {
  --wi-accent: linear-gradient(180deg, #10b981, #059669);
  --wi-glow: rgba(16,185,129,0.14);
  --wi-icon-bg: rgba(16,185,129,0.10);
  --wi-icon-color: #059669;
  --wi-icon-border: rgba(16,185,129,0.22);
}
.why-item--teal {
  --wi-accent: linear-gradient(180deg, #14b8a6, #0f766e);
  --wi-glow: rgba(20,184,166,0.14);
  --wi-icon-bg: rgba(20,184,166,0.10);
  --wi-icon-color: #0f766e;
  --wi-icon-border: rgba(20,184,166,0.22);
}
@media (max-width: 1024px) {
  .why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .why-list { grid-template-columns: 1fr; }
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--midnight), var(--navy));
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(66,133,244,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(234,67,53,0.06) 0%, transparent 50%);
}
.cta-band h2 { color: var(--white); margin-bottom: var(--space-md); position: relative; }
.cta-band p { color: var(--gray-400); max-width: 600px; margin: 0 auto var(--space-2xl); position: relative; }
.cta-band .btn-group { justify-content: center; position: relative; }

/* ===== ACCORDION / FAQ ===== */
.accordion { max-width: 800px; }
.accordion__item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: var(--transition);
}
.accordion__trigger:hover { color: var(--blue); }
.accordion__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.accordion__item.active .accordion__icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__body { padding: 0 0 var(--space-lg); color: var(--gray-600); font-size: var(--fs-sm); line-height: 1.8; }

/* ===== CAPABILITY LIST ===== */
.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.capability-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--gray-700);
  transition: var(--transition);
  border: 1px solid transparent;
}
.capability-item:hover { background: var(--gray-50); border-color: var(--gray-200); }
.capability-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ===== SIGNS LIST ===== */
.signs-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.signs-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}
.signs-item::before {
  content: '!';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239,68,68,0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: var(--fs-xs);
}

/* ===== IMPLEMENTATION PATHS ===== */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.path {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.path:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.path__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--blue);
  background: rgba(66,133,244,0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-md);
}
.path h4 { margin-bottom: var(--space-sm); }
.path p { font-size: var(--fs-sm); color: var(--gray-600); }

/* ===== ENGAGEMENT OPTIONS ===== */
.engagements { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.engagement {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.engagement:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.engagement h4 { color: var(--gray-900); margin-bottom: var(--space-sm); }
.engagement p { font-size: var(--fs-sm); color: var(--gray-600); }

/* ===== DISCLOSURE ===== */
.disclosure {
  padding: var(--space-xl);
  background: rgba(239,68,68,0.03);
  border: 1px solid rgba(239,68,68,0.1);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--gray-700);
  line-height: 1.8;
}
.disclosure--info {
  background: rgba(66,133,244,0.03);
  border-color: rgba(66,133,244,0.1);
}
.disclosure strong { color: var(--gray-900); }

/* ===== CONTACT FORM ===== */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-size: var(--fs-sm); font-weight: 600; color: var(--gray-700); }
.form-label .required { color: var(--red); }
.form-input, .form-select, .form-textarea {
  padding: 0.875rem var(--space-lg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(66,133,244,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.form-checkbox input { margin-top: 4px; accent-color: var(--blue); }
.form-error { font-size: var(--fs-xs); color: var(--red); display: none; }
.form-success {
  padding: var(--space-xl);
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}
.form-success h3 { color: var(--green); margin-bottom: var(--space-sm); }

/* ===== PORTFOLIO FILTERS ===== */
.filters { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-2xl); }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: var(--space-xl) 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--transition-slow);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.cookie-banner__text { font-size: var(--fs-sm); color: var(--gray-600); max-width: 600px; }
.cookie-banner__actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight);
  color: var(--gray-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { max-width: 320px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.footer__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}
.footer__logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.footer__logo-text em {
  font-style: normal;
  color: var(--nv-red);
}
.footer__desc { font-size: var(--fs-sm); line-height: 1.8; margin-bottom: var(--space-lg); }
.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__links a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--gray-400);
  padding: var(--space-xs) 0;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); padding-left: var(--space-sm); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: var(--fs-xs);
}
.footer__legal { display: flex; gap: var(--space-lg); }
.footer__legal a:hover { color: var(--white); }

/* ===== NEWSLETTER ===== */
.newsletter { margin-top: var(--space-xl); }
.newsletter__form { display: flex; gap: var(--space-sm); }
.newsletter__input {
  flex: 1;
  padding: 0.625rem var(--space-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: var(--fs-sm);
  outline: none;
}
.newsletter__input::placeholder { color: var(--gray-500); }
.newsletter__input:focus { border-color: var(--blue); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-md); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .outcomes { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .hero-nodes { display: none; }
  .hero__content { max-width: 100%; }
  .hero__container { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero__container > .hero__content,
  .hero__container > .hero__visual-new,
  .hero__container > .trust-strip { grid-column: 1; grid-row: auto; }
  .hero__visual-new { min-height: 380px; margin-top: var(--space-xl); }
  .hero__card--main { margin: 0 auto; }
  .hero__tile--1 { top: -2%; left: 2%; }
  .hero__tile--2 { bottom: 2%; right: 2%; left: auto; }
  .why-list { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .section { padding: var(--space-3xl) 0; }
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
  .container { padding: 0 var(--space-md); }
  .grid--2, .grid--3, .grid--4, .grid--6 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr; }
  .paths { grid-template-columns: 1fr; }
  .engagements { grid-template-columns: 1fr; }
  .capability-list { grid-template-columns: 1fr; }
  .signs-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
  .btn { justify-content: center; }

  .header__nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  .trust-strip { grid-template-columns: 1fr; gap: 10px; }
  .platform-card { flex-direction: column; }
  .hero__visual-new { display: none; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

@media (max-width: 320px) {
  h1 { font-size: 1.75rem; }
  .container { padding: 0 var(--space-sm); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--midnight);
  color: var(--white);
}
.error-page__code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--nv-blue), var(--nv-green), var(--nv-yellow), var(--nv-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ===== PRODUCT STATUS BADGES (legacy fallback) ===== */
.badge--planned {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(66,133,244,0.10);
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(66,133,244,0.22);
}
.badge--planned::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

/* ===== LOADING SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* ===== PARTNER SECTION ===== */
.partner-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-bottom: var(--space-4xl);
}
.partner-section__bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(66,133,244,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 80% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 80% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.partner-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(66,133,244,0.14) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.partner-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(234,67,53,0.10) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.partner-section .container { position: relative; z-index: 2; }

.partner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--space-4xl);
  align-items: center;
}
.partner__left h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 18px 0 10px;
  color: #0f172a;
  font-weight: 800;
}
.partner__accent {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partner__underline {
  display: block;
  width: 130px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
  margin: 4px 0 22px;
}
.partner__lead {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 520px;
}
.partner__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Hub visual */
.partner__hub {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px;
}
.partner__hub-orbit {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  animation: hubSpin 60s linear infinite;
  transform-origin: center;
}
@keyframes hubSpin { to { transform: rotate(360deg); } }

.partner__orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.7);
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.partner__orbit-dot { width: 8px; height: 8px; box-shadow: 0 0 0 3px rgba(255,255,255,0.8); }
.partner__orbit-dot--1 { top: 26%; left: 38%; background: #3b82f6; animation-delay: 0s; }
.partner__orbit-dot--2 { top: 26%; right: 38%; background: #ef4444; animation-delay: -0.5s; }
.partner__orbit-dot--3 { top: 55%; left: 14%; background: #a78bfa; animation-delay: -1s; }
.partner__orbit-dot--4 { top: 55%; right: 14%; background: #10b981; animation-delay: -1.5s; }
.partner__orbit-dot--5 { bottom: 24%; left: 40%; background: #fbbf24; animation-delay: -2s; }
.partner__orbit-dot--6 { bottom: 24%; right: 38%; background: #ec4899; animation-delay: -2.5s; }

.partner__hub-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40%; height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #8b93ff 0%, #6366f1 40%, #4f46e5 75%, #4338ca 100%);
  display: grid; place-items: center;
  box-shadow:
    0 25px 60px -15px rgba(79,70,229,0.55),
    inset 0 -12px 30px rgba(0,0,0,0.20),
    inset 0 12px 30px rgba(255,255,255,0.15);
  z-index: 3;
  animation: coreFloat 5s ease-in-out infinite;
}
@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.02); }
}
.partner__hub-core-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
  filter: blur(18px);
  z-index: -1;
}
.partner__hub-core-diamond {
  position: absolute;
  top: 22%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.85;
}
.partner__hub-core-inner { text-align: center; color: white; margin-top: 30px; }
.partner__hub-label {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}
.partner__hub-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  opacity: 0.85;
  margin-top: 10px;
  font-weight: 600;
}

.partner__spoke {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  box-shadow: 0 12px 26px -8px rgba(15,23,42,0.14), 0 2px 5px rgba(15,23,42,0.04);
  white-space: nowrap;
  z-index: 4;
  animation: spokeFloat 6s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner__spoke:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -10px rgba(15,23,42,0.20);
}
.partner__spoke i {
  font-style: normal;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}
.partner__spoke-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.partner__spoke-text b {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.005em;
}
.partner__spoke-text em {
  font-style: normal;
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}
.partner__spoke--1 { top: 6%; left: 22%; animation-delay: 0s; }
.partner__spoke--1 i { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.partner__spoke--2 { top: 6%; right: 16%; animation-delay: -1s; }
.partner__spoke--2 i { background: linear-gradient(135deg, #ef4444, #f97316); }
.partner__spoke--3 { top: 40%; left: 0; animation-delay: -2s; }
.partner__spoke--3 i { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.partner__spoke--4 { top: 40%; right: 0; animation-delay: -3s; }
.partner__spoke--4 i { background: linear-gradient(135deg, #10b981, #059669); }
.partner__spoke--5 { bottom: 6%; left: 22%; animation-delay: -4s; }
.partner__spoke--5 i { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.partner__spoke--6 { bottom: 6%; right: 16%; animation-delay: -5s; }
.partner__spoke--6 i { background: linear-gradient(135deg, #ec4899, #db2777); }

@keyframes spokeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes spokeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Stats row */
.partner__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--space-3xl);
  padding: 20px 28px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 20px 40px -25px rgba(15,23,42,0.15);
}
.partner__stat {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px 16px;
  border-right: 1px solid #f1f5f9;
}
.partner__stat:last-child { border-right: 0; }
.partner__stat-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(37,99,235,0.10);
  flex-shrink: 0;
}
.partner__stat:nth-child(2) .partner__stat-icon { background: rgba(16,185,129,0.10); }
.partner__stat:nth-child(3) .partner__stat-icon { background: rgba(139,92,246,0.10); }
.partner__stat:nth-child(4) .partner__stat-icon { background: rgba(239,68,68,0.10); }
.partner__stat-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.partner__stat-sub {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .partner { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .partner__hub { max-width: 380px; }
  .partner__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .partner__stats { grid-template-columns: 1fr; }
  .partner__hub { max-width: 320px; }
  .partner__spoke { font-size: 0.72rem; padding: 7px 10px; }
}

/* Content block spacing */
.content-block p + p { margin-top: var(--space-md); }

/* ===== SERVICE ICON COLORS - Logo Palette ===== */
.icon-web { background: linear-gradient(135deg, #4285F4, #5A9CF5); color: white; }
.icon-soft { background: linear-gradient(135deg, #EA4335, #F28B83); color: white; }
.icon-crm { background: linear-gradient(135deg, #FBBC05, #FDD663); color: #1a1a1a; }
.icon-it { background: linear-gradient(135deg, #34A853, #57BB6D); color: white; }
.icon-growth { background: linear-gradient(135deg, #EA4335, #FBBC05); color: white; }
.icon-work { background: linear-gradient(135deg, #4285F4, #34A853); color: white; }

/* ============================================================
   HERO NEW — layout override fix (matches design mockup)
   Fixes: .hero display:flex was causing trust-strip to sit
   beside the hero-container. Also stops word-break bleed.
   ============================================================ */
.hero.hero--new {
  display: block !important;
  align-items: initial !important;
  min-height: auto;
  padding: calc(var(--header-height) + 48px) 0 56px;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
  overflow: hidden;
}
.hero.hero--new .hero__container {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  grid-template-rows: auto;
}
.hero.hero--new .hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 560px;
  min-width: 0;
}
.hero.hero--new .hero-dash {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
  width: 100%;
}
.hero.hero--new .hero__kicker {
  white-space: nowrap;
  max-width: max-content;
}
.hero.hero--new .hero__title { white-space: normal; }

/* Trust strip: put its container BELOW the grid, full-width row */
.hero.hero--new > .container:last-of-type {
  margin-top: 40px;
}
.hero.hero--new .trust-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 20px 40px -25px rgba(15,23,42,0.12);
  margin-top: 0;
  border-top: 1px solid #eef1f5;
  width: 100%;
}
.hero.hero--new .trust-strip__item {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 18px;
  border: 0;
  border-right: 1px solid #f1f5f9;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
}
.hero.hero--new .trust-strip__item:last-child { border-right: 0; }
.hero.hero--new .trust-strip__item::before { display: none; }
.hero.hero--new .trust-strip__item:hover {
  transform: none;
  background: transparent;
  border-color: #f1f5f9;
}
.hero.hero--new .trust-strip__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(37,99,235,0.10);
  color: inherit;
  display: grid; place-items: center;
  box-shadow: none;
  margin: 0;
  flex-shrink: 0;
}
.hero.hero--new .trust-strip__icon--green { background: rgba(16,185,129,0.10); }
.hero.hero--new .trust-strip__icon--purple { background: rgba(139,92,246,0.10); }
.hero.hero--new .trust-strip__icon--pink { background: rgba(236,72,153,0.10); }
.hero.hero--new .trust-strip__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
  overflow-wrap: normal !important;
  word-break: normal !important;
  white-space: normal;
}
.hero.hero--new .trust-strip__sub {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

@media (max-width: 1024px) {
  .hero.hero--new .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero.hero--new .hero-dash { margin: 0 auto; max-width: 560px; }
  .hero.hero--new .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .hero.hero--new .trust-strip__item:nth-child(2) { border-right: 0; }
  .hero.hero--new .trust-strip__item:nth-child(-n+2) { border-bottom: 1px solid #f1f5f9; padding-bottom: 14px; }
  .hero.hero--new .trust-strip__item:nth-child(n+3) { padding-top: 14px; }
}
@media (max-width: 640px) {
  .hero.hero--new .trust-strip { grid-template-columns: 1fr; }
  .hero.hero--new .trust-strip__item { border-right: 0 !important; border-bottom: 1px solid #f1f5f9; padding: 12px 8px; }
  .hero.hero--new .trust-strip__item:last-child { border-bottom: 0; }
  .hero.hero--new .hero-dash__float { right: 0; bottom: -20px; }
}

/* ============================================================
   HERO DASH — SHARPEN + ANIMATIONS
   Fixes blur (removes constant float translate on the whole
   panel), adds GPU compositing, and layers in polished motion.
   ============================================================ */

/* Kill the continuous floatY on the whole panel (was blurring
   text via subpixel translate). Keep only the smallest badge. */
.hero.hero--new .hero-dash {
  animation: none !important;
  transform: none !important;
  will-change: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hero.hero--new .hero-dash__pill,
.hero.hero--new .hero-dash__stats,
.hero.hero--new .hero-dash__panel,
.hero.hero--new .hero-dash__float {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Crisper shadows + subtle entrance */
.hero.hero--new .hero-dash__pill {
  box-shadow: 0 10px 30px -14px rgba(15,23,42,0.18), 0 2px 6px -2px rgba(15,23,42,0.06);
  animation: dashSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero.hero--new .hero-dash__stats {
  box-shadow: 0 10px 30px -14px rgba(15,23,42,0.18), 0 2px 6px -2px rgba(15,23,42,0.06);
  animation: dashSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.hero.hero--new .hero-dash__panel {
  box-shadow: 0 30px 60px -30px rgba(15,23,42,0.28), 0 6px 16px -8px rgba(15,23,42,0.08);
  animation: dashSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero.hero--new .hero-dash__panel:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 40px 80px -30px rgba(15,23,42,0.32), 0 8px 20px -8px rgba(15,23,42,0.12);
}
.hero.hero--new .hero-dash__pill:hover {
  transform: translateY(-2px) translateZ(0);
}

/* Only the small "CRM & AI" tag gently floats, and only slightly. */
.hero.hero--new .hero-dash__float {
  animation: dashSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both,
             miniFloat 4.5s ease-in-out 1.2s infinite;
  box-shadow: 0 20px 40px -15px rgba(236,72,153,0.28), 0 6px 14px -6px rgba(15,23,42,0.10);
}

/* Bars: keep the crisp rise, add a gentle idle sway (transform-origin bottom
   prevents jitter). */
.hero.hero--new .hero-dash__bar {
  transform-origin: bottom center;
  animation: barRise 1s cubic-bezier(0.5, 1.4, 0.4, 1) both,
             barIdle 3.4s ease-in-out infinite;
  box-shadow: 0 6px 14px -8px rgba(15,23,42,0.20);
  will-change: transform;
}
.hero.hero--new .hero-dash__bar:nth-child(1) { animation-delay: 0.30s, 1.4s; }
.hero.hero--new .hero-dash__bar:nth-child(2) { animation-delay: 0.38s, 1.6s; }
.hero.hero--new .hero-dash__bar:nth-child(3) { animation-delay: 0.46s, 1.8s; }
.hero.hero--new .hero-dash__bar:nth-child(4) { animation-delay: 0.54s, 2.0s; }
.hero.hero--new .hero-dash__bar:nth-child(5) { animation-delay: 0.62s, 2.2s; }
.hero.hero--new .hero-dash__bar:nth-child(6) { animation-delay: 0.70s, 2.4s; }
.hero.hero--new .hero-dash__bar:nth-child(7) { animation-delay: 0.78s, 2.6s; }
.hero.hero--new .hero-dash__bar:hover {
  filter: brightness(1.08);
  transform: scaleY(1.04);
}

/* Rows: fade-in stagger + hover shift */
.hero.hero--new .hero-dash__row {
  animation: rowFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero.hero--new .hero-dash__row:nth-child(1) { animation-delay: 0.7s; }
.hero.hero--new .hero-dash__row:nth-child(2) { animation-delay: 0.82s; }
.hero.hero--new .hero-dash__row:nth-child(3) { animation-delay: 0.94s; }
.hero.hero--new .hero-dash__row:hover {
  background: #eef2ff;
  transform: translateX(4px);
}

/* Live status dots — sharper, richer pulse */
.hero.hero--new .hero-dash__stat-dot {
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0);   }
}

/* Sparkline on the CRM & AI float */
.hero.hero--new .hero-dash__float-line path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1.6s ease-out 1.1s forwards;
}

@keyframes dashSlideIn {
  from { opacity: 0; transform: translateY(18px) translateZ(0); }
  to   { opacity: 1; transform: translateY(0)    translateZ(0); }
}
@keyframes rowFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
@keyframes miniFloat {
  0%, 100% { transform: translateY(0)    translateZ(0); }
  50%      { transform: translateY(-6px) translateZ(0); }
}
@keyframes barIdle {
  0%, 100% { transform: scaleY(1);    }
  50%      { transform: scaleY(1.03); }
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--new .hero-dash *,
  .hero.hero--new .hero-dash {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   HEADER — LIGHT / WHITE THEME (matches new hero)
   ============================================================ */
.header {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(15,23,42,0.06) !important;
  box-shadow: 0 1px 0 rgba(15,23,42,0.02);
}
.header.scrolled {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 10px 30px -18px rgba(15,23,42,0.15) !important;
  border-bottom-color: rgba(15,23,42,0.08) !important;
}
.header__logo img {
  filter: none !important;
}
.header__nav-link {
  color: #334155 !important;
  font-weight: 600;
}
.header__nav-link:hover,
.header__nav-link.active {
  color: #0f172a !important;
  background: rgba(37,99,235,0.06) !important;
}
.header__nav-link.active {
  background: rgba(37,99,235,0.10) !important;
  box-shadow: inset 0 0 0 1px rgba(37,99,235,0.18) !important;
  color: #2563eb !important;
}
.header__nav-link::after {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
}

/* CTA — solid blue pill like the mockup */
.header__cta.btn.btn--primary {
  background: #2563eb !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 8px 20px -8px rgba(37,99,235,0.55), 0 2px 6px -2px rgba(37,99,235,0.35) !important;
}
.header__cta.btn.btn--primary:hover {
  background: #1d4ed8 !important;
  box-shadow: 0 12px 26px -10px rgba(37,99,235,0.6), 0 3px 8px -2px rgba(37,99,235,0.4) !important;
  transform: translateY(-1px);
}

/* Mobile toggle bars — flip to dark */
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  background: #0f172a !important;
}
.mobile-toggle { color: #0f172a !important; }

/* Mega menu — subtle soft shadow suits the light chrome */
.mega-menu {
  box-shadow: 0 30px 60px -25px rgba(15,23,42,0.20),
              0 8px 20px -10px rgba(15,23,42,0.08) !important;
  border: 1px solid rgba(15,23,42,0.06) !important;
}

/* When a dark hero follows (legacy pages), revert to dark chrome */
body:has(.hero:not(.hero--new)) .header {
  background: linear-gradient(180deg, rgba(8,12,36,0.72) 0%, rgba(8,12,36,0.35) 100%) !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
}
body:has(.hero:not(.hero--new)) .header__nav-link { color: rgba(255,255,255,0.78) !important; }
body:has(.hero:not(.hero--new)) .header__nav-link:hover,
body:has(.hero:not(.hero--new)) .header__nav-link.active { color: #ffffff !important; background: rgba(255,255,255,0.06) !important; }
body:has(.hero:not(.hero--new)) .header__logo img { filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35)) !important; }
body:has(.hero:not(.hero--new)) .mobile-toggle span,
body:has(.hero:not(.hero--new)) .mobile-toggle::before,
body:has(.hero:not(.hero--new)) .mobile-toggle::after { background: #ffffff !important; }

/* ============================================================
   WHY NUBEVEST SECTION — matches design mockup
   ============================================================ */
.why-section {
  position: relative;
  padding: 96px 0 100px;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 55%, #f8faff 100%);
  overflow: hidden;
}
.why-section__dots {
  position: absolute;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(99,102,241,0.28) 1.5px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
  pointer-events: none;
}
.why-section__dots--l { top: 90px; left: 40px; }
.why-section__dots--r { top: 90px; right: 40px; }

.why-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.why-head__kicker { margin: 0 auto 22px; }
.why-head__title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px;
}
.why-head__title-grad {
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 55%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.why-head__lead {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.why-card {
  --c: #2563eb;
  --c-soft: rgba(37,99,235,0.10);
  --c-blob: rgba(37,99,235,0.12);
  position: relative;
  padding: 26px 26px 28px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  box-shadow: 0 12px 32px -22px rgba(15,23,42,0.12);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(15,23,42,0.22), 0 6px 14px -8px rgba(15,23,42,0.08);
  border-color: color-mix(in srgb, var(--c) 22%, #eef1f5);
}
.why-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.why-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--c-soft);
  color: var(--c);
  transition: transform 0.35s ease, background 0.35s ease;
}
.why-card:hover .why-card__icon {
  transform: rotate(-6deg) scale(1.08);
  background: color-mix(in srgb, var(--c) 18%, #ffffff);
}
.why-card__num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c);
  letter-spacing: -0.02em;
  opacity: 0.85;
}
.why-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.why-card__rule {
  display: block;
  width: 40px; height: 3px;
  border-radius: 999px;
  background: var(--c);
  margin: 0 0 14px;
  transition: width 0.35s ease;
}
.why-card:hover .why-card__rule { width: 64px; }
.why-card__desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  max-width: 92%;
}
.why-card__blob {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 150px; height: 110px;
  background: var(--c-blob);
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  filter: blur(2px);
  opacity: 0.55;
  z-index: -1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.why-card:hover .why-card__blob {
  transform: translate(-8px, -6px) scale(1.05);
  opacity: 0.8;
}

/* Color variants */
.why-card--blue   { --c: #2563eb; --c-soft: rgba(37,99,235,0.10);  --c-blob: rgba(96,165,250,0.22); }
.why-card--purple { --c: #7c3aed; --c-soft: rgba(124,58,237,0.10); --c-blob: rgba(167,139,250,0.22); }
.why-card--pink   { --c: #ec4899; --c-soft: rgba(236,72,153,0.10); --c-blob: rgba(244,114,182,0.22); }
.why-card--amber  { --c: #f59e0b; --c-soft: rgba(245,158,11,0.12); --c-blob: rgba(251,191,36,0.24); }
.why-card--green  { --c: #10b981; --c-soft: rgba(16,185,129,0.10); --c-blob: rgba(52,211,153,0.22); }
.why-card--teal   { --c: #14b8a6; --c-soft: rgba(20,184,166,0.10); --c-blob: rgba(45,212,191,0.22); }

/* Entrance stagger */
.why-grid .why-card {
  opacity: 0;
  transform: translateY(24px);
  animation: whyRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.why-grid .why-card:nth-child(1) { animation-delay: 0.05s; }
.why-grid .why-card:nth-child(2) { animation-delay: 0.15s; }
.why-grid .why-card:nth-child(3) { animation-delay: 0.25s; }
.why-grid .why-card:nth-child(4) { animation-delay: 0.35s; }
.why-grid .why-card:nth-child(5) { animation-delay: 0.45s; }
.why-grid .why-card:nth-child(6) { animation-delay: 0.55s; }
@keyframes whyRise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-section__dots { display: none; }
}
@media (max-width: 640px) {
  .why-section { padding: 72px 0 80px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-head__title { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .why-card, .why-card *, .why-grid .why-card { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HOME PAGE — EQUAL SECTION GAPS
   Every section on index.php gets the same vertical rhythm.
   ============================================================ */
.partner-section,
.solutions-section,
.outcomes-section,
.process-section,
.industries-section,
.platforms-section,
.why-section,
.cta-band {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .partner-section,
  .solutions-section,
  .outcomes-section,
  .process-section,
  .industries-section,
  .platforms-section,
  .why-section,
  .cta-band {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

/* ============================================================
   FOOTER — REBUILT to match design mockup
   ============================================================ */

/* Final CTA banner (dark rounded card, sits above the footer) */
.fcta {
  background: #0b1230;
  padding: 40px 0 0;
}
.fcta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
  background: linear-gradient(135deg, #0f1a3d 0%, #0b1230 100%);
  border: 1px solid rgba(96,165,250,0.14);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.fcta__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(96,165,250,0.18), transparent 55%);
  pointer-events: none;
}
.fcta__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(96,165,250,0.14);
  border: 1px solid rgba(96,165,250,0.3);
  display: grid; place-items: center;
  flex-shrink: 0;
  z-index: 1;
}
.fcta__text { z-index: 1; }
.fcta__title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.fcta__title-grad {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.fcta__sub { color: #94a3b8; font-size: 0.9rem; margin: 0; line-height: 1.5; }
.fcta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px -10px rgba(59,130,246,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1;
  flex-shrink: 0;
}
.fcta__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(59,130,246,0.75); }

/* Footer main */
.footer--new {
  background: #0b1230 !important;
  padding: 30px 0 22px !important;
  color: #94a3b8;
}
.footer--new .footer__top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding: 24px 0 32px;
}
.footer--new .footer__brand { max-width: 340px; }
.footer--new .footer__logo img { height: 40px; width: auto; }
.footer--new .footer__desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 14px 0 22px;
}

.footer__stay {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer__stay-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.20);
  display: grid; place-items: center;
}
.footer__stay-title { color: #ffffff; font-weight: 800; font-size: 0.95rem; }
.footer__stay-sub { color: #94a3b8; font-size: 0.78rem; margin-top: 3px; line-height: 1.5; }

.footer__news {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.footer__news-input {
  background: transparent;
  border: 0;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.86rem;
  outline: none;
  width: 100%;
}
.footer__news-input::placeholder { color: #64748b; }
.footer__news-btn {
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__news-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(59,130,246,0.55); }

.footer--new .footer__heading {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.footer--new .footer__col .footer__heading {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.footer--new .footer__col .footer__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 42px; height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #a78bfa);
}
.footer--new .footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer--new .footer__links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer--new .footer__links a svg { width: 16px; height: 16px; flex-shrink: 0; color: #60a5fa; opacity: 0.9; }
.footer--new .footer__links a:hover { color: #ffffff; transform: translateX(3px); padding-left: 0; }

.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-row {
  display: inline-flex; align-items: center; gap: 12px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer__contact-row:hover { color: #ffffff; }
.footer__contact-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.footer__contact-icon--blue   { background: rgba(96,165,250,0.14); border: 1px solid rgba(96,165,250,0.24); }
.footer__contact-icon--purple { background: rgba(167,139,250,0.14); border: 1px solid rgba(167,139,250,0.24); }
.footer__contact-icon--pink   { background: rgba(244,114,182,0.14); border: 1px solid rgba(244,114,182,0.24); }

/* Trust bar */
.footer__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px 26px;
  margin: 6px 0 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}
.footer__trust-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.footer__trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.footer__trust-icon--blue   { background: rgba(96,165,250,0.14); }
.footer__trust-icon--green  { background: rgba(52,211,153,0.14); }
.footer__trust-icon--purple { background: rgba(167,139,250,0.14); }
.footer__trust-icon--amber  { background: rgba(251,191,36,0.14); }
.footer__trust-title { color: #ffffff; font-weight: 800; font-size: 0.92rem; }
.footer__trust-sub { color: #94a3b8; font-size: 0.78rem; margin-top: 3px; line-height: 1.5; }

/* Bottom row */
.footer--new .footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 20px;
  color: #94a3b8;
  font-size: 0.82rem;
}
.footer--new .footer__bottom p { margin: 0; }
.footer--new .footer__legal { justify-self: center; display: inline-flex; align-items: center; gap: 14px; }
.footer--new .footer__legal a { color: #94a3b8; font-size: 0.82rem; text-decoration: none; transition: color 0.2s ease; }
.footer--new .footer__legal a:hover { color: #ffffff; padding-left: 0; }
.footer__legal-sep { color: #334155; }
.footer__social { justify-self: end; display: inline-flex; gap: 10px; }
.footer__social-a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: #cbd5e1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer__social-a:hover {
  color: #ffffff;
  border-color: rgba(96,165,250,0.5);
  background: rgba(96,165,250,0.12);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer--new .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fcta__inner { grid-template-columns: 1fr; text-align: center; }
  .fcta__icon { margin: 0 auto; }
  .fcta__btn { justify-content: center; }
  .footer--new .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__trust { grid-template-columns: 1fr; }
  .footer--new .footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .footer--new .footer__legal { justify-self: center; }
  .footer__social { justify-self: center; }
}

/* ============================================================
   FOOTER — MISSING BORDER FIX
   ============================================================ */
.fcta__inner {
  border: 1px solid rgba(96,165,250,0.28) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.footer__trust {
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.03) !important;
}
.footer__trust-item {
  padding: 4px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-right: 22px;
}
.footer__trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer__stay {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.footer__news {
  border: 1px solid rgba(96,165,250,0.22) !important;
  background: rgba(255,255,255,0.03) !important;
}

.footer--new .footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  padding-top: 22px !important;
}

@media (max-width: 1024px) {
  .footer__trust-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 768px) {
  .footer__trust-item { border-right: 0; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 14px; }
  .footer__trust-item:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ============================================================
   FOOTER TRUST — INDIVIDUAL BORDERED CARDS (per mockup)
   ============================================================ */
.footer__trust {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  gap: 16px !important;
}
.footer__trust-item {
  padding: 18px 20px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.footer__trust-item:last-child { border-right: 1px solid rgba(255,255,255,0.10) !important; padding-right: 20px !important; }
.footer__trust-item:hover {
  border-color: rgba(96,165,250,0.35) !important;
  background: rgba(96,165,250,0.05);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer__trust-item { border-bottom: 1px solid rgba(255,255,255,0.10) !important; padding-bottom: 18px !important; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero__container { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important; }
.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-stat {
  --c: #2563eb; --c-soft: rgba(37,99,235,0.10);
  position: relative;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  box-shadow: 0 20px 40px -25px rgba(15,23,42,0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -25px rgba(15,23,42,0.22); }
.about-stat::before {
  content: '';
  position: absolute; inset: auto -30px -30px auto;
  width: 120px; height: 120px;
  background: var(--c-soft);
  border-radius: 50%;
  filter: blur(6px);
}
.about-stat__num {
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #a78bfa));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.about-stat__label { color: #64748b; font-size: 0.85rem; font-weight: 600; position: relative; }
.about-stat--blue   { --c: #2563eb; --c-soft: rgba(37,99,235,0.12); }
.about-stat--purple { --c: #7c3aed; --c-soft: rgba(124,58,237,0.12); }
.about-stat--pink   { --c: #ec4899; --c-soft: rgba(236,72,153,0.12); }
.about-stat--green  { --c: #10b981; --c-soft: rgba(16,185,129,0.12); }

/* Common bits */
.about-grad {
  background: linear-gradient(90deg, #3b82f6, #6366f1 60%, #8b5cf6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.about-rule {
  display: block; width: 64px; height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin-top: 18px;
}
.about-rule--center { margin: 22px auto; }

/* Our Story */
.about-story {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}
.about-story__grid {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 60px; align-items: start;
}
.about-story__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.about-story__body {
  padding: 32px 30px;
  background: #fff; border: 1px solid #eef1f5; border-radius: 20px;
  box-shadow: 0 24px 50px -30px rgba(15,23,42,0.15);
}
.about-story__body p { color: #475569; line-height: 1.75; margin: 0 0 14px; }
.about-story__body p:last-child { margin-bottom: 0; }

/* Our Model */
.about-model { background: #ffffff; }
.why-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-model__note {
  text-align: center;
  max-width: 780px;
  margin: 40px auto 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

/* What we do — steps */
.about-do { background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%); }
.about-do__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
  position: relative;
}
.about-do__grid::before {
  content: '';
  position: absolute;
  top: 60px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c7d2fe 0 8px, transparent 8px 16px);
  z-index: 0;
}
.about-step {
  --c: #2563eb;
  position: relative;
  padding: 26px 22px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  box-shadow: 0 16px 34px -25px rgba(15,23,42,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}
.about-step:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 25%, #eef1f5); box-shadow: 0 26px 50px -25px rgba(15,23,42,0.22); }
.about-step__num {
  position: absolute; top: 16px; right: 20px;
  font-size: 0.82rem; font-weight: 800; color: var(--c);
  letter-spacing: 0.06em;
}
.about-step__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(37,99,235,0.10); color: var(--c);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.about-step:hover .about-step__icon { transform: rotate(-6deg) scale(1.06); }
.about-step__title { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.about-step__desc { color: #64748b; font-size: 0.88rem; line-height: 1.65; margin: 0; }
.about-step__icon--blue   { --c: #2563eb; background: rgba(37,99,235,0.10); }
.about-step__icon--purple { --c: #7c3aed; background: rgba(124,58,237,0.10); }
.about-step__icon--green  { --c: #10b981; background: rgba(16,185,129,0.10); }
.about-step__icon--amber  { --c: #f59e0b; background: rgba(245,158,11,0.12); }
.about-step:nth-child(1) { --c: #2563eb; } .about-step:nth-child(2) { --c: #7c3aed; }
.about-step:nth-child(3) { --c: #10b981; } .about-step:nth-child(4) { --c: #f59e0b; }

/* Purpose */
.about-purpose { background: linear-gradient(180deg, #eef2ff 0%, #f6f8fb 100%); }
.about-purpose__card {
  max-width: 820px; margin: 0 auto;
  padding: 56px 48px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 24px;
  box-shadow: 0 30px 70px -30px rgba(15,23,42,0.20);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-purpose__card::before {
  content: '';
  position: absolute; inset: -1px;
  padding: 1px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(59,130,246,0.35), transparent 40%, rgba(139,92,246,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.about-purpose__kicker { margin: 0 auto 22px; }
.about-purpose__quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem; line-height: 0.6;
  color: #3b82f6; opacity: 0.35;
  margin-bottom: -10px;
}
.about-purpose__quote {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600; color: #0f172a;
  line-height: 1.55; letter-spacing: -0.01em;
  max-width: 640px; margin: 0 auto;
  font-style: italic;
}
.about-purpose__by { color: #64748b; font-size: 0.9rem; font-weight: 600; margin: 0; }

/* Principles */
.about-principles { background: #ffffff; }
.about-principles__grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px;
}
.about-principle {
  --c: #2563eb; --c-soft: rgba(37,99,235,0.10);
  position: relative;
  padding: 26px 20px 24px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(15,23,42,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.about-principle::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c);
  border-radius: 4px 0 0 4px;
}
.about-principle:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 20%, #eef1f5); box-shadow: 0 26px 50px -25px rgba(15,23,42,0.22); }
.about-principle__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--c-soft); color: var(--c);
  font-weight: 800; font-size: 0.82rem;
  margin-bottom: 14px;
}
.about-principle h4 { font-size: 1rem; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.about-principle p { color: #64748b; font-size: 0.86rem; line-height: 1.6; margin: 0; }
.about-principle--blue   { --c: #2563eb; --c-soft: rgba(37,99,235,0.10); }
.about-principle--purple { --c: #7c3aed; --c-soft: rgba(124,58,237,0.10); }
.about-principle--pink   { --c: #ec4899; --c-soft: rgba(236,72,153,0.10); }
.about-principle--amber  { --c: #f59e0b; --c-soft: rgba(245,158,11,0.12); }
.about-principle--green  { --c: #10b981; --c-soft: rgba(16,185,129,0.10); }

/* Where we work */
.about-where { background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%); }
.about-where__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.about-where__desc { color: #475569; line-height: 1.75; margin: 20px 0 0; max-width: 480px; }
.about-where__cards { display: flex; flex-direction: column; gap: 14px; }
.about-loc {
  --c: #2563eb;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: #ffffff; border: 1px solid #eef1f5; border-radius: 16px;
  box-shadow: 0 12px 28px -22px rgba(15,23,42,0.14);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-loc:hover { transform: translateX(6px); border-color: color-mix(in srgb, var(--c) 22%, #eef1f5); box-shadow: 0 20px 40px -22px rgba(15,23,42,0.20); }
.about-loc__flag { border-radius: 6px; overflow: hidden; box-shadow: 0 2px 6px rgba(15,23,42,0.15); }
.about-loc__label { color: #94a3b8; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-loc__place { color: #0f172a; font-size: 1.05rem; font-weight: 800; margin-top: 3px; }
.about-loc__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c) 20%, transparent);
  animation: livePulse 2s ease-in-out infinite;
}
.about-loc--blue   { --c: #2563eb; }
.about-loc--purple { --c: #7c3aed; }
.about-loc--amber  { --c: #f59e0b; }

/* Leadership */
.about-lead { background: #ffffff; }
.about-lead__card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
  padding: 44px;
  background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 60%, #fef3f8 100%);
  border: 1px solid #eef1f5; border-radius: 24px;
  box-shadow: 0 30px 70px -30px rgba(15,23,42,0.20);
  position: relative;
  overflow: hidden;
}
.about-lead__card::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%);
  pointer-events: none;
}
.about-lead__profile {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: flex-start;
  position: relative;
}
.about-lead__avatar {
  width: 96px; height: 96px; border-radius: 24px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff; font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em;
  box-shadow: 0 16px 32px -12px rgba(59,130,246,0.55);
  flex-shrink: 0;
}
.about-lead__name { color: #0f172a; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; }
.about-lead__role { color: #3b82f6; font-weight: 700; font-size: 0.9rem; margin-top: 3px; }
.about-lead__bio { color: #475569; line-height: 1.75; margin: 14px 0 16px; max-width: 560px; }
.about-lead__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-lead__tags span {
  font-size: 0.78rem; font-weight: 700; color: #475569;
  padding: 6px 12px; border: 1px solid #e2e8f0; border-radius: 999px;
  background: #ffffff;
}

/* Equal padding for about sections */
.about-story, .about-model, .about-do, .about-purpose,
.about-principles, .about-where, .about-lead {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

@media (max-width: 1024px) {
  .about-hero__container { grid-template-columns: 1fr !important; }
  .about-story__grid, .about-where__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-do__grid { grid-template-columns: repeat(2, 1fr); }
  .about-do__grid::before { display: none; }
  .about-principles__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid--3 { grid-template-columns: 1fr; }
  .about-lead__card { grid-template-columns: 1fr; padding: 28px; }
  .about-lead__profile { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-hero__stats { grid-template-columns: 1fr; }
  .about-do__grid { grid-template-columns: 1fr; }
  .about-principles__grid { grid-template-columns: 1fr; }
  .about-story, .about-model, .about-do, .about-purpose,
  .about-principles, .about-where, .about-lead { padding-top: 64px !important; padding-bottom: 64px !important; }
}

/* ============================================================
   ABOUT PAGE v2 — matches new mockup
   ============================================================ */
.ab-hero {
  padding: calc(var(--header-height) + 40px) 0 60px;
  background: #ffffff;
}
.ab-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ab-hero__kicker { margin-bottom: 18px; }
.ab-hero__title {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 18px;
}
.ab-hero__lead { color: #64748b; font-size: 0.98rem; line-height: 1.75; margin: 0 0 24px; max-width: 520px; }
.ab-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.ab-hero__right { position: relative; }
.ab-hero__dots {
  position: absolute;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(148,163,184,0.4) 1.4px, transparent 2px);
  background-size: 14px 14px;
}
.ab-hero__dots--tl { top: -14px; left: -14px; }
.ab-hero__dots--br { bottom: -14px; right: -14px; }
.ab-hero__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(15,23,42,0.35);
}
.ab-hero__image svg { display: block; width: 100%; height: 320px; }
.ab-hero__card {
  position: absolute;
  right: 20px; top: 30px;
  min-width: 220px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef1f5;
  box-shadow: 0 16px 32px -12px rgba(15,23,42,0.28);
  display: flex; flex-direction: column; gap: 14px;
}
.ab-hero__card-row { display: flex; align-items: center; gap: 12px; }
.ab-loc-pin {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.ab-loc-pin--blue { background: #dbeafe; }
.ab-loc-pin--amber { background: #fef3c7; }
.ab-loc-pin--green { background: #d1fae5; }
.ab-hero__card-title { font-weight: 800; color: #0f172a; font-size: 0.86rem; }
.ab-hero__card-sub { color: #94a3b8; font-size: 0.72rem; margin-top: 2px; }

/* Section wrappers */
.ab-model, .ab-do, .ab-tri, .ab-cta { padding: 30px 0; background: #ffffff; }
.ab-panel {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 20px 40px -30px rgba(15,23,42,0.10);
}
.ab-panel__title {
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.ab-panel__title--sm { font-size: 1.15rem; margin-bottom: 6px; }
.ab-underline {
  display: block;
  width: 60px; height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #a78bfa);
  margin-bottom: 18px;
}

/* Model grid */
.ab-model__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ab-model__card {
  padding: 24px 22px;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ab-model__card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(15,23,42,0.18); border-color: #dbeafe; }
.ab-model__card--accent { background: #f5f3ff; border-color: #e9e5ff; }
.ab-model__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.ab-model__icon--blue { background: #dbeafe; }
.ab-model__icon--green { background: #d1fae5; }
.ab-model__icon--purple { background: #ede9fe; }
.ab-model__h { color: #0f172a; font-weight: 800; font-size: 1.02rem; margin: 0 0 8px; }
.ab-model__card p { color: #64748b; font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* What we do */
.ab-do__flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.ab-do__step {
  flex: 1;
  min-width: 0;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}
.ab-do__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.ab-do__icon--blue { background: #dbeafe; }
.ab-do__icon--green { background: #d1fae5; }
.ab-do__icon--amber { background: #fef3c7; }
.ab-do__title { font-weight: 800; color: #0f172a; font-size: 1rem; margin-bottom: 8px; }
.ab-do__step p { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin: 0; }
.ab-do__arrow { flex-shrink: 0; margin-top: 22px; opacity: 0.9; }

/* Tri-column */
.ab-tri__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.ab-tri__col { display: flex; flex-direction: column; gap: 20px; }
.ab-purpose__text { color: #64748b; font-size: 0.9rem; line-height: 1.7; margin: 0 0 10px; }
.ab-purpose__vis { display: block; width: 100%; height: auto; margin-top: 8px; }

.ab-princ__list { display: flex; flex-direction: column; gap: 18px; }
.ab-princ__item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: flex-start; }
.ab-princ__ico { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.ab-princ__ico--blue { background: #dbeafe; }
.ab-princ__ico--green { background: #d1fae5; }
.ab-princ__ico--pink { background: #fce7f3; }
.ab-princ__item h4 { color: #0f172a; font-weight: 800; font-size: 0.95rem; margin: 0 0 4px; }
.ab-princ__item p { color: #64748b; font-size: 0.82rem; line-height: 1.55; margin: 0; }

.ab-where p { color: #64748b; font-size: 0.88rem; line-height: 1.65; margin: 0 0 14px; }
.ab-where__map { background: #f6f8ff; border-radius: 12px; padding: 12px; }
.ab-lead__row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: flex-end; }
.ab-lead__bio { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin: 0; }
.ab-lead__avatar { text-align: center; }
.ab-lead__avatar svg { display: block; border-radius: 10px; overflow: hidden; }
.ab-lead__cap { margin-top: 6px; }
.ab-lead__name { color: #0f172a; font-weight: 800; font-size: 0.88rem; }
.ab-lead__role { color: #7c3aed; font-size: 0.72rem; font-weight: 700; }

/* CTA bottom */
.ab-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: #f5f3ff;
  border: 1px solid #e9e5ff;
  border-radius: 16px;
}
.ab-cta__icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: #ede9fe;
  flex-shrink: 0;
}
.ab-cta__text h3 { color: #0f172a; font-size: 1.05rem; font-weight: 800; margin: 0 0 4px; letter-spacing: -0.01em; }
.ab-cta__text p { color: #64748b; font-size: 0.85rem; margin: 0; }
.ab-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: #7c3aed;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.ab-cta__btn:hover { background: #6d28d9; transform: translateY(-1px); }

@media (max-width: 1100px) {
  .ab-hero__container { grid-template-columns: 1fr; }
  .ab-model__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-do__flow { flex-wrap: wrap; }
  .ab-do__arrow { display: none; }
  .ab-do__step { flex: 1 1 40%; }
  .ab-tri__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ab-model__grid { grid-template-columns: 1fr; }
  .ab-do__step { flex: 1 1 100%; }
  .ab-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .ab-cta__icon { margin: 0 auto; }
  .ab-cta__btn { justify-content: center; }
  .ab-hero__card { position: static; margin-top: -60px; margin-inline: auto; }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.ev-hero-visual {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 6px;
}
.ev-hero-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  box-shadow: 0 20px 40px -25px rgba(15,23,42,0.20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-hero-card:hover { transform: translateX(-4px); box-shadow: 0 26px 50px -22px rgba(15,23,42,0.25); }
.ev-hero-card--1 { margin-right: 20px; }
.ev-hero-card--2 { margin-left: 40px; }
.ev-hero-card--3 { margin-right: 10px; }
.ev-hero-card__date {
  display: grid; place-items: center;
  width: 54px; height: 60px; border-radius: 10px;
  background: linear-gradient(180deg, #dbeafe, #93c5fd);
  color: #1e3a8a;
  line-height: 1;
  padding: 6px 0;
}
.ev-hero-card__date--purple { background: linear-gradient(180deg, #ede9fe, #c4b5fd); color: #4c1d95; }
.ev-hero-card__date--amber  { background: linear-gradient(180deg, #fef3c7, #fcd34d); color: #78350f; }
.ev-hero-card__day { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.ev-hero-card__mo  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.ev-hero-card__title { font-weight: 800; color: #0f172a; font-size: 0.92rem; }
.ev-hero-card__meta  { color: #64748b; font-size: 0.76rem; margin-top: 3px; }
.ev-hero-card__badge {
  padding: 5px 10px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
}
.ev-hero-card__badge--live { background: #dcfce7; color: #047857; }
.ev-hero-card__badge--soon { background: #ede9fe; color: #6d28d9; }
.ev-hero-card__badge--open { background: #fef3c7; color: #92400e; }

.ev-list { display: flex; flex-direction: column; gap: 14px; }
.ev-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  background: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ev-item:hover { transform: translateY(-3px); border-color: #dbeafe; box-shadow: 0 20px 40px -25px rgba(15,23,42,0.20); }
.ev-item__date {
  display: grid; place-items: center;
  padding: 14px 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, #dbeafe, #bfdbfe);
  color: #1e3a8a; text-align: center;
}
.ev-item__date--purple { background: linear-gradient(180deg, #ede9fe, #ddd6fe); color: #5b21b6; }
.ev-item__date--amber  { background: linear-gradient(180deg, #fef3c7, #fde68a); color: #92400e; }
.ev-item__day { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.ev-item__mo  { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.ev-item__tag {
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.ev-item__tag--blue   { background: #dbeafe; color: #1d4ed8; }
.ev-item__tag--purple { background: #ede9fe; color: #6d28d9; }
.ev-item__tag--amber  { background: #fef3c7; color: #92400e; }
.ev-item__body h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 6px; letter-spacing: -0.01em; }
.ev-item__body p  { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin: 0 0 10px; max-width: 640px; }
.ev-item__meta { display: flex; flex-wrap: wrap; gap: 14px; color: #64748b; font-size: 0.8rem; }
.ev-item__meta span { display: inline-flex; align-items: center; gap: 6px; }
.ev-item__cta {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  color: #ffffff; font-weight: 700; font-size: 0.86rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.ev-item__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -12px rgba(59,130,246,0.55); }

@media (max-width: 768px) {
  .ev-hero-card--1, .ev-hero-card--2, .ev-hero-card--3 { margin: 0; }
  .ev-item { grid-template-columns: 1fr; }
  .ev-item__cta { justify-self: start; }
}

/* ============================================================
   NDIS PAGE
   ============================================================ */
.nd-hero { position: relative; }
.nd-hero__panel {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(15,23,42,0.25);
}
.nd-hero__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.nd-hero__title-row { display: inline-flex; align-items: center; gap: 10px; }
.nd-hero__logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: #dbeafe;
  display: grid; place-items: center;
}
.nd-hero__title-text { font-weight: 800; color: #0f172a; font-size: 0.95rem; }
.nd-hero__badge {
  padding: 4px 10px; border-radius: 999px;
  background: #d1fae5; color: #047857;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
}
.nd-hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px; margin-bottom: 14px;
  background: #f8fafc; border-radius: 12px;
}
.nd-hero__stat-label { font-size: 0.62rem; font-weight: 700; color: #94a3b8; letter-spacing: 0.1em; text-transform: uppercase; }
.nd-hero__stat-value { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.nd-hero__rows { display: flex; flex-direction: column; gap: 8px; }
.nd-hero__row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 12px;
  background: #f8fafc; border-radius: 10px;
}
.nd-hero__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.78rem;
}
.nd-hero__row-title { font-weight: 800; color: #0f172a; font-size: 0.85rem; }
.nd-hero__row-sub   { color: #64748b; font-size: 0.72rem; margin-top: 2px; }
.nd-hero__pill { padding: 4px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; }
.nd-hero__pill--green { background: #d1fae5; color: #047857; }
.nd-hero__pill--blue  { background: #dbeafe; color: #1d4ed8; }
.nd-hero__pill--amber { background: #fef3c7; color: #92400e; }
.nd-hero__float {
  position: absolute; bottom: -18px; right: -14px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 12px;
  box-shadow: 0 18px 36px -12px rgba(16,185,129,0.35);
}
.nd-hero__float-ico { width: 30px; height: 30px; border-radius: 50%; background: #d1fae5; display: grid; place-items: center; }
.nd-hero__float-t { font-weight: 800; color: #0f172a; font-size: 0.82rem; }
.nd-hero__float-s { color: #64748b; font-size: 0.7rem; margin-top: 2px; }

.nd-out {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.nd-out__item {
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nd-out__item:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(15,23,42,0.18); }
.nd-out__num { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.nd-out__label { font-weight: 800; color: #0f172a; font-size: 0.92rem; margin-bottom: 6px; }
.nd-out__item p { color: #64748b; font-size: 0.82rem; line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
  .nd-out { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .nd-out { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE v3 — polished
   ============================================================ */
.au-h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.au-grad {
  background: linear-gradient(90deg, #3b82f6, #6366f1 55%, #8b5cf6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.au-head { margin-bottom: 40px; max-width: 720px; }
.au-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.au-head .kicker { margin-bottom: 16px; }
.au-head p { color: #64748b; font-size: 1rem; line-height: 1.7; margin: 0; }
.au-head--center .kicker { margin-left: auto; margin-right: auto; }

/* HERO */
.au-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
  overflow: hidden;
  text-align: center;
}
.au-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.au-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent 75%);
}
.au-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.au-hero__blob--1 { width: 420px; height: 420px; top: -80px; left: -60px; background: rgba(99,102,241,0.14); }
.au-hero__blob--2 { width: 380px; height: 380px; bottom: -60px; right: -40px; background: rgba(236,72,153,0.10); }
.au-hero__inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.au-hero__kicker { margin: 0 auto 22px; }
.au-hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #0f172a; line-height: 1.1; margin: 0 0 20px;
}
.au-hero__grad {
  background: linear-gradient(90deg, #3b82f6, #6366f1 50%, #8b5cf6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.au-hero__lead {
  color: #64748b; font-size: 1.1rem; line-height: 1.7;
  margin: 0 auto 32px; max-width: 640px;
}
.au-hero__cta { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 60px; }
.au-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(15,23,42,0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.au-hero__meta-item { display: flex; flex-direction: column; gap: 6px; }
.au-hero__meta-num {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
}
.au-hero__meta-lbl { color: #64748b; font-size: 0.82rem; font-weight: 600; }

/* Story timeline */
.au-story { padding: 96px 0; background: #ffffff; }
.au-story__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.au-story__intro .kicker { margin-bottom: 18px; }
.au-story__lead { color: #64748b; font-size: 1rem; line-height: 1.7; margin: 18px 0 0; }
.au-timeline { position: relative; display: flex; flex-direction: column; gap: 22px; padding-left: 30px; }
.au-timeline::before {
  content: ''; position: absolute;
  top: 8px; bottom: 8px; left: 10px;
  width: 2px;
  background: linear-gradient(180deg, #3b82f6, #a78bfa, #ec4899);
  border-radius: 2px;
}
.au-timeline__item { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.au-timeline__item::before {
  content: '';
  position: absolute; left: -26px; top: 10px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ffffff; border: 3px solid #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.au-timeline__item--now::before { background: #10b981; border-color: #10b981; box-shadow: 0 0 0 5px rgba(16,185,129,0.22); animation: livePulse 2s ease-in-out infinite; }
.au-timeline__year {
  font-weight: 800; color: #3b82f6; letter-spacing: 0.02em; font-size: 0.95rem;
  padding-top: 4px;
}
.au-timeline__item--now .au-timeline__year { color: #10b981; }
.au-timeline__body {
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.au-timeline__item:hover .au-timeline__body { transform: translateX(4px); background: #ffffff; border-color: #dbeafe; }
.au-timeline__body h4 { color: #0f172a; font-size: 1rem; font-weight: 800; margin: 0 0 4px; }
.au-timeline__body p { color: #64748b; font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* Mission Vision Values */
.au-mv { padding: 96px 0; background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%); }
.au-mv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.au-mv__card {
  --c: #2563eb;
  position: relative;
  padding: 34px 28px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 20px 40px -30px rgba(15,23,42,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.au-mv__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--c);
  border-radius: 20px 20px 0 0;
}
.au-mv__card:hover { transform: translateY(-6px); box-shadow: 0 32px 60px -25px rgba(15,23,42,0.22); border-color: color-mix(in srgb, var(--c) 22%, #eef1f5); }
.au-mv__card--mission { --c: #2563eb; }
.au-mv__card--vision  { --c: #7c3aed; }
.au-mv__card--values  { --c: #f59e0b; }
.au-mv__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 12%, #ffffff);
  margin-bottom: 18px;
}
.au-mv__label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c);
  margin-bottom: 10px;
}
.au-mv__card h3 { color: #0f172a; font-size: 1.15rem; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.01em; }
.au-mv__card p { color: #64748b; font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* Model */
.au-model { padding: 96px 0; background: #ffffff; }
.au-model__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.au-model__card {
  position: relative;
  padding: 34px 28px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 20px 40px -30px rgba(15,23,42,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.au-model__card:hover { transform: translateY(-6px); box-shadow: 0 32px 60px -25px rgba(15,23,42,0.22); }
.au-model__card--featured {
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  border-color: #ddd6fe;
  box-shadow: 0 30px 60px -25px rgba(124,58,237,0.28);
}
.au-model__num {
  position: absolute; top: 22px; right: 24px;
  font-size: 2.4rem; font-weight: 800;
  color: rgba(59,130,246,0.08); letter-spacing: -0.03em;
  line-height: 1;
}
.au-model__card--featured .au-model__num { color: rgba(124,58,237,0.14); }
.au-model__icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: #dbeafe;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.au-model__icon-wrap--purple { background: #ede9fe; }
.au-model__icon-wrap--green { background: #d1fae5; }
.au-model__card h3 { color: #0f172a; font-size: 1.2rem; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.01em; }
.au-model__card p { color: #64748b; font-size: 0.9rem; line-height: 1.65; margin: 0 0 18px; }
.au-model__list { list-style: none; padding: 0; margin: 0 0 6px; display: flex; flex-direction: column; gap: 10px; }
.au-model__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
}
.au-model__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}
.au-model__ribbon {
  position: absolute; top: 22px; left: -6px;
  padding: 5px 12px; font-size: 0.68rem; font-weight: 800;
  color: #ffffff; background: linear-gradient(90deg, #8b5cf6, #ec4899);
  border-radius: 4px;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 16px -6px rgba(139,92,246,0.45);
}
.au-model__ribbon::before {
  content: ''; position: absolute; left: 0; top: 100%;
  border: 3px solid transparent;
  border-top-color: #5b21b6;
  border-right-color: #5b21b6;
}

/* How we work */
.au-how { padding: 96px 0; background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%); }
.au-how__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}
.au-how__step {
  --c: #2563eb;
  position: relative;
  padding: 32px 26px 28px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  box-shadow: 0 16px 36px -25px rgba(15,23,42,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.au-how__step:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--c) 22%, #eef1f5); box-shadow: 0 30px 60px -25px rgba(15,23,42,0.22); }
.au-how__step--1 { --c: #2563eb; }
.au-how__step--2 { --c: #7c3aed; }
.au-how__step--3 { --c: #f59e0b; }
.au-how__step--4 { --c: #10b981; }
.au-how__step-num {
  position: absolute; top: 20px; right: 22px;
  font-size: 0.78rem; font-weight: 800;
  color: var(--c); letter-spacing: 0.1em;
  background: color-mix(in srgb, var(--c) 12%, #ffffff);
  padding: 4px 10px; border-radius: 999px;
}
.au-how__step-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: color-mix(in srgb, var(--c) 12%, #ffffff);
  color: var(--c);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.au-how__step:hover .au-how__step-icon { transform: rotate(-6deg) scale(1.08); }
.au-how__step h4 { color: #0f172a; font-size: 1.05rem; font-weight: 800; margin: 0 0 8px; }
.au-how__step p { color: #64748b; font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* Global presence */
.au-global { padding: 96px 0; background: #ffffff; }
.au-global__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.au-global__intro p { color: #64748b; font-size: 1rem; line-height: 1.75; margin: 18px 0 26px; max-width: 460px; }
.au-global__stats { display: flex; gap: 32px; }
.au-global__stat-n { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; color: #0f172a; }
.au-global__stat-l { font-size: 0.78rem; color: #64748b; font-weight: 600; margin-top: 2px; }
.au-global__locations { display: flex; flex-direction: column; gap: 14px; }
.au-loc {
  --c: #2563eb;
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: 22px 26px;
  background: #ffffff;
  border: 1px solid #eef1f5; border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(15,23,42,0.14);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.au-loc:hover { transform: translateX(4px); border-color: color-mix(in srgb, var(--c) 22%, #eef1f5); box-shadow: 0 22px 40px -22px rgba(15,23,42,0.20); }
.au-loc__flag { border-radius: 6px; overflow: hidden; box-shadow: 0 4px 10px rgba(15,23,42,0.15); flex-shrink: 0; }
.au-loc__pin { display: inline-flex; align-items: center; gap: 6px; color: #94a3b8; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.au-loc__place { color: #0f172a; font-size: 1.1rem; font-weight: 800; margin: 4px 0 3px; letter-spacing: -0.01em; }
.au-loc__desc { color: #64748b; font-size: 0.85rem; }
.au-loc--primary { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%); border-color: #dbeafe; }
.au-loc__pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 5px rgba(59,130,246,0.20);
  animation: livePulse 2s ease-in-out infinite;
}

/* Leadership */
.au-lead { padding: 96px 0; background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%); }
.au-lead__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 44px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 24px;
  box-shadow: 0 30px 70px -35px rgba(15,23,42,0.22);
  position: relative;
  overflow: hidden;
  max-width: 1000px; margin: 0 auto;
}
.au-lead__card::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%);
  pointer-events: none;
}
.au-lead__aside { position: relative; text-align: center; }
.au-lead__avatar {
  width: 130px; height: 130px; border-radius: 26px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff; font-weight: 800; font-size: 2.4rem; letter-spacing: -0.02em;
  box-shadow: 0 20px 40px -12px rgba(59,130,246,0.55);
  margin: 0 auto 20px;
}
.au-lead__badges { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.au-lead__badges span {
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  background: #f1f5f9; color: #475569;
}
.au-lead__body { position: relative; }
.au-lead__name { color: #0f172a; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.au-lead__role { color: #3b82f6; font-weight: 700; font-size: 0.95rem; margin: 4px 0 16px; }
.au-lead__body > p { color: #475569; font-size: 0.95rem; line-height: 1.75; margin: 0 0 20px; }
.au-lead__quote {
  position: relative;
  padding: 18px 22px 18px 60px;
  background: #f8faff;
  border-left: 3px solid #3b82f6;
  border-radius: 12px;
  margin-bottom: 20px;
}
.au-lead__q { position: absolute; top: 18px; left: 20px; }
.au-lead__quote p {
  color: #334155; font-size: 0.95rem; font-style: italic; margin: 0; line-height: 1.6;
}
.au-lead__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.au-lead__tags span {
  font-size: 0.78rem; font-weight: 700; color: #475569;
  padding: 6px 12px; border: 1px solid #e2e8f0; border-radius: 999px;
  background: #ffffff;
}

/* CTA */
.au-cta { padding: 96px 0; background: #ffffff; }
.au-cta__card {
  position: relative;
  padding: 60px 48px;
  background: linear-gradient(135deg, #0f1a3d 0%, #1e1b4b 60%, #4c1d95 100%);
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(15,23,42,0.5);
}
.au-cta__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(96,165,250,0.30), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(236,72,153,0.20), transparent 55%);
  pointer-events: none;
}
.au-cta__body { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.au-cta__kicker {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  margin: 0 auto 22px;
}
.au-cta__body h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 14px;
}
.au-cta__body h2 .au-grad {
  background: linear-gradient(90deg, #93c5fd, #c4b5fd, #f9a8d4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.au-cta__body p { color: rgba(255,255,255,0.75); font-size: 1.02rem; margin: 0 0 30px; line-height: 1.65; }
.au-cta__actions { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.au-cta__actions .btn--secondary { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); color: #ffffff; }
.au-cta__actions .btn--secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

/* Reveal entrance for cards */
.au-timeline__item, .au-mv__card, .au-model__card, .au-how__step, .au-loc {
  opacity: 0; transform: translateY(18px);
  animation: auRise 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.au-timeline__item:nth-child(1), .au-mv__card:nth-child(1), .au-model__card:nth-child(1), .au-how__step:nth-child(1), .au-loc:nth-child(1) { animation-delay: 0.05s; }
.au-timeline__item:nth-child(2), .au-mv__card:nth-child(2), .au-model__card:nth-child(2), .au-how__step:nth-child(2), .au-loc:nth-child(2) { animation-delay: 0.15s; }
.au-timeline__item:nth-child(3), .au-mv__card:nth-child(3), .au-model__card:nth-child(3), .au-how__step:nth-child(3), .au-loc:nth-child(3) { animation-delay: 0.25s; }
.au-timeline__item:nth-child(4), .au-how__step:nth-child(4) { animation-delay: 0.35s; }
@keyframes auRise { to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1100px) {
  .au-hero__meta { grid-template-columns: repeat(2, 1fr); }
  .au-story__grid, .au-global__grid { grid-template-columns: 1fr; gap: 40px; }
  .au-mv__grid, .au-model__grid { grid-template-columns: 1fr; }
  .au-how__flow { grid-template-columns: repeat(2, 1fr); }
  .au-lead__card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .au-lead__badges { flex-direction: row; }
}
@media (max-width: 640px) {
  .au-hero { padding: calc(var(--header-height) + 40px) 0 60px; }
  .au-hero__meta { grid-template-columns: 1fr; }
  .au-how__flow { grid-template-columns: 1fr; }
  .au-story, .au-mv, .au-model, .au-how, .au-global, .au-lead, .au-cta { padding: 64px 0; }
  .au-cta__card { padding: 40px 24px; }
}

/* ============================================================
   GLOBAL TYPOGRAPHY REFRESH — Plus Jakarta Sans + Manrope
   Applied site-wide with better rendering + spacing
   ============================================================ */
html, body, .container, main, section, article, aside, header, footer, nav,
p, div, span, li, a, label, input, textarea, select, button {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1, h2, h3, h4, h5, h6,
.hero__title, .why-head__title, .au-h2, .au-hero__title,
.ab-panel__title, .fcta__title, .about-story__title,
.section-header h2, .cta-band h2 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.022em;
  font-feature-settings: 'ss01', 'cv11';
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga';
  letter-spacing: -0.005em;
}
.kicker, .kicker--pill, .footer__heading, .au-mv__label,
.about-loc__label, .about-lead__role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.12em;
}
.btn { font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.005em; font-weight: 700; }

/* ============================================================
   TRUST STRIP — fix icon/text alignment on home hero
   ============================================================ */
.hero--new .trust-strip {
  padding: 20px 20px !important;
  gap: 8px !important;
}
.hero--new .trust-strip__item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  padding: 8px 18px !important;
  min-width: 0;
}
.hero--new .trust-strip__item > div {
  min-width: 0;
  text-align: left;
}
.hero--new .trust-strip__icon {
  flex-shrink: 0 !important;
  width: 42px !important; height: 42px !important;
}
.hero--new .trust-strip__title {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 3px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero--new .trust-strip__sub {
  font-size: 0.76rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
}

@media (max-width: 1024px) {
  .hero--new .trust-strip__title { white-space: normal; }
}

/* ============================================================
   TRUST STRIP — REDESIGNED (clean card layout)
   ============================================================ */
.hero--new .trust-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 48px !important;
  padding: 32px 24px !important;
  background: #ffffff !important;
  border: 1px solid #eef1f5 !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 60px -35px rgba(15,23,42,0.15) !important;
  position: relative;
  overflow: hidden;
}
.hero--new .trust-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 33%, #ec4899 66%, #f59e0b 100%);
  border-radius: 24px 24px 0 0;
}
.hero--new .trust-strip__item {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 8px 24px !important;
  border: 0 !important;
  border-right: 1px solid #f1f5f9 !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: transform 0.3s ease;
}
.hero--new .trust-strip__item:last-child { border-right: 0 !important; }
.hero--new .trust-strip__item:hover { transform: translateY(-3px); }
.hero--new .trust-strip__item > div { text-align: left; }
.hero--new .trust-strip__icon {
  width: 52px !important; height: 52px !important;
  border-radius: 14px !important;
  display: grid; place-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.hero--new .trust-strip__item:hover .trust-strip__icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 12px 26px -12px rgba(15,23,42,0.20);
}
.hero--new .trust-strip__icon--blue   { background: linear-gradient(135deg, #dbeafe, #eff6ff) !important; }
.hero--new .trust-strip__icon--green  { background: linear-gradient(135deg, #d1fae5, #ecfdf5) !important; }
.hero--new .trust-strip__icon--purple { background: linear-gradient(135deg, #ede9fe, #f5f3ff) !important; }
.hero--new .trust-strip__icon--pink   { background: linear-gradient(135deg, #fce7f3, #fdf2f8) !important; }
.hero--new .trust-strip__title {
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 6px !important;
  white-space: normal !important;
}
.hero--new .trust-strip__sub {
  font-size: 0.85rem !important;
  color: #64748b !important;
  line-height: 1.55 !important;
  font-weight: 500;
  max-width: 200px;
}

@media (max-width: 1024px) {
  .hero--new .trust-strip { grid-template-columns: repeat(2, 1fr) !important; row-gap: 22px !important; }
  .hero--new .trust-strip__item { border-right: 0 !important; padding: 0 16px !important; }
  .hero--new .trust-strip__item:nth-child(odd) { border-right: 1px solid #f1f5f9 !important; }
}
@media (max-width: 640px) {
  .hero--new .trust-strip { grid-template-columns: 1fr !important; padding: 24px !important; row-gap: 22px !important; }
  .hero--new .trust-strip__item,
  .hero--new .trust-strip__item:nth-child(odd) { border-right: 0 !important; padding: 0 !important; padding-bottom: 22px !important; border-bottom: 1px solid #f1f5f9 !important; }
  .hero--new .trust-strip__item:last-child { border-bottom: 0 !important; padding-bottom: 0 !important; }
}

/* ============================================================
   VALUES SECTION (replaces old trust-strip) — fresh design
   4 individual pill cards with icon/title/desc in premium look
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
  padding: 0;
}
.values__card {
  --c: #2563eb;
  --c-soft: rgba(37,99,235,0.10);
  --c-glow: rgba(37,99,235,0.30);
  position: relative;
  padding: 28px 26px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 20px 40px -30px rgba(15,23,42,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  isolation: isolate;
}
.values__card::before {
  content: '';
  position: absolute;
  right: -30px; bottom: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--c-soft);
  z-index: -1;
  transition: transform 0.4s ease, background 0.4s ease;
}
.values__card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--c) 22%, #eef1f5);
  box-shadow: 0 32px 60px -25px var(--c-glow), 0 8px 20px -8px rgba(15,23,42,0.08);
}
.values__card:hover::before {
  transform: scale(1.4);
}
.values__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--c-soft);
  margin-bottom: 20px;
  transition: transform 0.35s ease, background 0.35s ease;
}
.values__card:hover .values__icon {
  transform: rotate(-6deg) scale(1.08);
  background: color-mix(in srgb, var(--c) 18%, #ffffff);
}
.values__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.values__desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Color variants */
.values__card--blue   { --c: #2563eb; --c-soft: rgba(37,99,235,0.10);  --c-glow: rgba(37,99,235,0.28); }
.values__card--green  { --c: #10b981; --c-soft: rgba(16,185,129,0.10); --c-glow: rgba(16,185,129,0.28); }
.values__card--purple { --c: #8b5cf6; --c-soft: rgba(139,92,246,0.10); --c-glow: rgba(139,92,246,0.28); }
.values__card--pink   { --c: #ec4899; --c-soft: rgba(236,72,153,0.10); --c-glow: rgba(236,72,153,0.28); }

/* Staggered entrance */
.values .values__card {
  opacity: 0; transform: translateY(20px);
  animation: valRise 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.values .values__card:nth-child(1) { animation-delay: 0.05s; }
.values .values__card:nth-child(2) { animation-delay: 0.15s; }
.values .values__card:nth-child(3) { animation-delay: 0.25s; }
.values .values__card:nth-child(4) { animation-delay: 0.35s; }
@keyframes valRise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   TRUST STRIP — RESTORE ORIGINAL DESIGN
   (overrides recent redesign attempts)
   ============================================================ */
.hero--new .trust-strip {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 40px !important;
  padding: 20px 24px !important;
  background: #ffffff !important;
  border: 1px solid #eef1f5 !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px -25px rgba(15,23,42,0.12) !important;
}
.hero--new .trust-strip::before { display: none !important; content: none !important; }
.hero--new .trust-strip__item {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  flex-direction: row !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 8px 14px !important;
  border: 0 !important;
  border-right: 1px solid #f1f5f9 !important;
  background: transparent !important;
  border-radius: 0 !important;
  transform: none !important;
}
.hero--new .trust-strip__item:last-child { border-right: 0 !important; }
.hero--new .trust-strip__item::before { display: none !important; }
.hero--new .trust-strip__item:hover { transform: none !important; }
.hero--new .trust-strip__icon {
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important;
  background: rgba(37,99,235,0.10) !important;
  display: grid; place-items: center;
  transform: none !important;
  box-shadow: none !important;
}
.hero--new .trust-strip__item:hover .trust-strip__icon { transform: none !important; box-shadow: none !important; }
.hero--new .trust-strip__icon--green  { background: rgba(16,185,129,0.10) !important; }
.hero--new .trust-strip__icon--purple { background: rgba(139,92,246,0.10) !important; }
.hero--new .trust-strip__icon--pink   { background: rgba(236,72,153,0.10) !important; }
.hero--new .trust-strip__title {
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 3px !important;
  white-space: normal !important;
  max-width: none !important;
}
.hero--new .trust-strip__sub {
  font-size: 0.76rem !important;
  color: #64748b !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  max-width: none !important;
}

@media (max-width: 1024px) {
  .hero--new .trust-strip { grid-template-columns: repeat(2, 1fr) !important; row-gap: 12px !important; }
  .hero--new .trust-strip__item:nth-child(2) { border-right: 0 !important; }
  .hero--new .trust-strip__item:nth-child(odd) { border-right: 1px solid #f1f5f9 !important; }
}
@media (max-width: 640px) {
  .hero--new .trust-strip { grid-template-columns: 1fr !important; }
  .hero--new .trust-strip__item,
  .hero--new .trust-strip__item:nth-child(odd) { border-right: 0 !important; }
}

/* ============================================================
   TRUST STRIP — FINAL CLEAN DESIGN
   overrides ALL previous rules
   ============================================================ */
.hero--new .trust-strip,
.hero.hero--new .trust-strip {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 0 !important;
  margin-top: 48px !important;
  padding: 24px !important;
  background: #ffffff !important;
  border: 1px solid #eef1f5 !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 50px -30px rgba(15,23,42,0.15) !important;
  width: 100% !important;
}
.hero--new .trust-strip::before,
.hero.hero--new .trust-strip::before { display: none !important; content: none !important; }

.hero--new .trust-strip__item,
.hero.hero--new .trust-strip__item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  padding: 4px 20px !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid #eef1f5 !important;
  border-radius: 0 !important;
  transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.hero--new .trust-strip__item::before,
.hero.hero--new .trust-strip__item::before { display: none !important; content: none !important; }
.hero--new .trust-strip__item:last-child,
.hero.hero--new .trust-strip__item:last-child { border-right: 0 !important; }
.hero--new .trust-strip__item:hover,
.hero.hero--new .trust-strip__item:hover { transform: none !important; background: transparent !important; }

.hero--new .trust-strip__item > div,
.hero.hero--new .trust-strip__item > div {
  min-width: 0 !important;
  text-align: left !important;
  flex: 1 !important;
}

.hero--new .trust-strip__icon,
.hero.hero--new .trust-strip__icon {
  width: 44px !important; height: 44px !important;
  border-radius: 12px !important;
  display: grid !important; place-items: center !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  transition: transform 0.3s ease !important;
}
.hero--new .trust-strip__item:hover .trust-strip__icon,
.hero.hero--new .trust-strip__item:hover .trust-strip__icon {
  transform: scale(1.08) rotate(-4deg) !important;
}
.hero--new .trust-strip__icon--blue,
.hero.hero--new .trust-strip__icon--blue   { background: rgba(37,99,235,0.10) !important; }
.hero--new .trust-strip__icon--green,
.hero.hero--new .trust-strip__icon--green  { background: rgba(16,185,129,0.10) !important; }
.hero--new .trust-strip__icon--purple,
.hero.hero--new .trust-strip__icon--purple { background: rgba(139,92,246,0.10) !important; }
.hero--new .trust-strip__icon--pink,
.hero.hero--new .trust-strip__icon--pink   { background: rgba(236,72,153,0.10) !important; }

.hero--new .trust-strip__title,
.hero.hero--new .trust-strip__title {
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 4px !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.hero--new .trust-strip__sub,
.hero.hero--new .trust-strip__sub {
  font-size: 0.8rem !important;
  color: #64748b !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .hero--new .trust-strip,
  .hero.hero--new .trust-strip { flex-wrap: wrap !important; }
  .hero--new .trust-strip__item,
  .hero.hero--new .trust-strip__item {
    flex: 1 1 45% !important;
    padding: 12px 16px !important;
    border-right: 1px solid #eef1f5 !important;
    border-bottom: 1px solid #eef1f5 !important;
  }
  .hero--new .trust-strip__item:nth-child(2n),
  .hero.hero--new .trust-strip__item:nth-child(2n) { border-right: 0 !important; }
  .hero--new .trust-strip__item:nth-last-child(-n+2),
  .hero.hero--new .trust-strip__item:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .hero--new .trust-strip__title,
  .hero.hero--new .trust-strip__title { white-space: normal !important; }
}
@media (max-width: 560px) {
  .hero--new .trust-strip__item,
  .hero.hero--new .trust-strip__item {
    flex: 1 1 100% !important;
    border-right: 0 !important;
  }
  .hero--new .trust-strip__item:nth-child(n+1):not(:last-child),
  .hero.hero--new .trust-strip__item:nth-child(n+1):not(:last-child) {
    border-bottom: 1px solid #eef1f5 !important;
  }
}

/* ============================================================
   VSTRIP — brand new class, no conflicts
   Icon left, title + description stacked to its right
   ============================================================ */
.vstrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  padding: 26px 20px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  box-shadow: 0 24px 50px -30px rgba(15,23,42,0.15);
}
.vstrip__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 22px;
  border-right: 1px solid #eef1f5;
  min-width: 0;
}
.vstrip__item:last-child { border-right: 0; }
.vstrip__ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex: 0 0 42px;
  transition: transform 0.3s ease;
}
.vstrip__item:hover .vstrip__ico { transform: scale(1.08) rotate(-4deg); }
.vstrip__ico--blue   { background: rgba(37,99,235,0.10); }
.vstrip__ico--green  { background: rgba(16,185,129,0.10); }
.vstrip__ico--purple { background: rgba(139,92,246,0.10); }
.vstrip__ico--pink   { background: rgba(236,72,153,0.10); }
.vstrip__body { min-width: 0; flex: 1 1 auto; }
.vstrip__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.vstrip__sub {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .vstrip { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .vstrip__item { border-right: 0; padding: 0 16px; }
  .vstrip__item:nth-child(odd) { border-right: 1px solid #eef1f5; }
}
@media (max-width: 560px) {
  .vstrip { grid-template-columns: 1fr; row-gap: 20px; }
  .vstrip__item, .vstrip__item:nth-child(odd) { border-right: 0; padding: 0; padding-bottom: 20px; border-bottom: 1px solid #eef1f5; }
  .vstrip__item:last-child { border-bottom: 0; padding-bottom: 0; }
}


/* =========================================================
   COMPREHENSIVE MOBILE OPTIMIZATION OVERRIDES
   Added for full responsive coverage across all pages.
   ========================================================= */

/* Prevent horizontal overflow globally */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; height: auto; }
table { max-width: 100%; }

/* Tablet & below (≤1024px) --------------------------------- */
@media (max-width: 1024px) {
  :root {
    --fs-5xl: 3rem;
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
    --fs-2xl: 1.65rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
    --header-height: 72px;
  }
  .container { padding: 0 var(--space-lg); }

  /* Hide desktop nav, show mobile toggle */
  .header__nav { display: none !important; }
  .mobile-toggle { display: flex !important; }

  /* Universal grid collapse - two columns */
  .grid-2, .grid-3, .grid-4,
  .services-grid, .features-grid, .cards-grid,
  .solutions-grid, .industries-grid, .products-grid,
  .stats-grid, .team-grid, .work-grid, .portfolio-grid,
  .footer__grid, .footer-grid, .pillars, .steps,
  .hero__container, .split, .split-2, .two-col, .cols-2, .cols-3, .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--space-lg) !important;
  }

  /* Hero visual repositioning - force single column, stack children */
  .hero__container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl) !important;
  }
  .hero__container > .hero__content,
  .hero__container > .hero__visual-new,
  .hero__container > .hero__visual,
  .hero__container > .trust-strip {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .hero__visual-new, .hero__visual { margin-top: var(--space-2xl); }
  .hero__content { max-width: 100% !important; min-width: 0; }
  .hero__title { word-break: normal !important; overflow-wrap: normal !important; white-space: normal !important; }
  .hero__card--main { margin: 0 auto; max-width: 100%; }

  /* Sections padding tighter */
  section { padding-left: 0; padding-right: 0; }

  /* Mega menu hidden on mobile */
  .mega-menu { display: none !important; }
}

/* Mobile phones (≤768px) ---------------------------------- */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.25rem;
    --fs-4xl: 1.9rem;
    --fs-3xl: 1.6rem;
    --fs-2xl: 1.35rem;
    --fs-xl: 1.2rem;
    --space-5xl: 3.5rem;
    --space-4xl: 3rem;
    --space-3xl: 2.25rem;
    --space-2xl: 1.75rem;
  }
  body { font-size: 15px; line-height: 1.65; }
  .container { padding: 0 var(--space-md); }

  h1 { font-size: var(--fs-4xl); line-height: 1.15; }
  h2 { font-size: var(--fs-3xl); line-height: 1.2; }
  h3 { font-size: var(--fs-2xl); line-height: 1.25; }
  h4 { font-size: var(--fs-xl); }

  /* Collapse ALL multi-column grids to single column */
  .grid-2, .grid-3, .grid-4,
  .services-grid, .features-grid, .cards-grid,
  .solutions-grid, .industries-grid, .products-grid,
  .stats-grid, .team-grid, .work-grid, .portfolio-grid,
  .pillars, .steps, .split, .split-2,
  .two-col, .cols-2, .cols-3, .cols-4,
  .value-grid, .benefit-grid, .icon-grid,
  .cta-grid, .logo-grid, .plan-grid, .pricing-grid,
  .testimonial-grid, .review-grid, .blog-grid,
  .contact-grid, .form-grid, .about-grid,
  .footer__grid, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }

  /* Header */
  .header__inner { padding: 0 var(--space-md); height: var(--header-height); }
  .header__logo img { max-height: 40px; width: auto; }

  /* Hero */
  .hero, .hero--sm {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-3xl);
    text-align: center;
  }
  .hero__title { font-size: var(--fs-4xl) !important; }
  .hero__badge { margin: 0 auto var(--space-md); }
  .hero__content .lead, .hero p.lead, .lead { font-size: 1rem; }
  .hero__cta, .hero__actions, .hero-actions,
  .btn-group, .button-group { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
  .hero__cta .btn, .hero__actions .btn, .btn-group .btn { width: 100%; justify-content: center; }
  .hero-nodes { display: none; }
  .hero__orb { opacity: 0.4; transform: scale(0.6); }

  /* Buttons - touch-friendly */
  .btn { min-height: 44px; padding: 0.75rem 1.25rem; font-size: 0.95rem; }
  .btn--lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
  .btn--sm { min-height: 40px; padding: 0.5rem 1rem; }

  /* Cards - reduce padding */
  .card, .service-card, .solution-card, .industry-card,
  .product-card, .feature-card, .value-card, .team-card,
  .work-card, .plan-card, .pricing-card, .testimonial-card,
  .step-card, .pillar, .info-card {
    padding: var(--space-lg) !important;
  }

  /* Forms */
  .form-group { margin-bottom: var(--space-md); }
  input, textarea, select {
    font-size: 16px !important;   /* prevent iOS zoom */
    padding: 12px 14px !important;
    width: 100%;
    max-width: 100%;
  }
  .form-row, .form-inline { flex-direction: column; gap: var(--space-md); }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }

  /* Tables - horizontal scroll wrapper */
  .table-wrap, .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { display: block; overflow-x: auto; white-space: nowrap; }

  /* Footer */
  .footer { padding: var(--space-3xl) 0 var(--space-lg); text-align: center; }
  .footer__col, .footer-col { text-align: center; margin-bottom: var(--space-lg); }
  .footer__bottom, .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .footer__social, .social-links { justify-content: center; }
  .footer__logo, .footer-logo { margin: 0 auto var(--space-md); }

  /* Section headers */
  .section-header, .section__header { text-align: center; padding: 0 var(--space-sm); }

  /* Stats */
  .stat-number, .stat__number { font-size: 2rem; }
  .stat-label, .stat__label { font-size: 0.85rem; }

  /* Breadcrumbs */
  .breadcrumb, .breadcrumbs { font-size: 0.8rem; flex-wrap: wrap; }

  /* Tabs */
  .tabs, .tab-list { flex-wrap: wrap; gap: var(--space-xs); }
  .tab, .tab-btn { flex: 1 1 auto; text-align: center; padding: 0.6rem 0.8rem; font-size: 0.9rem; }

  /* Filters */
  .filters, .filter-bar { flex-wrap: wrap; gap: var(--space-xs); justify-content: center; }
  .filter-btn { flex: 0 1 auto; font-size: 0.85rem; padding: 0.5rem 0.9rem; }

  /* Accordion */
  .accordion__trigger { padding: var(--space-md); font-size: 1rem; }

  /* CTA sections */
  .cta, .cta-section, .cta-band { text-align: center; padding: var(--space-3xl) 0; }
  .cta h2, .cta__title { font-size: var(--fs-3xl); }

  /* Cookie banner */
  .cookie-banner { left: var(--space-sm) !important; right: var(--space-sm) !important; bottom: var(--space-sm) !important; padding: var(--space-md) !important; font-size: 0.85rem; }
  .cookie-banner .btn { width: 100%; }

  /* Mobile menu polish */
  .mobile-menu { padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-3xl); overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mobile-menu__link { padding: var(--space-md) 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

  /* Trust strip */
  .trust-strip { flex-wrap: wrap; gap: var(--space-md); justify-content: center; }

  /* Long text wrap */
  h1, h2, h3, h4, p, a, li { overflow-wrap: break-word; word-wrap: break-word; }

  /* Hide decorative-only visuals */
  .hero__glow, .decoration, .bg-pattern { opacity: 0.5; }
}

/* Small phones (≤480px) ----------------------------------- */
@media (max-width: 480px) {
  :root {
    --fs-5xl: 1.95rem;
    --fs-4xl: 1.7rem;
    --fs-3xl: 1.45rem;
    --fs-2xl: 1.25rem;
  }
  .container { padding: 0 14px; }
  .header__inner { padding: 0 14px; }
  .header__logo img { max-height: 34px; }
  .hero__title { font-size: 1.75rem !important; line-height: 1.2; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  .btn { font-size: 0.9rem; padding: 0.7rem 1rem; }
  .card, .service-card, .solution-card { padding: var(--space-md) !important; }
  .section, section { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
}

/* Landscape phones — reduce hero vertical padding */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: calc(var(--header-height) + var(--space-lg)); padding-bottom: var(--space-2xl); }
}

/* Larger touch targets everywhere on touch devices */
@media (hover: none) and (pointer: coarse) {
  a, button, .btn, .header__nav-link, .mobile-menu__link,
  .filter-btn, .tab, .accordion__trigger { min-height: 44px; }
  .btn { min-width: 44px; }
}

/* =========================================================
   HERO SECTION - COMPREHENSIVE MOBILE OPTIMIZATION
   Targets .hero, .hero--new specifically, higher specificity.
   ========================================================= */
@media (max-width: 1024px) {
  .hero--new .hero__container,
  .hero.hero--new .hero__container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl) !important;
    align-items: stretch !important;
  }
  .hero--new .hero__content,
  .hero.hero--new .hero__content { max-width: 100% !important; width: 100% !important; min-width: 0 !important; }
  .hero-dash { max-width: 100% !important; margin: 0 auto !important; width: 100% !important; }
}

@media (max-width: 768px) {
  /* Hero base */
  .hero, .hero--new {
    min-height: auto !important;
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-3xl) !important;
    text-align: center;
  }
  .hero__container, .hero--new .hero__container {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--space-xl) !important;
    padding-left: var(--space-md) !important;
    padding-right: var(--space-md) !important;
  }

  /* Hero content centered */
  .hero__content, .hero--new .hero__content {
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .hero__kicker, .hero--new .hero__kicker,
  .hero__badge, .kicker { margin: 0 auto var(--space-md) !important; display: inline-flex; }

  /* Hero title — force normal wrapping, hide <br> forced breaks */
  .hero__title, .hero--new .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
    margin: 0 auto var(--space-md) !important;
  }
  .hero__title br { display: none; }   /* remove forced breaks on mobile */
  .hero__title-gradient { display: inline !important; }

  .hero__lead, .hero--new .hero__lead, .hero__content .lead {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 auto var(--space-lg) !important;
    max-width: 520px;
    text-align: center;
  }

  /* CTA buttons stacked full width */
  .hero__cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
    align-items: stretch;
  }
  .hero__cta .btn { width: 100%; justify-content: center; }

  /* Hero decorative visuals — reduce cost on mobile */
  .hero__bg .hero__grid { opacity: 0.35; }
  .hero__orb { transform: scale(0.55); opacity: 0.35; }
  .hero__glow { opacity: 0.5; }
  .hero-nodes { display: none !important; }

  /* Hero underline centering */
  .hero__underline { margin-left: auto; margin-right: auto; }

  /* ----- Hero Dashboard visual (home page) ----- */
  .hero-dash {
    max-width: 100% !important;
    margin: var(--space-lg) auto 0 !important;
    animation: none !important;    /* reduce jitter on mobile */
    transform: none !important;
  }
  .hero-dash__top {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .hero-dash__pill { justify-content: flex-start; }
  .hero-dash__stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding-top: 8px;
    border-top: 1px solid #eef1f5;
    text-align: left;
  }
  .hero-dash__stat-value { font-size: 1rem !important; }
  .hero-dash__stat-label { font-size: 0.55rem !important; }
  .hero-dash__panel { padding: 14px !important; }
  .hero-dash__chart { height: 110px !important; gap: 6px !important; }
  .hero-dash__bar span { font-size: 0.55rem !important; }
  .hero-dash__row { font-size: 0.8rem !important; padding: 8px 10px !important; }
  .hero-dash__row-status { font-size: 0.7rem !important; }
  .hero-dash__float { display: none !important; }

  /* Trust strip on mobile */
  .hero--new .trust-strip,
  .trust-strip {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding-top: var(--space-lg) !important;
    margin-top: var(--space-lg) !important;
  }
  .trust-strip__item { text-align: left; }
}

/* =========================================================
   PRODUCTS PAGE - au-model card links
   ========================================================= */
.au-model__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px -6px rgba(59,130,246,0.5);
}
.au-model__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(59,130,246,0.7);
}
.au-model__link svg { transition: transform 0.25s ease; }
.au-model__link:hover svg { transform: translateX(3px); }

/* =========================================================
   LEGAL / SITEMAP PAGES - clear fixed header
   (Privacy Policy, Terms of Use, Sitemap use .lg-page / .sm-page)
   ========================================================= */
.lg-page, .sm-page {
  padding-top: calc(var(--header-height) + 40px) !important;
}
@media (max-width: 768px) {
  .lg-page, .sm-page {
    padding-top: calc(var(--header-height) + 24px) !important;
    padding-bottom: 40px !important;
  }
  .lg-hero, .sm-hero { margin-bottom: 24px !important; padding: 0 var(--space-md); }
  .lg-hero h1, .sm-hero h1 { font-size: 1.85rem !important; line-height: 1.2 !important; }
  .lg-hero p, .sm-hero p { font-size: 0.95rem !important; }
}

/* =========================================================
   FOOTER + FCTA - MOBILE OPTIMIZATION
   ========================================================= */
@media (max-width: 1024px) {
  .footer--new .footer__top { grid-template-columns: repeat(2, 1fr) !important; gap: 32px !important; }
  .footer--new .footer__brand { grid-column: 1 / -1; max-width: 100% !important; }
}

@media (max-width: 768px) {
  /* FCTA banner */
  .fcta { padding: 24px 0 0 !important; }
  .fcta__inner {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 22px 18px !important;
    gap: 14px !important;
    border-radius: 16px !important;
  }
  .fcta__icon { margin: 0 auto; width: 48px !important; height: 48px !important; }
  .fcta__title { font-size: 1.15rem !important; line-height: 1.3 !important; }
  .fcta__sub { font-size: 0.85rem !important; }
  .fcta__btn { width: 100%; justify-content: center; padding: 14px 20px !important; }

  /* Footer container padding */
  .footer, .footer--new { padding: 40px 0 20px !important; text-align: left !important; }
  .footer .container { padding-left: 20px !important; padding-right: 20px !important; }

  /* Footer top — single column */
  .footer--new .footer__top {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 8px 0 24px !important;
  }
  .footer__brand, .footer--new .footer__brand,
  .footer__col { max-width: 100% !important; width: 100% !important; text-align: left !important; margin: 0 !important; }
  .footer__logo, .footer--new .footer__logo { margin: 0 0 12px 0 !important; }
  .footer__logo img { height: 36px !important; }
  .footer--new .footer__desc { font-size: 0.88rem !important; margin: 8px 0 18px !important; }

  /* Stay updated card */
  .footer__stay {
    display: flex !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    background: rgba(96,165,250,0.06);
    border: 1px solid rgba(96,165,250,0.15);
    border-radius: 12px;
    margin-bottom: 12px !important;
  }
  .footer__stay-icon { flex: 0 0 40px; }
  .footer__stay-body { flex: 1 1 auto; min-width: 0; text-align: left; }
  .footer__stay-title { font-size: 0.95rem !important; }
  .footer__stay-sub { font-size: 0.78rem !important; line-height: 1.45 !important; }

  /* Newsletter form — keep inline on mobile with proper sizing */
  .footer__news {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100%;
  }
  .footer__news-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }
  .footer__news-btn {
    flex: 0 0 auto !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    white-space: nowrap;
  }

  /* Footer column headings — LEFT align on mobile (not centered) */
  .footer--new .footer__col .footer__heading,
  .footer__heading {
    text-align: left !important;
    margin-bottom: 16px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.12em !important;
  }
  .footer--new .footer__col .footer__heading::after {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Link lists */
  .footer--new .footer__links { gap: 12px !important; }
  .footer--new .footer__links a { font-size: 0.9rem !important; padding: 6px 0 !important; }
  .footer--new .footer__links a svg { width: 18px !important; height: 18px !important; }

  /* Contact rows */
  .footer__contact { gap: 12px !important; }
  .footer__contact-row { font-size: 0.9rem !important; }
  .footer__contact-icon { flex: 0 0 34px !important; width: 34px !important; height: 34px !important; }

  /* Trust bar — 2 columns on mobile */
  .footer__trust {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 20px !important;
  }
  .footer__trust-item {
    grid-template-columns: auto 1fr !important;
    align-items: flex-start !important;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
  }
  .footer__trust-title { font-size: 0.88rem !important; }
  .footer__trust-sub { font-size: 0.75rem !important; line-height: 1.45 !important; }

  /* Bottom bar — clean stack */
  .footer__bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 20px 0 8px !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center !important;
    font-size: 0.8rem !important;
  }
  .footer__bottom p { font-size: 0.78rem !important; margin: 0; }
  .footer__legal {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 0.78rem !important;
  }
  .footer__legal-sep { opacity: 0.4; }
  .footer__social {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  .footer__social-a {
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 480px) {
  .fcta__title { font-size: 1.05rem !important; }
  .footer__news { flex-direction: column !important; }
  .footer__news-btn { width: 100%; }
  .footer__logo img { height: 32px !important; }
}

/* =========================================================
   VSTRIP (4-benefit strip) - MOBILE OPTIMIZATION
   ========================================================= */
@media (max-width: 768px) {
  .vstrip {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
    margin-top: 24px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06) !important;
  }
  .vstrip__item, .vstrip__item:nth-child(odd) {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 14px !important;
    border: 1px solid #f1f5f9 !important;
    border-right: 1px solid #f1f5f9 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    background: #fafbfc !important;
    text-align: left !important;
  }
  .vstrip__ico {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    border-radius: 12px !important;
  }
  .vstrip__body {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
    display: block !important;
  }
  .vstrip__title {
    font-size: 1rem !important;
    font-weight: 800 !important;
    text-align: left !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
    display: block !important;
  }
  .vstrip__sub {
    font-size: 0.82rem !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    text-align: left !important;
    margin: 0 !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .hero, .hero--new {
    padding-top: calc(var(--header-height) + var(--space-lg)) !important;
    padding-bottom: var(--space-2xl) !important;
  }
  .hero__title, .hero--new .hero__title {
    font-size: 1.75rem !important;
    line-height: 1.22 !important;
  }
  .hero__lead, .hero--new .hero__lead { font-size: 0.95rem !important; }
  .hero-dash__stats { gap: 6px !important; }
  .hero-dash__stat-value { font-size: 0.9rem !important; }
  .hero-dash__chart { height: 90px !important; }
  .hero-dash__pill-title { font-size: 0.8rem !important; }
  .hero-dash__pill-sub { font-size: 0.68rem !important; }
}

/* ============================================================
   HERO CTA — force stacked buttons on mobile / small tablets
   ============================================================ */
@media (max-width: 900px) {
  .hero .hero__cta,
  .hero--new .hero__cta {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: 100% !important;
    align-items: stretch !important;
  }
  .hero .hero__cta .btn,
  .hero--new .hero__cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  /* kill any stray arrow pseudo on ALL hero buttons */
  .hero .btn::after,
  .hero--new .btn::after,
  .hero .btn--arrow::after,
  .hero--new .btn--arrow::after { content: none !important; }
}

/* ============================================================
   PARTNER HUB — hide the circular diagram on mobile (icons
   overflow the small circle). Solutions grid below covers it.
   ============================================================ */
@media (max-width: 768px) {
  .partner__right,
  .partner-section .partner__hub {
    display: none !important;
  }
  .partner { grid-template-columns: 1fr !important; }
  .partner__left { text-align: left; }
  .partner__cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
  }
  .partner__cta .btn { width: 100% !important; justify-content: center !important; }
  .partner__cta .btn--arrow::after { content: none !important; }
}

