/* ── Variables ───────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --bg: #09090b;
  --surface: #18181b;
  --surface2: #0f0f11;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-dim: #52525b;
  --accent: #818cf8;
  --accent-dark: #6366f1;
  --gradient-from: #60a5fa;
  --gradient-to: #a855f7;
  /* Legacy compat */
  --cyan-400: #818cf8;
  --violet-400: #818cf8;
  --emerald-400: #34d399;
  --teal-400: #2dd4bf;
  --amber-400: #fbbf24;
  --pink-400: #f472b6;
  --blue-400: #60a5fa;
  --orange-400: #fb923c;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #a1a1aa;
  --slate-500: #71717a;
  --slate-600: #52525b;
  --white: #fafafa;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
main { flex: 1; }

/* Focus */
:focus-visible { outline: 2px solid rgba(99,102,241,0.7); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.5); }

/* ── Containers ──────────────────────────────────────────── */
.container       { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-narrow{ max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-slim  { max-width: 896px;  margin: 0 auto; padding: 0 24px; }
.container-7xl   { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) {
  .container, .container-narrow, .container-slim, .container-7xl { padding: 0 16px; }
}

/* ── Gradient text ───────────────────────────────────────── */
.gradient-text, .glow-text {
  background: linear-gradient(to right, var(--gradient-from), var(--gradient-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass ───────────────────────────────────────────────── */
.glass, .glass-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}

/* ── Grid overlay utility ────────────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Labels ──────────────────────────────────────────────── */
.label, .section-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  text-align: left;
}
.text-center .section-label { text-align: center; }
.label-violet  { color: var(--accent); }
.label-emerald { color: var(--emerald-400); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-primary, .btn-gradient {
  background: #ffffff;
  color: #000000;
}
.btn-primary:hover, .btn-gradient:hover { background: #e4e4e7; }
.btn-outline, .btn-secondary, .btn-border {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
}
.btn-outline:hover, .btn-secondary:hover, .btn-border:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
/* Legacy gradient variants → map to white */
.btn-gradient-cyan, .btn-gradient-violet, .btn-gradient-emerald {
  background: #ffffff; color: #000000;
}
.btn-gradient-cyan:hover, .btn-gradient-violet:hover, .btn-gradient-emerald:hover { background: #e4e4e7; }

/* ── Navbar ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 16px; left: 24px; right: 24px;
  z-index: 50;
  border-radius: 16px;
  background: rgba(9,9,11,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(9,9,11,0.80);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
.nav-link:hover { color: var(--text); }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--text); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 300px;
  background: rgba(9,9,11,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}
.nav-dropdown-item:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-dropdown-item--overview { color: var(--accent) !important; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px; }
.nav-dropdown-item--overview:hover { color: var(--accent) !important; }
.nav-mobile-sub--overview { color: var(--accent) !important; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px; padding-bottom: 14px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-secondary);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}
.nav-mobile-link:hover { color: var(--text); }
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-left: none; border-right: none; border-top: none;
  cursor: pointer;
  background: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.2s;
}
.nav-mobile-toggle:hover { color: var(--text); }
.nav-mobile-toggle svg { transition: transform 0.2s; }
.nav-mobile-sub-list { display: none; padding: 8px 0 4px 16px; }
.nav-mobile-sub-list.open { display: block; }
.nav-mobile-sub {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.nav-mobile-sub:hover { color: var(--text); }
.nav-mobile-cta { padding-top: 16px; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; border-radius: 12px; }

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 56px; }
  #navbar { top: 12px; left: 16px; right: 16px; border-radius: 12px; }
}

/* ── Page offset ─────────────────────────────────────────── */
.page-start { padding-top: 96px; }
@media (max-width: 768px) { .page-start { padding-top: 80px; } }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(9,9,11,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 560px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 20px;
  font-family: 'Inter', sans-serif;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--accent); border-color: rgba(99,102,241,0.3); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.footer-col ul a:hover { color: var(--text-secondary); }
.footer-cta-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 15px; color: var(--text-dim); font-family: 'Inter', sans-serif; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 15px; color: var(--text-dim); transition: color 0.2s; font-family: 'Inter', sans-serif; }
.footer-legal a:hover { color: var(--text-secondary); }

/* ── Hero (home) ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 96px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}
/* Full-screen background layout */
.hero-bg { justify-content: flex-start; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  will-change: auto;
}
.hero-bg-overlay {
  display: none;
}
.hero-bg-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 48px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.hero-underline {
  width: 72px;
  height: 3px;
  background: linear-gradient(to right, #7c3aed, #a855f7);
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-hl-teal {
  color: #67e8f9;
}
.hero-hl-gradient {
  background: linear-gradient(90deg, #818cf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-hero-schedule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 9999px;
  border: none;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(124,58,237,0.45);
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-hero-schedule:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,85,247,0.45);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: 'Inter', sans-serif;
}
.hero-eyebrow-dot {
  position: relative;
  width: 8px; height: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow-dot-inner {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-eyebrow-dot-ping {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.hero-heading {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-hl-blue {
  background: linear-gradient(90deg, #818cf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-hl-purple {
  background: linear-gradient(90deg, #06b6d4 0%, #a855f7 60%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-heading-left {
  text-align: left;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
}
.hero-sub-left {
  text-align: left;
  margin: 0 0 24px;
  max-width: 480px;
  font-size: 16px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.hero-ctas-left { justify-content: flex-start; }
/* Hero CTA buttons matching reference */
.btn-hero-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(124,58,237,0.4);
}
.btn-hero-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-hero-outline {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }
/* Trusted logos strip */
.hero-trusted {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 60px;
  width: 100%;
}
.hero-trusted-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 48px;
}
.hero-logo-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hero-logo-item:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 767px) {
  .hero-bg-content { padding: 100px 24px 40px; }
  .hero-bg-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(9,9,11,0.82) 0%,
      rgba(9,9,11,0.70) 50%,
      rgba(9,9,11,0.88) 100%
    );
  }
  .hero-bg-content { z-index: 10; }
  .hero-heading-left { text-align: center; }
  .hero-sub-left { text-align: center; margin: 0 auto 32px; }
  .hero-ctas-left { justify-content: center; }
  .hero-bg-content { align-items: center; }
  .hero-trusted { padding: 0 24px 48px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
}

/* ── Fixed site background ───────────────────────────────── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/bg_backup.jpg');
  background-size: cover;
  background-position: center 50%;
}

/* ── Default section background ──────────────────────────── */
.has-default-bg {
  position: relative;
  background-color: var(--bg);
}
.cta-final-section {
  background-image: url('../images/contact_sec_bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.cta-final-container {
  width: 100%;
  max-width: 100%;
  padding-left: 80px;
  box-sizing: border-box;
}
.cta-final-inner {
  text-align: left;
  max-width: 620px;
}
/* Eyebrow badge */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
}
.cta-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
/* Heading */
.cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-hl-teal {
  background: linear-gradient(90deg, #22d3ee 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-hl-gradient {
  background: linear-gradient(90deg, #818cf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Underline */
.cta-underline {
  width: 72px;
  height: 3px;
  background: linear-gradient(to right, #22d3ee, #a855f7);
  border-radius: 2px;
  margin-bottom: 28px;
}
/* Subtext */
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
/* CTA Button */
.cta-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 9999px;
  border: none;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(124,58,237,0.45);
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
}
.cta-schedule-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,85,247,0.45);
}
@media (max-width: 900px) {
  .cta-final-container { padding-left: 24px; padding-right: 24px; }
  .cta-final-section { min-height: unset; padding: 80px 0; }
}
/* Business Impact — no overlay, background image as-is */
.impact-bg-section {
  background-image: url('../images/impact_bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

/* Inner — content pushed to right half */
.impact-inner {
  display: flex;
  justify-content: flex-end;
}

/* Content column — right 52% */
.impact-content {
  width: 52%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.impact-content.impact-content-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger stat cells */
.impact-cell {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.impact-content-visible .impact-cell:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0.35s; }
.impact-content-visible .impact-cell:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.47s; }
.impact-content-visible .impact-cell:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.59s; }
.impact-content-visible .impact-cell:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.71s; }
@media (max-width: 900px) { .impact-content { width: 100%; } }

.impact-eyebrow {
  color: #2dd4bf !important;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}
.impact-title {
  font-size: clamp(28px, 2.6vw, 40px) !important;
  line-height: 1.15 !important;
  margin-bottom: 16px;
}
.impact-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.72;
  margin-bottom: 28px;
}
.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .impact-stats-grid { grid-template-columns: 1fr; } }

/* Prevent stat values from wrapping mid-number */
.stat-value { white-space: nowrap; }

/* Why Auxova — keeps its own dark background */
.business-bg-section {
  background-image: linear-gradient(rgba(9,9,11,0.18), rgba(9,9,11,0.18)), url('../images/why_bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
.business-bg-section .section-title { text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.business-bg-section .section-sub   { color: rgba(255,255,255,0.72); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.business-bg-section .section-label { text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
/* ── Why Auxova — sticky scroll stacking ─────────────────── */
.why-sticky-section {
  min-height: auto !important;
  display: block !important;
  padding: 0 !important;
  background-image: linear-gradient(rgba(9,9,11,0.18), rgba(9,9,11,0.18)), url('../images/why_bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.why-sticky-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start;
}
.why-sticky-left {
  position: sticky;
  top: 100px;
  padding: 140px 0 200px;
}
.why-step-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
}
.why-dot.active {
  background: var(--accent, #818cf8);
  transform: scale(1.3);
}
.why-cards-stack {
  padding: 140px 0 1px;
}
.why-stack-card {
  position: sticky;
  top: 100px;
  background-image: url('../images/one_bg.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--ac-border, rgba(255,255,255,0.1));
  border-radius: 24px;
  padding: 40px 48px 36px;
  margin-bottom: 320px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* No overlay — image is already dark */
.why-stack-card::before { display: none; }

/* Constrain all content to left 48% so right image object shows */
.why-stack-card > * { max-width: 100%; }
.why-card-body {
  max-width: 52%;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.why-stack-card:nth-child(1) { top: 100px; background-image: url('../images/one_bg.webp'); }
.why-stack-card:nth-child(2) { top: 116px; background-image: url('../images/two_bg.webp'); }
.why-stack-card:nth-child(3) { top: 132px; background-image: url('../images/three_bg.webp'); }
.why-stack-card:nth-child(4) { top: 148px; background-image: url('../images/four_bg.webp'); }
.why-stack-card:hover { box-shadow: 0 20px 70px rgba(0,0,0,0.5); }
.why-stack-card.is-covered {
  transform: scale(0.97);
  opacity: 0.75;
}
.why-card-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ac, rgba(255,255,255,0.4));
  margin-bottom: 10px;
  opacity: 0.9;
  text-transform: uppercase;
}
.why-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.why-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}
.why-card-tags {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
}
.why-card-tags span {
  font-size: 11.5px;
  padding: 5px 13px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border: 1px solid var(--ac-border, rgba(255,255,255,0.12));
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  .why-stack-card > * { max-width: 100%; }
}
@media (max-width: 768px) {
  .why-sticky-wrap { grid-template-columns: 1fr; gap: 0; }
  .why-sticky-left { position: static; padding: 60px 0 32px; }
  .why-cards-stack { padding: 0 0 60px; }
  .why-stack-card { position: static; margin-bottom: 20px; }
  .why-step-dots { display: none; }
}

.cta-final-section .section-title {
  text-shadow: 0 2px 32px rgba(0,0,0,0.8);
  font-size: clamp(32px, 3.5vw, 52px) !important;
}
.cta-final-section .section-sub {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.has-default-bg > * {
  position: relative;
  z-index: 1;
}

/* ── AI Shift Section ────────────────────────────────────── */
.ai-shift-section {
  position: relative;
  min-height: 600px;
  background-image: url('../images/ai_insight1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left 50%;
}
.ai-shift-bg-overlay { display: none; }
.ai-shift-inner {
  position: relative;
  z-index: 10;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
}

.ai-shift-2col { display: none; }
.ai-shift-visual { display: none; }

.ai-shift-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 580px;
}

.ai-shift-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f43f5e;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ai-shift-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #f43f5e, #e879f9);
  border-radius: 2px;
  flex-shrink: 0;
}

.ai-shift-heading {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}

.ai-shift-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  border-radius: 2px;
  margin: 0 0 18px;
}

.ai-shift-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 6px;
}

/* 3-col stats grid — left/right 2 stacked, center spans both rows */
.ai-shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  width: 55%;
  position: relative;
  z-index: 10;
  margin-top: auto;
}

.ai-shift-card {
  position: relative;
  background: rgba(10,10,30,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s, transform 0.3s;
}
.ai-shift-card:hover {
  border-color: rgba(139,92,246,0.5);
  transform: translateY(-3px);
}

.ai-shift-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.ai-shift-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.ai-shift-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(139,92,246,0.18);
  border: 1px solid rgba(139,92,246,0.3);
  color: #a78bfa;
  flex-shrink: 0;
}

.ai-shift-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-shift-card--featured .ai-shift-stat {
  font-size: clamp(36px, 3.8vw, 58px);
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-shift-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 8px 0 40px;
  max-width: 520px;
}

.ai-shift-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

.ai-shift-source {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .ai-shift-section { background-position: center 50%; }
  .ai-shift-content { max-width: 100%; }
  .ai-shift-inner { padding: 60px 0; }
  .ai-shift-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .ai-shift-card--featured { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 500px) {
  .ai-shift-grid { grid-template-columns: 1fr; }
  .ai-shift-card--featured { grid-column: 1; grid-row: auto; }
}

/* ── Shared fixed background for AI Shift + Readiness Gap ── */
/* Single wrapper holds the fixed bg — eliminates jerk at section boundary */
.ai-insight-wrapper {
  background-image: url('../images/ai_insight1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed;
}
.ai-shift-section,
.rg-section {
  background: none;
}

/* ── Readiness Gap Section ───────────────────────────────── */
.rg-section {
  position: relative;
}
.rg-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 80px 0 60px;
  width: 100%;
}
.rg-content {
  width: 100%;
  max-width: 620px;
}
.rg-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid rgba(139,92,246,0.6);
  background: rgba(139,92,246,0.15);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.rg-heading {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
}
.rg-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 520px;
}

/* 3 stat pills */
.rg-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.rg-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1;
  min-width: 160px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rg-stat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.3);
  color: #a78bfa;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rg-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.rg-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  margin-top: 2px;
}

/* 4 cards — single row */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .rg-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rg-cards { grid-template-columns: 1fr; } }

.rg-card {
  background: rgba(10,10,35,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s, transform 0.3s;
}
.rg-card:hover {
  border-color: rgba(139,92,246,0.5);
  transform: translateY(-4px);
}
.rg-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.rg-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.rg-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.rg-card-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}
.rg-card-arrow:hover { color: #a78bfa; }

/* Robot overlay — right side of rg-section */
.rg-robot {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 105%;
  width: auto;
  max-width: 44%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 2;
  pointer-events: none;
  /* Initial state — off-screen to the right */
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.rg-robot.rg-robot-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 900px) {
  .rg-robot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rg-robot { transition: none; opacity: 1; transform: none; }
}

/* Content block slide-from-left */
.rg-section .rg-content {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rg-section .rg-content.rg-content-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .rg-inner { justify-content: center; }
  .rg-content { max-width: 100%; }
  .rg-section .rg-content { opacity: 1; transform: none; }
}

/* ── Inner page hero ─────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: 0;
  margin-top: 84px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-overlay { position: absolute; inset: 0; }
.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  text-align: center;
}
.page-hero-content.center { text-align: center; }
.page-hero-content.wide { max-width: 1280px; }
.page-hero h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-hero-content { padding: 64px 20px 48px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 44px); }
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt  { background: transparent; }
.section-dark { background: transparent; }
.section-border { border-top: 1px solid rgba(255,255,255,0.06); }
@media (max-width: 767px) { .section { padding: 60px 0; } }

.section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}
.section-header {
  text-align: left;
  margin-bottom: 64px;
}
@media (max-width: 767px) { .section-header { margin-bottom: 40px; } }

/* ── Cards ───────────────────────────────────────────────── */
.card, .card-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover, .card-glass:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

/* ── Enables Section ─────────────────────────────────────── */
.enables-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Decorative ambient orbs */
.enables-section::before,
.enables-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.enables-section::before {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 65%);
}
.enables-section::after {
  width: 500px; height: 500px;
  bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(45,212,191,0.07) 0%, transparent 65%);
}

.enables-bg-img { display: none; }
.enables-bg-overlay { display: none; }
.enables-inner { position: relative; z-index: 10; }

/* Content fade-up from below */
.enables-section .enables-content-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}
.enables-section .enables-content-block.enables-content-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .enables-section .enables-content-block { opacity: 1; transform: none; }
}

/* Header: split layout — label+title left, description right */
.enables-header-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 56px;
}
.enables-header-block .enables-title-col { display: flex; flex-direction: column; align-items: flex-start; }
.enables-header-block .enables-desc-col  {
  padding-bottom: 6px;
  display: flex;
  align-items: flex-end;
  border-left: 3px solid transparent;
  border-image: linear-gradient(to bottom, #f43f5e, #a855f7, #60a5fa) 1;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .enables-header-block { grid-template-columns: 1fr; gap: 24px; }
}

.enables-label-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(129,140,248,0.12);
  border: 1px solid rgba(129,140,248,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #a5b4fc;
  margin-bottom: 24px;
  border-bottom: none;
  text-shadow: none;
}
.enables-label-underline::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f43f5e;
  box-shadow: 0 0 8px rgba(244,63,94,0.8);
}
.enables-header-block {
  margin-bottom: 40px;
}
.enables-header-block .section-title {
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin-top: 16px;
}
.enables-header-block .section-sub {
  margin-top: 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.enables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .enables-grid { grid-template-columns: 1fr; }
  .enables-card--featured { margin-top: 0; margin-bottom: 0; padding-top: 36px; padding-bottom: 40px; }
}

/* Base card */
.enables-card {
  position: relative;
  border-radius: 16px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.enables-card:hover { transform: translateY(-6px); }

/* Card colour variants */
.enables-card--red {
  background: rgba(60,10,20,0.75);
  border: 1px solid rgba(244,63,94,0.28);
  box-shadow: inset 0 0 60px rgba(244,63,94,0.05);
}
.enables-card--red:hover { box-shadow: 0 20px 60px rgba(244,63,94,0.18), inset 0 0 60px rgba(244,63,94,0.06); }

.enables-card--blue {
  background: rgba(15,30,60,0.75);
  border: 1px solid rgba(96,165,250,0.25);
  box-shadow: inset 0 0 60px rgba(96,165,250,0.05);
}
.enables-card--blue:hover { box-shadow: 0 20px 60px rgba(96,165,250,0.15), inset 0 0 60px rgba(96,165,250,0.05); }

.enables-card--purple {
  background: rgba(40,10,80,0.75);
  border: 1px solid rgba(168,85,247,0.45);
  box-shadow: inset 0 0 60px rgba(168,85,247,0.08);
}
.enables-card--purple:hover { box-shadow: 0 20px 60px rgba(168,85,247,0.2), inset 0 0 60px rgba(168,85,247,0.08); }

.enables-card--teal {
  background: rgba(5,35,40,0.75);
  border: 1px solid rgba(45,212,191,0.25);
  box-shadow: inset 0 0 60px rgba(45,212,191,0.05);
}
.enables-card--teal:hover { box-shadow: 0 20px 60px rgba(45,212,191,0.12), inset 0 0 60px rgba(45,212,191,0.05); }

/* Featured middle card elevated */
.enables-card--featured {
  margin-top: -16px;
  margin-bottom: -16px;
  padding-top: 52px;
  padding-bottom: 56px;
}

/* Subtle inner radial glow top-right */
.enables-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow, rgba(129,140,248,0.08)) 0%, transparent 70%);
  pointer-events: none;
}
.enables-card--red   { --card-glow: rgba(244,63,94,0.12); }
.enables-card--blue  { --card-glow: rgba(96,165,250,0.12); }
.enables-card--purple{ --card-glow: rgba(168,85,247,0.14); }
.enables-card--teal  { --card-glow: rgba(45,212,191,0.1); }

.enables-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.enables-icon-badge {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--icon-bg, rgba(129,140,248,0.15));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.enables-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.enables-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}
.enables-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin: 0;
}
.enables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
}
.enables-sublist {
  list-style: none;
  margin: 6px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.enables-sublist li {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  padding-left: 12px;
  position: relative;
}
.enables-sublist li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.5);
}
.enables-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.9;
}
.enables-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--link-color, var(--accent));
  font-family: 'Inter', sans-serif;
  transition: gap 0.2s, opacity 0.2s;
  margin-top: 4px;
}
.enables-card-link:hover { gap: 10px; opacity: 0.85; }

/* ── Approach Section ────────────────────────────────────── */
.approach-header { margin-bottom: 56px; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card--featured { margin-top: 0; margin-bottom: 0; padding-top: 36px; padding-bottom: 40px; }
}

.approach-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.approach-card:hover { transform: translateY(-6px); }

.approach-card--blue {
  background: rgba(10,20,50,0.8);
  border: 1px solid rgba(96,165,250,0.22);
}
.approach-card--blue:hover { box-shadow: 0 20px 60px rgba(96,165,250,0.12); }

.approach-card--purple {
  background: rgba(35,8,70,0.82);
  border: 1px solid rgba(168,85,247,0.42);
}
.approach-card--purple:hover { box-shadow: 0 20px 60px rgba(168,85,247,0.18); }

.approach-card--teal {
  background: rgba(4,28,30,0.82);
  border: 1px solid rgba(52,211,153,0.22);
}
.approach-card--teal:hover { box-shadow: 0 20px 60px rgba(52,211,153,0.1); }

.approach-card--featured {
  margin-top: -16px;
  margin-bottom: -16px;
  padding-top: 52px;
  padding-bottom: 56px;
}

/* subtle bottom-right radial glow */
.approach-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--a-glow, rgba(129,140,248,0.08)) 0%, transparent 70%);
  pointer-events: none;
}
.approach-card--blue   { --a-glow: rgba(96,165,250,0.1); }
.approach-card--purple { --a-glow: rgba(168,85,247,0.13); }
.approach-card--teal   { --a-glow: rgba(52,211,153,0.09); }

.approach-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.approach-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--a-icon-bg, rgba(129,140,248,0.15));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.approach-step {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.approach-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.approach-step-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.approach-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.approach-divider {
  width: 36px;
  height: 2px;
  border-radius: 2px;
  opacity: 0.8;
}
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.approach-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
}
.approach-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Solution cards ──────────────────────────────────────── */
.solution-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.solution-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(99,102,241,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.solution-icon-badge {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.accent-line { width: 32px; height: 2px; border-radius: 9999px; margin-bottom: 20px; background: var(--accent); }
.solution-card-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.solution-card-desc {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7; flex: 1;
  font-family: 'Inter', sans-serif;
}
.solution-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; margin-top: 24px;
  color: var(--accent); font-family: 'Inter', sans-serif;
  transition: gap 0.3s, color 0.2s;
}
.solution-card:hover .solution-card-link { gap: 10px; }

/* ── Module cards ────────────────────────────────────────── */
.module-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}
@media (max-width: 767px) { .module-card { padding: 24px 20px; } }
.module-card-inner { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .module-card-inner { grid-template-columns: repeat(3, 1fr); } }
.module-num { font-family: 'Inter', monospace; font-size: 12px; color: var(--text-dim); display: block; margin-bottom: 8px; }
.module-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.module-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.7; font-family: 'Inter', sans-serif; }
.module-section-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.module-list { display: flex; flex-direction: column; gap: 8px; }
.module-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; color: var(--text-secondary); line-height: 1.5; font-family: 'Inter', sans-serif; }

/* ── Solution pillars ────────────────────────────────────── */
.solution-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
@media (max-width: 767px) { .solution-pillar { padding: 28px 20px; border-radius: 16px; } }
.solution-pillar-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 10; }
@media (min-width: 768px) { .solution-pillar-inner { grid-template-columns: 1fr 1fr; } }
.solution-pillar-items { display: flex; flex-direction: column; gap: 12px; }
.solution-pillar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.solution-pillar-item-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.solution-pillar-item span { font-size: 14px; color: var(--text-secondary); font-family: 'Inter', sans-serif; }

/* ── Case study cards ────────────────────────────────────── */
.cs-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) { .cs-card { padding: 28px 20px; border-radius: 16px; } }
.cs-header { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 32px; }
.cs-tag { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 9999px; background: rgba(255,255,255,0.05); }
.cs-meta { font-size: 12px; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.cs-body { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .cs-body { grid-template-columns: repeat(3, 1fr); } }
.cs-section-title { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 12px; }
.cs-text { font-size: 16px; color: var(--text-secondary); line-height: 1.7; font-family: 'Inter', sans-serif; }
.cs-metric { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; }
.cs-metric-label { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-muted); }
.cs-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Business Impact 2-col grid ─────────────────────────── */
.business-impact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.business-impact-grid .section-label {
  color: #60a5fa;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
}
.business-impact-grid .section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  margin-top: 16px;
  line-height: 1.15;
}
.business-impact-grid .section-sub {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.75;
  max-width: 380px;
}
@media (max-width: 768px) {
  .business-impact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Stats / Impact ──────────────────────────────────────── */
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.impact-cell--blue   .stat-value { color: #60a5fa; text-shadow: 0 0 32px rgba(96,165,250,0.35); }
.impact-cell--purple .stat-value { color: #a855f7; text-shadow: 0 0 32px rgba(168,85,247,0.35); }
.impact-cell--teal   .stat-value { color: #2dd4bf; text-shadow: 0 0 32px rgba(45,212,191,0.35); }
.impact-cell--amber  .stat-value { color: #fbbf24; text-shadow: 0 0 32px rgba(251,191,36,0.3); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.huge-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; line-height: 1; margin-bottom: 16px;
  background: linear-gradient(to right, var(--gradient-from), var(--gradient-to));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: clamp(64px, 14vw, 200px);
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 479px)  { .impact-grid { grid-template-columns: 1fr; } }
.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .impact-stats-grid { grid-template-columns: 1fr; } }

.impact-cell {
  position: relative;
  border-radius: 16px;
  padding: 28px 24px 24px;
  text-align: left;
  background: rgba(8,12,40,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid transparent;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
}
.impact-cell:hover { transform: translateY(-5px); }

/* Per-stat accent colours */
.impact-cell--blue   { border-color: rgba(96,165,250,0.4); border-top: 2px solid #60a5fa; }
.impact-cell--purple { border-color: rgba(168,85,247,0.4); border-top: 2px solid #a855f7; }
.impact-cell--teal   { border-color: rgba(45,212,191,0.4); border-top: 2px solid #2dd4bf; }
.impact-cell--amber  { border-color: rgba(251,191,36,0.4); border-top: 2px solid #fbbf24; }

.impact-cell--blue:hover   { box-shadow: 0 12px 40px rgba(96,165,250,0.25); border-color: rgba(96,165,250,0.6); }
.impact-cell--purple:hover { box-shadow: 0 12px 40px rgba(168,85,247,0.25); border-color: rgba(168,85,247,0.6); }
.impact-cell--teal:hover   { box-shadow: 0 12px 40px rgba(45,212,191,0.22); border-color: rgba(45,212,191,0.6); }
.impact-cell--amber:hover  { box-shadow: 0 12px 40px rgba(251,191,36,0.22); border-color: rgba(251,191,36,0.6); }

.impact-cell-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.impact-cell--blue   .impact-cell-tag { color: #60a5fa; }
.impact-cell--purple .impact-cell-tag { color: #a855f7; }
.impact-cell--teal   .impact-cell-tag { color: #2dd4bf; }
.impact-cell--amber  .impact-cell-tag { color: #fbbf24; }

.impact-cell .stat-value { font-size: clamp(28px, 3vw, 42px); margin-bottom: 8px; }
.impact-cell .stat-label { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.82); }

/* ── Stat cards (AI shift section) ──────────────────────── */
.stat-card {
  flex: 1; display: flex; align-items: center; gap: 20px;
  padding: 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: filter 0.2s;
}
.stat-card:hover { filter: brightness(1.08); }
.stat-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tagline-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: 24px;
}
.tagline-icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.ai-shift-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; width: 100%; padding: 80px 24px;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) { .ai-shift-layout { grid-template-columns: 1fr 1fr; } }

/* ── Hero 2-col ──────────────────────────────────────────── */
.hero-2col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .hero-2col { grid-template-columns: 1fr 1fr; } }
.hero-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-feature-chip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px; text-align: center;
}
.hero-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin: 0 auto 12px; }
.hero-feature-chip span { font-size: 14px; font-weight: 500; color: var(--text-secondary); font-family: 'Inter', sans-serif; }

/* ── Industries ──────────────────────────────────────────── */
.industry-icon-wrap {
  width: 80px; height: 80px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  transition: border-color 0.2s, background 0.2s;
}
.industry-icon-link { display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; }
.industry-icon-link:hover .industry-icon-wrap {
  border-color: rgba(99,102,241,0.35);
  background: rgba(99,102,241,0.06);
}
.industry-icon-link span {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  text-align: center; max-width: 80px; line-height: 1.3;
  transition: color 0.2s; font-family: 'Inter', sans-serif;
}
.industry-icon-link:hover span { color: var(--text-secondary); }

/* ── Framework circles (keep for pages that use them) ───── */
.framework-circle-outer {
  width: 160px; height: 160px; border-radius: 50%; border: 1px solid;
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.framework-circle-inner {
  width: 96px; height: 96px; border-radius: 50%; border: 1px solid;
  display: flex; align-items: center; justify-content: center;
}
.framework-dot { width: 12px; height: 12px; border-radius: 50%; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; font-family: 'Inter', sans-serif; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717a' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 40px;
}
.form-select option { background: #18181b; color: var(--text); }
.form-textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.success-box {
  background: rgba(99,102,241,0.05);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px; padding: 48px; text-align: center;
}
.success-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(99,102,241,0.15);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}

/* ── Filter buttons ──────────────────────────────────────── */
.filter-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; padding: 8px 16px; border-radius: 9999px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1); color: var(--text-secondary);
  background: transparent; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.filter-btn.active { background: rgba(99,102,241,0.2); color: var(--accent); border-color: rgba(99,102,241,0.35); }

/* ── Article badge ───────────────────────────────────────── */
.article-type-badge {
  display: inline-block; padding: 4px 10px; border-radius: 9999px;
  font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif;
}

/* ── Misc components ─────────────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); transition: color 0.2s;
  margin-bottom: 24px; font-family: 'Inter', sans-serif;
}
.back-link:hover { color: var(--text-secondary); }
.chip {
  font-family: 'Inter', sans-serif; font-size: 12px;
  padding: 6px 12px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted);
  cursor: pointer; transition: border-color 0.2s;
}
.chip:hover { border-color: rgba(255,255,255,0.18); }
.delivery-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 9999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s; font-family: 'Inter', sans-serif;
}
.delivery-chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 768px) { .delivery-chip-grid { grid-template-columns: repeat(3, 1fr); } }
.delivery-chip-grid .delivery-chip { border-radius: 12px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 16px; color: var(--text-secondary); font-family: 'Inter', sans-serif; }
.check-item svg { flex-shrink: 0; }
.maturity-num-bg { position: absolute; top: 16px; right: 16px; font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; user-select: none; font-family: 'Space Grotesk', sans-serif; }
.maturity-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-dark), var(--gradient-to)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; margin: 0 auto 16px; }
.newsletter-row { display: flex; flex-direction: column; gap: 12px; max-width: 448px; margin: 0 auto; }
@media (min-width: 480px) { .newsletter-row { flex-direction: row; } }
.resource-download-form { display: flex; flex-direction: column; gap: 12px; }
.eco-color-block { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 24px; }
.zoom-stage { position: relative; }
.zoom-panel { position: relative; width: 100%; }
.fade-up { /* animated via JS IntersectionObserver */ }

/* ── Industries We Enable (redesign) ───────────────────────── */
.industries-header { display: none; } /* replaced by ind-hero-content */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.ind-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px 28px;
  background: rgba(5,5,20,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.ind-card:hover {
  background: rgba(99,102,241,0.07);
  border-color: rgba(99,102,241,0.35);
  transform: translateY(-4px);
}

.ind-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ind-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ind-accent {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.ind-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-header .section-title { font-size: 2rem; }
}

/* ── Section reveal on scroll ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Grid layouts ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-5 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 768px) {
  .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-5 { grid-template-columns: repeat(5, 1fr); }
  .grid-2-3 { grid-template-columns: 3fr 2fr; }
  .grid-3-2 { grid-template-columns: 2fr 3fr; }
  .grid-md-1-2 { grid-template-columns: 2fr 3fr; }
}
.flex-wrap-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }

/* ── Color utilities ─────────────────────────────────────── */
.text-cyan    { color: #22d3ee; }
.text-violet  { color: var(--accent); }
.text-emerald { color: #34d399; }
.text-teal    { color: #2dd4bf; }
.text-amber   { color: #fbbf24; }
.text-pink    { color: #f472b6; }
.text-blue    { color: #60a5fa; }
.text-orange  { color: #fb923c; }
.text-white   { color: var(--text); }
.text-indigo  { color: var(--accent); }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: var(--text-secondary); }
.text-slate-500 { color: var(--text-muted); }
.text-slate-600 { color: var(--text-dim); }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.dot-cyan    { background: #22d3ee; }
.dot-violet  { background: var(--accent); }
.dot-emerald { background: #34d399; }
.dot-teal    { background: #2dd4bf; }
.dot-pink    { background: #f472b6; }
.dot-amber   { background: #fbbf24; }
.dot-blue    { background: #60a5fa; }
.dot-orange  { background: #fb923c; }
.dot-slate   { background: var(--text-dim); }

/* ── Utilities ───────────────────────────────────────────── */
.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 24px 0; }
.text-center { text-align: center; }
.mt-4{margin-top:16px} .mt-6{margin-top:24px} .mt-8{margin-top:32px} .mt-10{margin-top:40px} .mt-12{margin-top:48px}
.mb-3{margin-bottom:12px} .mb-4{margin-bottom:16px} .mb-5{margin-bottom:20px} .mb-6{margin-bottom:24px}
.mb-8{margin-bottom:32px} .mb-10{margin-bottom:40px} .mb-12{margin-bottom:48px} .mb-16{margin-bottom:64px}
.gap-2{gap:8px} .gap-3{gap:12px} .gap-4{gap:16px} .gap-6{gap:24px} .gap-8{gap:32px} .gap-10{gap:40px} .gap-12{gap:48px}
.flex{display:flex} .flex-col{flex-direction:column} .items-center{align-items:center} .items-start{align-items:flex-start}
.justify-between{justify-content:space-between} .justify-center{justify-content:center} .flex-wrap{flex-wrap:wrap}
.w-full{width:100%} .max-w-sm{max-width:384px} .max-w-md{max-width:448px} .max-w-lg{max-width:512px}
.max-w-xl{max-width:576px} .max-w-2xl{max-width:672px} .max-w-3xl{max-width:768px}
.mx-auto{margin-left:auto;margin-right:auto} .relative{position:relative} .absolute{position:absolute}
.inset-0{top:0;left:0;right:0;bottom:0} .overflow-hidden{overflow:hidden} .pointer-events-none{pointer-events:none}
.z-10{z-index:10} .flex-1{flex:1} .flex-shrink-0{flex-shrink:0}
.font-bold{font-weight:700} .font-semibold{font-weight:600} .font-medium{font-weight:500}
.leading-snug{line-height:1.375} .leading-relaxed{line-height:1.7}
.space-y-4>*+*{margin-top:16px} .space-y-6>*+*{margin-top:24px} .space-y-8>*+*{margin-top:32px}

/* ═══════════════════════════════════════════════════════════════════
   MODERN NEON REDESIGN
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS Houdini: animatable custom property for angle ────── */
@property --neon-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── Shared keyframes ─────────────────────────────────────── */
@keyframes neon-border-spin {
  to { --neon-angle: 360deg; }
}
@keyframes shimmer-sweep {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(320%)  skewX(-18deg); }
}
@keyframes glow-breathe {
  0%, 100% { box-shadow: var(--breathe-start); }
  50%       { box-shadow: var(--breathe-mid); }
}
@keyframes scan-line {
  0%   { top: -4px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes neon-flicker {
  0%, 95%, 100% { opacity: 1; }
  96%            { opacity: 0.75; }
  97%            { opacity: 1; }
  98%            { opacity: 0.6; }
  99%            { opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   1. AI SHIFT STAT CARDS — neon box-shadow border + shimmer
   ══════════════════════════════════════════════════════════ */
.ai-shift-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s, box-shadow 0.35s;
}
.ai-shift-card:hover {
  border-color: rgba(139, 92, 246, 0.7);
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.5),
    0 0 20px rgba(139, 92, 246, 0.35),
    0 0 50px rgba(96, 165, 250, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
/* Shimmer sweep — pointer-events none, z-index below text */
.ai-shift-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    105deg,
    transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%
  );
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}
.ai-shift-card:hover::after {
  animation: shimmer-sweep 0.7s ease-out forwards;
}
/* Ensure card content stays above shimmer */
.ai-shift-card > *:not(::after) { position: relative; z-index: 1; }
.ai-shift-card .ai-shift-card-top,
.ai-shift-card .ai-shift-stat,
.ai-shift-card .ai-shift-desc { position: relative; z-index: 1; }

/* Featured card — spans both rows, column 2 */
.ai-shift-card--featured {
  background: linear-gradient(160deg, rgba(88,28,220,0.95) 0%, rgba(124,58,237,0.85) 100%) !important;
  border-color: rgba(139,92,246,0.7);
  box-shadow: 0 0 48px rgba(139,92,246,0.4);
  grid-column: 2;
  grid-row: 1 / 3;
  justify-content: center;
}
.ai-shift-card--featured .ai-shift-stat {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-shift-card--featured .ai-shift-desc {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
/* Neon stat number glow */
.ai-shift-card:hover .ai-shift-stat {
  filter: drop-shadow(0 0 10px rgba(129, 140, 248, 0.6));
}
.ai-shift-card:hover .ai-shift-icon {
  background: rgba(139, 92, 246, 0.28);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.45);
}

/* ══════════════════════════════════════════════════════════
   2. READINESS GAP CARDS — gradient border + per-card neon
   ══════════════════════════════════════════════════════════ */
.rg-card {
  position: relative;
  isolation: isolate;
  padding-left: 28px; /* room for the colored left bar */
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s, box-shadow 0.35s;
}
/* Animated gradient border overlay on hover */
.rg-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    var(--rg-neon-a, rgba(96,165,250,0.7)),
    var(--rg-neon-b, rgba(168,85,247,0.7))
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.rg-card:hover::before { opacity: 1; }

/* Colored left accent bar */
.rg-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%; bottom: 20%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--rg-accent, #818cf8);
  box-shadow: 0 0 12px var(--rg-accent, #818cf8);
  transition: top 0.35s, bottom 0.35s, box-shadow 0.35s;
}
.rg-card:hover::after {
  top: 10%; bottom: 10%;
  box-shadow: 0 0 20px var(--rg-accent, #818cf8), 0 0 40px var(--rg-accent, #818cf8);
}

/* Per-card neon colors */
.rg-card:nth-child(1) {
  --rg-accent: #60a5fa;
  --rg-neon-a: rgba(96,165,250,0.8);
  --rg-neon-b: rgba(59,130,246,0.5);
}
.rg-card:nth-child(2) {
  --rg-accent: #a855f7;
  --rg-neon-a: rgba(168,85,247,0.8);
  --rg-neon-b: rgba(124,58,237,0.5);
}
.rg-card:nth-child(3) {
  --rg-accent: #fbbf24;
  --rg-neon-a: rgba(251,191,36,0.8);
  --rg-neon-b: rgba(245,158,11,0.5);
}
.rg-card:nth-child(4) {
  --rg-accent: #34d399;
  --rg-neon-a: rgba(52,211,153,0.8);
  --rg-neon-b: rgba(16,185,129,0.5);
}

/* Hover box-shadow per card */
.rg-card:nth-child(1):hover {
  border-color: transparent;
  box-shadow: 0 12px 50px rgba(96,165,250,0.3), 0 0 80px rgba(96,165,250,0.08);
  transform: translateY(-6px) scale(1.01);
}
.rg-card:nth-child(2):hover {
  border-color: transparent;
  box-shadow: 0 12px 50px rgba(168,85,247,0.35), 0 0 80px rgba(168,85,247,0.1);
  transform: translateY(-6px) scale(1.01);
}
.rg-card:nth-child(3):hover {
  border-color: transparent;
  box-shadow: 0 12px 50px rgba(251,191,36,0.3), 0 0 80px rgba(251,191,36,0.06);
  transform: translateY(-6px) scale(1.01);
}
.rg-card:nth-child(4):hover {
  border-color: transparent;
  box-shadow: 0 12px 50px rgba(52,211,153,0.3), 0 0 80px rgba(52,211,153,0.08);
  transform: translateY(-6px) scale(1.01);
}

/* Icon neon color per card */
.rg-card:nth-child(1) .rg-card-icon { border-color: rgba(96,165,250,0.4); background: rgba(96,165,250,0.1); }
.rg-card:nth-child(2) .rg-card-icon { border-color: rgba(168,85,247,0.4); background: rgba(168,85,247,0.1); }
.rg-card:nth-child(3) .rg-card-icon { border-color: rgba(251,191,36,0.4); background: rgba(251,191,36,0.08); }
.rg-card:nth-child(4) .rg-card-icon { border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.08); }

/* Arrow neon glow on hover */
.rg-card:hover .rg-card-arrow { color: var(--rg-accent, #818cf8); text-shadow: 0 0 12px var(--rg-accent, #818cf8); }

/* ══════════════════════════════════════════════════════════
   3. ENABLES CARDS — enhanced neon with top scan-line + shimmer
   ══════════════════════════════════════════════════════════ */

/* Top neon gradient glow line */
.enables-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: var(--top-line, linear-gradient(to right, transparent, rgba(129,140,248,0.6), transparent));
  z-index: 2;
  transition: left 0.4s, right 0.4s, opacity 0.4s;
}
.enables-card:hover::before { left: 5%; right: 5%; }
.enables-card--red::before   { background: linear-gradient(to right, transparent, rgba(244,63,94,0.9), transparent); }
.enables-card--blue::before  { background: linear-gradient(to right, transparent, rgba(96,165,250,0.9), transparent); }
.enables-card--purple::before{ background: linear-gradient(to right, transparent, rgba(168,85,247,1), transparent); }
.enables-card--teal::before  { background: linear-gradient(to right, transparent, rgba(45,212,191,0.9), transparent); }

/* Scan line that sweeps down on hover */
.enables-card .enables-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--scan-color, rgba(129,140,248,0.5)), transparent);
  top: -4px;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.enables-card--red   .enables-scan { --scan-color: rgba(244,63,94,0.7); }
.enables-card--blue  .enables-scan { --scan-color: rgba(96,165,250,0.6); }
.enables-card--purple .enables-scan { --scan-color: rgba(168,85,247,0.7); }
.enables-card--teal  .enables-scan { --scan-color: rgba(45,212,191,0.6); }
.enables-card:hover .enables-scan {
  animation: scan-line 1.2s ease-in-out forwards;
}

/* Stronger neon hover glow */
.enables-card--blue:hover {
  border-color: rgba(96,165,250,0.6);
  box-shadow:
    0 0 0 1px rgba(96,165,250,0.4),
    0 20px 60px rgba(96,165,250,0.2),
    0 0 120px rgba(96,165,250,0.06),
    inset 0 0 40px rgba(96,165,250,0.04);
  transform: translateY(-8px);
}
.enables-card--purple:hover {
  border-color: rgba(168,85,247,0.7);
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.5),
    0 20px 60px rgba(168,85,247,0.25),
    0 0 120px rgba(168,85,247,0.08),
    inset 0 0 40px rgba(168,85,247,0.06);
  transform: translateY(-8px);
}
.enables-card--teal:hover {
  border-color: rgba(45,212,191,0.6);
  box-shadow:
    0 0 0 1px rgba(45,212,191,0.4),
    0 20px 60px rgba(45,212,191,0.18),
    0 0 120px rgba(45,212,191,0.06),
    inset 0 0 40px rgba(45,212,191,0.04);
  transform: translateY(-8px);
}

/* Glowing icon badge on hover */
.enables-card--blue:hover  .enables-icon-badge { box-shadow: 0 0 24px rgba(96,165,250,0.5); }
.enables-card--purple:hover .enables-icon-badge { box-shadow: 0 0 24px rgba(168,85,247,0.6); }
.enables-card--teal:hover  .enables-icon-badge { box-shadow: 0 0 24px rgba(45,212,191,0.5); }

/* Large ghost number in bottom-right corner */
.enables-card .enables-ghost-num {
  position: absolute;
  bottom: -8px; right: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.4s;
  z-index: 0;
}
.enables-card--blue:hover  .enables-ghost-num { color: rgba(96,165,250,0.05); }
.enables-card--purple:hover .enables-ghost-num { color: rgba(168,85,247,0.06); }
.enables-card--teal:hover  .enables-ghost-num { color: rgba(45,212,191,0.05); }

/* ══════════════════════════════════════════════════════════
   4. APPROACH CARDS — neon top bar + numbered glow + arrows
   ══════════════════════════════════════════════════════════ */
.approach-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s, box-shadow 0.35s;
}
/* Top neon line */
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  transition: left 0.4s, right 0.4s;
  z-index: 2;
}
.approach-card--blue::before   { background: linear-gradient(to right, transparent, rgba(96,165,250,0.8), transparent); }
.approach-card--purple::before { background: linear-gradient(to right, transparent, rgba(168,85,247,0.9), transparent); }
.approach-card--teal::before   { background: linear-gradient(to right, transparent, rgba(52,211,153,0.8), transparent); }
.approach-card:hover::before   { left: 5%; right: 5%; }

/* Hover box-shadow neon */
.approach-card--blue:hover {
  border-color: rgba(96,165,250,0.6);
  box-shadow: 0 0 0 1px rgba(96,165,250,0.3), 0 16px 48px rgba(96,165,250,0.18), inset 0 0 40px rgba(96,165,250,0.04);
  transform: translateY(-6px);
}
.approach-card--purple:hover {
  border-color: rgba(168,85,247,0.7);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.4), 0 16px 48px rgba(168,85,247,0.22), inset 0 0 40px rgba(168,85,247,0.05);
  transform: translateY(-6px);
}
.approach-card--teal:hover {
  border-color: rgba(52,211,153,0.6);
  box-shadow: 0 0 0 1px rgba(52,211,153,0.3), 0 16px 48px rgba(52,211,153,0.16), inset 0 0 40px rgba(52,211,153,0.04);
  transform: translateY(-6px);
}

/* Icon badge glow on hover */
.approach-card--blue:hover  .approach-icon { box-shadow: 0 0 24px rgba(96,165,250,0.45); }
.approach-card--purple:hover .approach-icon { box-shadow: 0 0 24px rgba(168,85,247,0.55); }
.approach-card--teal:hover  .approach-icon { box-shadow: 0 0 24px rgba(52,211,153,0.45); }

/* Step number glow */
.approach-card--blue:hover  .approach-num { text-shadow: 0 0 16px rgba(96,165,250,0.8); }
.approach-card--purple:hover .approach-num { text-shadow: 0 0 16px rgba(168,85,247,0.9); }
.approach-card--teal:hover  .approach-num { text-shadow: 0 0 16px rgba(52,211,153,0.8); }

/* Divider glow on hover */
.approach-card--blue:hover  .approach-divider { box-shadow: 0 0 8px rgba(96,165,250,0.9); }
.approach-card--purple:hover .approach-divider { box-shadow: 0 0 8px rgba(168,85,247,0.9); }
.approach-card--teal:hover  .approach-divider { box-shadow: 0 0 8px rgba(52,211,153,0.9); }

/* Connecting arrows between approach cards (desktop only) */
.approach-grid {
  position: relative;
}
.approach-grid::before,
.approach-grid::after {
  content: '→';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(129, 140, 248, 0.3);
  text-shadow: 0 0 12px rgba(129, 140, 248, 0.5);
  pointer-events: none;
  z-index: 20;
  animation: neon-flicker 5s ease-in-out infinite;
}
.approach-grid::before { left: calc(33.33% - 14px); }
.approach-grid::after  { left: calc(66.66% - 14px); }
@media (max-width: 900px) {
  .approach-grid::before, .approach-grid::after { display: none; }
}

/* ══════════════════════════════════════════════════════════
   5. INDUSTRY CARDS — per-industry neon, icon circle glow
   ══════════════════════════════════════════════════════════ */
.ind-card {
  position: relative;
  isolation: isolate;
  transition: background 0.25s, border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  z-index: 1;
}
.ind-card:hover::before {
  animation: shimmer-sweep 0.65s ease-out forwards;
}
/* Bottom neon glow line (over the existing accent bar) */
.ind-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  border-radius: 2px;
  background: var(--ind-neon, rgba(129,140,248,0.6));
  box-shadow: 0 0 12px var(--ind-neon, rgba(129,140,248,0.6));
  opacity: 0;
  transition: opacity 0.3s, left 0.3s, right 0.3s;
}
.ind-card:hover::after { opacity: 1; left: 5%; right: 5%; }

/* Per-industry neon colors */
.ind-card:nth-child(1) { --ind-neon: #f97316; }
.ind-card:nth-child(2) { --ind-neon: #818cf8; }
.ind-card:nth-child(3) { --ind-neon: #f43f5e; }
.ind-card:nth-child(4) { --ind-neon: #ef4444; }
.ind-card:nth-child(5) { --ind-neon: #3b82f6; }
.ind-card:nth-child(6) { --ind-neon: #22c55e; }
.ind-card:nth-child(7) { --ind-neon: #a855f7; }

/* Per-industry hover box-shadows */
.ind-card:nth-child(1):hover { border-color: rgba(249,115,22,0.55); box-shadow: 0 8px 40px rgba(249,115,22,0.25), inset 0 0 30px rgba(249,115,22,0.04); background: rgba(249,115,22,0.05); transform: translateY(-6px) scale(1.02); }
.ind-card:nth-child(2):hover { border-color: rgba(129,140,248,0.55); box-shadow: 0 8px 40px rgba(129,140,248,0.25), inset 0 0 30px rgba(129,140,248,0.04); background: rgba(129,140,248,0.05); transform: translateY(-6px) scale(1.02); }
.ind-card:nth-child(3):hover { border-color: rgba(244,63,94,0.55);  box-shadow: 0 8px 40px rgba(244,63,94,0.25),  inset 0 0 30px rgba(244,63,94,0.04);  background: rgba(244,63,94,0.05);  transform: translateY(-6px) scale(1.02); }
.ind-card:nth-child(4):hover { border-color: rgba(239,68,68,0.55);  box-shadow: 0 8px 40px rgba(239,68,68,0.25),  inset 0 0 30px rgba(239,68,68,0.04);  background: rgba(239,68,68,0.05);  transform: translateY(-6px) scale(1.02); }
.ind-card:nth-child(5):hover { border-color: rgba(59,130,246,0.55); box-shadow: 0 8px 40px rgba(59,130,246,0.25), inset 0 0 30px rgba(59,130,246,0.04); background: rgba(59,130,246,0.05); transform: translateY(-6px) scale(1.02); }
.ind-card:nth-child(6):hover { border-color: rgba(34,197,94,0.55);  box-shadow: 0 8px 40px rgba(34,197,94,0.25),  inset 0 0 30px rgba(34,197,94,0.04);  background: rgba(34,197,94,0.05);  transform: translateY(-6px) scale(1.02); }
.ind-card:nth-child(7):hover { border-color: rgba(168,85,247,0.55); box-shadow: 0 8px 40px rgba(168,85,247,0.25), inset 0 0 30px rgba(168,85,247,0.04); background: rgba(168,85,247,0.05); transform: translateY(-6px) scale(1.02); }

/* Icon circle glow on hover per industry */
.ind-card:nth-child(1):hover .ind-icon-wrap { border-color: rgba(249,115,22,0.5); background: rgba(249,115,22,0.08); box-shadow: 0 0 20px rgba(249,115,22,0.35); }
.ind-card:nth-child(2):hover .ind-icon-wrap { border-color: rgba(129,140,248,0.5); background: rgba(129,140,248,0.08); box-shadow: 0 0 20px rgba(129,140,248,0.35); }
.ind-card:nth-child(3):hover .ind-icon-wrap { border-color: rgba(244,63,94,0.5);  background: rgba(244,63,94,0.08);  box-shadow: 0 0 20px rgba(244,63,94,0.35); }
.ind-card:nth-child(4):hover .ind-icon-wrap { border-color: rgba(239,68,68,0.5);  background: rgba(239,68,68,0.08);  box-shadow: 0 0 20px rgba(239,68,68,0.35); }
.ind-card:nth-child(5):hover .ind-icon-wrap { border-color: rgba(59,130,246,0.5); background: rgba(59,130,246,0.08); box-shadow: 0 0 20px rgba(59,130,246,0.35); }
.ind-card:nth-child(6):hover .ind-icon-wrap { border-color: rgba(34,197,94,0.5);  background: rgba(34,197,94,0.08);  box-shadow: 0 0 20px rgba(34,197,94,0.35); }
.ind-card:nth-child(7):hover .ind-icon-wrap { border-color: rgba(168,85,247,0.5); background: rgba(168,85,247,0.08); box-shadow: 0 0 20px rgba(168,85,247,0.35); }

/* Ind name neon glow on hover per industry */
.ind-card:nth-child(1):hover .ind-name { text-shadow: 0 0 16px rgba(249,115,22,0.8); }
.ind-card:nth-child(2):hover .ind-name { text-shadow: 0 0 16px rgba(129,140,248,0.8); }
.ind-card:nth-child(3):hover .ind-name { text-shadow: 0 0 16px rgba(244,63,94,0.8); }
.ind-card:nth-child(4):hover .ind-name { text-shadow: 0 0 16px rgba(239,68,68,0.8); }
.ind-card:nth-child(5):hover .ind-name { text-shadow: 0 0 16px rgba(59,130,246,0.8); }
.ind-card:nth-child(6):hover .ind-name { text-shadow: 0 0 16px rgba(34,197,94,0.8); }
.ind-card:nth-child(7):hover .ind-name { text-shadow: 0 0 16px rgba(168,85,247,0.8); }

/* ══════════════════════════════════════════════════════════
   6. IMPACT CELLS — neon stats glow
   ══════════════════════════════════════════════════════════ */
.impact-cell {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s;
}
.impact-cell:hover {
  border-color: rgba(99,102,241,0.45);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.25), 0 8px 40px rgba(99,102,241,0.15), inset 0 0 30px rgba(99,102,241,0.04);
  transform: translateY(-4px) scale(1.01);
}
.impact-cell:hover .stat-value {
  filter: drop-shadow(0 0 14px rgba(129,140,248,0.65));
}
/* Shimmer */
.impact-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-18deg);
}
.impact-cell:hover::before {
  animation: shimmer-sweep 0.7s ease-out forwards;
}

/* ══════════════════════════════════════════════════════════
   7. WHY AUXOVA CARDS — glassmorphism + shimmer
   ══════════════════════════════════════════════════════════ */
.why-card {
  background: rgba(5,8,20,0.55) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s, border-color 0.35s !important;
}
.why-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(129,140,248,0.4) !important;
  box-shadow: 0 8px 40px rgba(99,102,241,0.2), 0 0 0 1px rgba(129,140,248,0.15);
}
/* Shimmer sweep */
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
  z-index: 1;
}
.why-card:hover::after {
  animation: shimmer-sweep 0.7s ease-out forwards;
}

/* ══════════════════════════════════════════════════════════
   8. SECTION BACKGROUNDS
   ══════════════════════════════════════════════════════════ */
.enables-section {
  background-image: url('../images/bg_backup.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.approach-section {
  background-image: linear-gradient(rgba(9,9,11,0.25), rgba(9,9,11,0.25)), url('../images/bg_backup.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.industries-section {
  position: relative;
  background-image: url('../images/service2_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Upper-left gradient overlay for text readability */
.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at top left, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* service3_bg overlay — sits over the bg, under the content */
.ind-service3-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/service3_bg.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* Header — left-aligned, sits in top half over background */
.ind-hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 620px;
  padding-bottom: 36px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.ind-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  padding: 6px 16px 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  margin-bottom: 18px;
}
.ind-play-badge svg {
  background: #f43f5e;
  border-radius: 50%;
  padding: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ind-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  white-space: nowrap;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ind-title-blue {
  background: linear-gradient(90deg, #22d3ee 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ind-title-red  { color: #ffffff; }

.ind-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

.ind-title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #f43f5e);
  border-radius: 2px;
  margin-bottom: 24px;
}

.ind-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.ind-see-how {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: gap 0.2s;
}
.ind-see-how:hover { gap: 16px; }
.ind-play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.ind-see-how:hover .ind-play-circle {
  background: rgba(244,63,94,0.2);
  border-color: rgba(244,63,94,0.5);
}

/* Icon wrap on cards */
.ind-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: box-shadow 0.3s, background 0.3s;
}
.ind-card:hover .ind-icon-wrap {
  box-shadow: 0 0 20px color-mix(in srgb, var(--ic) 40%, transparent);
  background: color-mix(in srgb, var(--ic) 20%, transparent);
}

/* ══════════════════════════════════════════════════════════
   9. INDUSTRIES — horizontal auto-scroll marquee
   ══════════════════════════════════════════════════════════ */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.industries-section {
  padding-bottom: 0;
}
.industries-section .container-7xl {
  padding-bottom: 24px;
  width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 80px;
  box-sizing: border-box;
}

.ind-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 0 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ind-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  padding: 24px 0;
}
.ind-track:hover { animation-play-state: paused; }

.ind-card {
  flex-shrink: 0;
  width: 240px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 28px;
  background: rgba(8,8,24,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--ind-neon, rgba(129,140,248,0.8));
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.ind-card:hover {
  background: rgba(12,10,40,0.9);
  border-color: var(--ind-neon, rgba(129,140,248,0.9));
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px var(--ind-neon, rgba(129,140,248,0.2));
  transform: translateY(-8px) scale(1.03);
}
.ind-card {
  cursor: default;
  pointer-events: none;
}
.ind-card .ind-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  min-height: 80px;
  display: flex;
  align-items: flex-end;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ind-card:hover .ind-name { text-shadow: 0 0 20px var(--ind-neon, rgba(129,140,248,0.6)); }
.ind-card .ind-accent {
  width: 32px; height: 2px;
  border-radius: 2px;
  margin: 0 0 16px;
  flex-shrink: 0;
  transition: width 0.3s, box-shadow 0.3s;
}
.ind-card:hover .ind-accent { width: 48px; box-shadow: 0 0 10px var(--ind-neon, rgba(129,140,248,0.7)); }
.ind-card .ind-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  font-family: 'Inter', sans-serif;
  margin: 0;
  transition: color 0.3s;
}
.ind-card:hover .ind-desc { color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .ind-card { min-width: 240px; padding: 28px 32px 28px 24px; }
  .ind-hero-content { width: 100%; max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   10. ENHANCED SECTION LABELS — neon underline pulse
   ══════════════════════════════════════════════════════════ */
.enables-label-underline {
  border-bottom-color: transparent;
  background-image: linear-gradient(to right, var(--gradient-from), var(--gradient-to));
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-bottom: 10px;
}

/* ══════════════════════════════════════════════════════════
   11. HERO EYEBROW — animated ping neon
   ══════════════════════════════════════════════════════════ */
.hero-eyebrow {
  box-shadow: 0 0 20px rgba(99,102,241,0.2);
  animation: glow-breathe 3s ease-in-out infinite;
  --breathe-start: 0 0 12px rgba(99,102,241,0.15), inset 0 0 12px rgba(99,102,241,0.05);
  --breathe-mid:   0 0 28px rgba(99,102,241,0.35), inset 0 0 20px rgba(99,102,241,0.08);
}

/* ══════════════════════════════════════════════════════════
   12. GLOW-TEXT — enhanced neon drop shadow
   ══════════════════════════════════════════════════════════ */
.glow-text {
  filter: drop-shadow(0 0 24px rgba(96,165,250,0.4)) drop-shadow(0 0 48px rgba(168,85,247,0.2));
}

/* ══════════════════════════════════════════════════════════
   13. BUTTONS — neon primary hero button glow pulse
   ══════════════════════════════════════════════════════════ */
.btn-hero-primary {
  animation: glow-breathe 3s ease-in-out infinite;
  --breathe-start: 0 0 20px rgba(124,58,237,0.4), 0 4px 20px rgba(124,58,237,0.3);
  --breathe-mid:   0 0 36px rgba(124,58,237,0.7), 0 4px 32px rgba(124,58,237,0.5);
}

/* ══════════════════════════════════════════════════════════
   AI SHIFT + READINESS GAP — alignment, overlays & polish
   ══════════════════════════════════════════════════════════ */

/* --- Alignment: standardise right-column widths --- */
.ai-shift-content { max-width: 60%; }
.rg-content       { max-width: 600px; }

/* Section heights */
.ai-shift-section { min-height: 90vh; display: flex; flex-direction: column; }
.rg-section       { min-height: auto; }
.ai-shift-inner   {
  padding: 72px 0 56px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* --- Tinted overlays: transparent on the image (left) side, dark on the content (right) side --- */
.ai-shift-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,4,40,0.92) 0%,
    rgba(8,4,40,0.82) 20%,
    rgba(4,6,32,0.55) 42%,
    transparent 62%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
.rg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 2, 10, 0.95) 0%,
    rgba(6, 2, 10, 0.88) 22%,
    rgba(10, 3, 18, 0.52) 45%,
    transparent 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Ensure content sits above both overlays */
.rg-inner { position: relative; z-index: 2; }

/* No hard border — sections share the same fixed bg and blend through their overlays */

/* --- AI Shift source note stagger --- */
.ai-shift-source { display: block; }

/* --- Heading snap-in animation (triggered via JS class) --- */
@keyframes heading-snap {
  0%   { opacity: 0; transform: translateX(-48px); letter-spacing: 0.06em; }
  60%  { letter-spacing: -0.01em; }
  100% { opacity: 1; transform: translateX(0);    letter-spacing: -0.025em; }
}
.ai-shift-heading.snap-in,
.rg-heading.snap-in {
  animation: heading-snap 0.85s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* --- Content block slide-from-left --- */
.ai-shift-section .ai-shift-content {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.ai-shift-section .ai-shift-content.content-visible {
  opacity: 1;
  transform: translateX(0);
}
/* Headings start visible within their content blocks (blocks handle reveal) */
.ai-shift-section .ai-shift-heading,
.rg-section .rg-heading {
  opacity: 1;
}

/* --- No border accent — content now on left side --- */
.ai-shift-content {
  border-left: none;
  padding-left: 0;
}

/* --- Soft left-edge accent on Readiness Gap content --- */
.rg-content {
  border-left: 2px solid rgba(96,165,250,0.2);
  padding-left: 28px;
}

/* --- Count-up stat glow pulse when done --- */
@keyframes stat-pop {
  0%   { filter: drop-shadow(0 0 0px rgba(129,140,248,0)); }
  50%  { filter: drop-shadow(0 0 18px rgba(129,140,248,0.7)); }
  100% { filter: drop-shadow(0 0 8px rgba(129,140,248,0.35)); }
}
.ai-shift-stat.counted {
  animation: stat-pop 0.5s ease-out forwards;
}


/* ══════════════════════════════════════════════════════════
   14. MOBILE — swap fixed bg to scroll (no GPU support for
       background-attachment:fixed on iOS/Android)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ai-shift-section,
  .rg-section,
  .enables-section,
  .approach-section,
  .industries-section,
  .business-bg-section,
  .cta-final-section,
  .ai-insight-wrapper {
    background-attachment: scroll;
  }
  /* Mobile section heights — let content drive height */
  .ai-shift-section { min-height: unset; }
  .rg-section       { min-height: unset; }
  .ai-shift-inner   { padding: 56px 0 48px; }
  /* Drop decorative left border on full-width mobile columns */
  .ai-shift-content,
  .rg-content {
    border-left: none;
    padding-left: 0;
  }
}

/* ══════════════════════════════════════════════════════════
   15. REDUCED MOTION — disable all neon animations
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ai-shift-card::before,
  .rg-card::before,
  .ind-card::before,
  .impact-cell::before,
  .enables-card .enables-scan { animation: none !important; }
  .hero-eyebrow, .btn-hero-primary { animation: none !important; box-shadow: none; }
  .approach-grid::before, .approach-grid::after { animation: none !important; }
  .glow-text { filter: none; }
  .ai-shift-heading.snap-in, .rg-heading.snap-in { animation: none !important; opacity: 1 !important; }
}

/* ══════════════════════════════════════════════════════════
   16. AI SHIFT SECTION — pink/magenta colour overrides
       (matches the warm particle-wave background image)
   ══════════════════════════════════════════════════════════ */

/* Robot overlay — right side, pinned to bottom */
.ai-shift-robot {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 58%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: normal;
  /* Initial state — off-screen to the right */
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.ai-shift-robot.robot-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 900px) {
  .ai-shift-robot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-shift-robot { transition: none; opacity: 1; transform: none; }
}

/* Eyebrow line */
.ai-shift-section .ai-shift-eyebrow-line {
  background: #a855f7;
}
.ai-shift-section .ai-shift-eyebrow {
  color: rgba(255,255,255,0.75);
}

/* Heading gradient: "technology challenge" */
.ai-shift-section .ai-shift-heading .glow-text {
  background: linear-gradient(to right, #f43f5e, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

/* Stat numbers */
.ai-shift-section .ai-shift-stat {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat cards — pink-tinted border */
.ai-shift-section .ai-shift-card {
  background: rgba(20, 4, 14, 0.55);
  border-color: rgba(244, 63, 94, 0.18);
}
.ai-shift-section .ai-shift-card:hover {
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 8px 32px rgba(244, 63, 94, 0.15);
}

/* Source note */
.ai-shift-section .ai-shift-source {
  color: rgba(255,255,255,0.55);
}

/* Overlay — keep left side darker to match the deeper black of the image */
.ai-shift-section::before {
  background: linear-gradient(
    to right,
    rgba(6, 2, 10, 0.94) 0%,
    rgba(6, 2, 10, 0.85) 22%,
    rgba(10, 3, 18, 0.50) 45%,
    transparent 65%,
    transparent 100%
  );
}

/* ══════════════════════════════════════════════════════════
   READINESS GAP — typography & card redesign
   ══════════════════════════════════════════════════════════ */

/* ── Readiness Gap — full redesign ──────────────────────── */

/* Heading */
.rg-section .rg-heading {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

/* "Readiness Gap" — cyan → purple gradient */
.rg-section .rg-heading .glow-text {
  background: linear-gradient(to right, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

/* Eyebrow */
.rg-section .ai-shift-eyebrow-line { background: #a855f7; }
.rg-section .ai-shift-eyebrow { color: #a855f7; font-weight: 600; letter-spacing: 0.1em; }

/* Description */
.rg-section .rg-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* Kill the old left-bar ::after and gradient ::before from base .rg-card rules */
.rg-section .rg-card::after { display: none; }
.rg-section .rg-card::before { display: none; }

/* Content takes 70% — robot occupies the remaining 30% */
.rg-section .rg-content {
  width: 70%;
  max-width: 70%;
  border-left: none;
  padding-left: 0;
}

/* Card grid — 4 equal columns across the 70% */
.rg-section .rg-cards {
  gap: 16px;
  align-items: stretch;
  margin-top: 8px;
}

/* Card base */
.rg-section .rg-card {
  background: rgba(12, 12, 35, 0.75);
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-radius: 18px;
  padding: 28px 24px 24px;
  gap: 0;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Top accent bar — site-matching purple/pink gradient */
.rg-section .rg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4) 40%, rgba(244,63,94,0.4) 60%, transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.rg-section .rg-card:hover::before { opacity: 1; }

/* No bottom pseudo — keep clean */
.rg-section .rg-card::after { display: none !important; }

/* Unified hover — purple border glow matching site palette */
.rg-section .rg-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.12), 0 20px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-5px);
}

/* Number label — neutral, no per-card colors */
.rg-section .rg-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  margin-bottom: 18px;
}
.rg-section .rg-card:hover .rg-card-num { color: #f43f5e; }

/* Card title */
.rg-section .rg-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.rg-section .rg-card:hover .rg-card-title { color: #ffffff; }

/* Thin rule under title — matches site's purple/pink */
.rg-section .rg-card-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(to right, #f43f5e, rgba(168,85,247,0.5));
  border-radius: 1px;
  transition: width 0.35s ease;
}
.rg-section .rg-card:hover .rg-card-title::after { width: 40px; }

/* Card description */
.rg-section .rg-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.rg-section .rg-card:hover .rg-card-desc { color: rgba(255,255,255,0.58); }

/* Explore link */
.rg-section .rg-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rg-section .rg-card-link span { display: inline-block; transition: transform 0.25s; }
.rg-section .rg-card:hover .rg-card-link { color: rgba(168,85,247,0.85); }
.rg-section .rg-card:hover .rg-card-link span { transform: translateX(4px); }

@media (max-width: 1024px) {
  .rg-section .rg-content { width: 100%; max-width: 100%; }
}
