/* ============================================================
   GRSIX AI — Premium Soft-Theme Enterprise Redesign
   Glassmorphism · Soft Gradients · Neumorphic Depth · Motion
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Surfaces */
  --bg-base: #F4F7FD;
  --bg-primary: #F7F9FE;
  --bg-alt: #EEF2FB;
  --bg-white: #FFFFFF;
  --bg-dark: #0A1628;
  --bg-dark-mid: #111827;

  /* Text */
  --text-primary: #0B1526;
  --text-secondary: #4A5568;
  --text-muted: #8A99B3;

  /* Brand Blue Palette */
  --blue-900: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-200: #BFDBFE;
  --blue-soft: rgba(37, 99, 235, 0.08);
  --blue-border: rgba(37, 99, 235, 0.15);
  --blue-glow: 0 8px 32px rgba(37, 99, 235, 0.22);
  --blue-glow-sm: 0 4px 16px rgba(37, 99, 235, 0.16);

  /* Indigo accent for multi-tone */
  --indigo: #4F46E5;
  --violet: #7C3AED;

  /* Borders */
  --border: rgba(203, 213, 235, 0.8);
  --border-soft: rgba(203, 213, 235, 0.5);
  --border-hover: rgba(37, 99, 235, 0.25);

  /* Shadows — layered depth */
  --shadow-xs: 0 1px 2px rgba(11, 21, 38, 0.04);
  --shadow-sm: 0 2px 6px rgba(11, 21, 38, 0.05), 0 1px 2px rgba(11, 21, 38, 0.04);
  --shadow-md: 0 6px 16px rgba(11, 21, 38, 0.07), 0 2px 4px rgba(11, 21, 38, 0.04);
  --shadow-lg: 0 16px 40px rgba(11, 21, 38, 0.09), 0 4px 8px rgba(11, 21, 38, 0.05);
  --shadow-xl: 0 24px 64px rgba(11, 21, 38, 0.12), 0 8px 16px rgba(11, 21, 38, 0.06);
  --shadow-blue: 0 12px 40px rgba(37, 99, 235, 0.14), 0 4px 12px rgba(37, 99, 235, 0.08);
  --shadow-card: 0 4px 24px rgba(11, 21, 38, 0.06), 0 1px 4px rgba(11, 21, 38, 0.04);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(20px) saturate(160%);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 999px;

  /* Font */
  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

  /* Motion — restrained, elegant */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.38s;
  --dur-fast: 0.22s;
  --dur-slow: 0.55s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

::selection {
  background: rgba(37, 99, 235, 0.15);
  color: var(--text-primary);
}

/* ─── Ambient Background System ─── */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center,
      rgba(37, 99, 235, 0.045) 0%,
      rgba(79, 70, 229, 0.025) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

body::after {
  content: '';
  position: fixed;
  bottom: -25%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center,
      rgba(59, 130, 246, 0.04) 0%,
      rgba(124, 58, 237, 0.018) 45%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section,
.hero,
.nav,
.footer {
  position: relative;
  z-index: 1;
}

/* ─── Layout ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Typography ─── */
.heading-1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.038em;
}

.heading-2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.032em;
}

.text-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Pill Label ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 7px 18px;
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.07) 0%,
      rgba(79, 70, 229, 0.05) 100%);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  backdrop-filter: var(--glass-blur);
  transition: all var(--dur) var(--ease);
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  flex-shrink: 0;
  animation: pillPulse 2.8s ease-in-out infinite;
}

@keyframes pillPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.4);
  }
}

.pill:hover {
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.12) 0%,
      rgba(79, 70, 229, 0.08) 100%);
  border-color: rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
  box-shadow: var(--blue-glow-sm);
}

/* ─── Icon Tile ─── */
.icon-tile {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(145deg, #111827, #0A1628);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.42s var(--ease);
  box-shadow:
    0 2px 8px rgba(11, 21, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.icon-tile:hover {
  background: linear-gradient(145deg, var(--blue), var(--indigo));
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--blue-glow);
}

.icon-tile--sm {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 11px;
}

.icon-tile svg {
  flex-shrink: 0;
  transition: transform 0.32s var(--ease);
}

.icon-tile:hover svg {
  transform: scale(1.12);
}

/* ─── Section Layout ─── */
.section {
  position: relative;
  padding: 128px 0;
}

.section--alt {
  background: linear-gradient(180deg,
      rgba(238, 242, 251, 0.6) 0%,
      rgba(244, 247, 253, 0.9) 100%);
}

/* Soft section separator lines */
.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(37, 99, 235, 0.12) 30%,
      rgba(79, 70, 229, 0.1) 70%,
      transparent 100%);
}

.section--alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(37, 99, 235, 0.1) 30%,
      rgba(79, 70, 229, 0.08) 70%,
      transparent 100%);
  z-index: 0;
}

/* ─── Section Intro ─── */
.section-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro__desc {
  font-size: 1.06rem;
  color: var(--text-secondary);
  margin-top: 18px;
  line-height: 1.75;
  font-weight: 400;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--dur) var(--ease);
}

.nav--scrolled {
  background: rgba(247, 249, 254, 0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(203, 213, 235, 0.6);
  padding: 11px 0;
  box-shadow: 0 1px 24px rgba(11, 21, 38, 0.06);
}

.nav__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav__logo-icon {
  transition: transform var(--dur) var(--ease-spring);
}

.nav__logo:hover .nav__logo-icon {
  transform: rotate(12deg) scale(1.05);
}

.nav__logo-text {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.nav__logo-accent {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: 2px;
  transition: width 0.38s var(--ease);
}

.nav__link:hover {
  color: var(--blue);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  margin-left: 6px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  padding: 13px 30px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.005em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  color: #fff;
  box-shadow:
    0 2px 12px rgba(37, 99, 235, 0.32),
    0 1px 3px rgba(37, 99, 235, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.55s, height 0.55s;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37, 99, 235, 0.38),
    0 2px 8px rgba(79, 70, 229, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:hover::after {
  width: 320px;
  height: 320px;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  border-color: var(--border-hover);
  color: var(--blue);
  box-shadow: var(--shadow-sm), 0 0 0 3px rgba(37, 99, 235, 0.06);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 17px 40px;
  font-size: 0.96rem;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 148px 0 108px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(165deg,
      #F4F8FF 0%,
      #F0F4FD 30%,
      #EEF2FB 60%,
      #F2F0FC 100%);
}

/* Hero ambient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -6%;
  width: 680px;
  height: 680px;
  background: radial-gradient(ellipse at center,
      rgba(37, 99, 235, 0.1) 0%,
      rgba(79, 70, 229, 0.06) 40%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbDrift1 18s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse at center,
      rgba(124, 58, 237, 0.055) 0%,
      rgba(59, 130, 246, 0.04) 45%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbDrift2 22s ease-in-out infinite;
}

@keyframes orbDrift1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-30px, 20px) scale(1.04);
  }

  66% {
    transform: translate(15px, -25px) scale(0.97);
  }
}

@keyframes orbDrift2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(25px, -18px) scale(1.06);
  }

  70% {
    transform: translate(-12px, 22px) scale(0.96);
  }
}

/* Anti-gravity canvas */
.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO LIQUID MESH SCENE
   Organic fluid gradients, glass lens, ambient depth
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero__liquid-scene {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 780px;
  height: 780px;
  pointer-events: none;
  z-index: 0;
}

/* Primary fluid orb — slow morphing gradient blob */
.hero__liquid-orb--primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 680px;
  height: 680px;
  border-radius: 37% 63% 55% 45% / 45% 35% 65% 55%;
  background: conic-gradient(from 120deg at 55% 48%,
      rgba(37, 99, 235, 0.11) 0deg,
      rgba(79, 70, 229, 0.08) 80deg,
      rgba(99, 102, 241, 0.06) 150deg,
      rgba(59, 130, 246, 0.09) 220deg,
      rgba(37, 99, 235, 0.07) 290deg,
      rgba(147, 197, 253, 0.05) 360deg);
  filter: blur(40px);
  animation: liquidMorphA 20s ease-in-out infinite;
  will-change: border-radius, transform;
}

/* Secondary diffraction — crossfade hue layer */
.hero__liquid-orb--secondary {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 480px;
  height: 480px;
  border-radius: 65% 35% 40% 60% / 60% 50% 50% 40%;
  background: radial-gradient(ellipse at 40% 55%,
      rgba(124, 58, 237, 0.07) 0%,
      rgba(79, 70, 229, 0.06) 35%,
      rgba(59, 130, 246, 0.05) 65%,
      transparent 90%);
  filter: blur(28px);
  animation: liquidMorphB 26s ease-in-out infinite;
  will-change: border-radius, transform;
}

/* Accent pinpoint — bright core highlight */
.hero__liquid-orb--accent {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%,
      rgba(147, 197, 253, 0.13) 0%,
      rgba(59, 130, 246, 0.07) 40%,
      transparent 75%);
  filter: blur(18px);
  animation: liquidMorphC 14s ease-in-out infinite;
  will-change: transform;
}

/* Mesh grid — subtle perspective grid overlay */
.hero__mesh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  animation: meshFade 8s ease-in-out infinite alternate;
}

/* Glass lens element — frosted disc for depth */
.hero__glass-lens {
  position: absolute;
  top: 22%;
  right: 14%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(37, 99, 235, 0.06),
    0 8px 48px rgba(37, 99, 235, 0.06);
  animation: lensFloat 18s ease-in-out infinite;
  will-change: transform;
}

/* Liquid morph keyframes */
@keyframes liquidMorphA {
  0% {
    border-radius: 37% 63% 55% 45% / 45% 35% 65% 55%;
    transform: translate(0, 0) rotate(0deg);
  }

  20% {
    border-radius: 55% 45% 68% 32% / 52% 64% 36% 48%;
    transform: translate(-18px, 14px) rotate(6deg);
  }

  40% {
    border-radius: 42% 58% 38% 62% / 62% 38% 62% 38%;
    transform: translate(12px, -20px) rotate(-5deg);
  }

  60% {
    border-radius: 60% 40% 52% 48% / 40% 60% 40% 60%;
    transform: translate(-8px, 10px) rotate(8deg);
  }

  80% {
    border-radius: 48% 52% 44% 56% / 56% 44% 58% 42%;
    transform: translate(22px, -8px) rotate(-3deg);
  }

  100% {
    border-radius: 37% 63% 55% 45% / 45% 35% 65% 55%;
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes liquidMorphB {
  0% {
    border-radius: 65% 35% 40% 60% / 60% 50% 50% 40%;
    transform: translate(0, 0) scale(1);
  }

  33% {
    border-radius: 40% 60% 70% 30% / 30% 70% 40% 60%;
    transform: translate(20px, -15px) scale(1.05);
  }

  66% {
    border-radius: 55% 45% 35% 65% / 65% 35% 55% 45%;
    transform: translate(-12px, 22px) scale(0.96);
  }

  100% {
    border-radius: 65% 35% 40% 60% / 60% 50% 50% 40%;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes liquidMorphC {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  30% {
    transform: translate(-16px, -12px) scale(1.08);
  }

  70% {
    transform: translate(10px, 18px) scale(0.94);
  }
}

@keyframes meshFade {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes lensFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  40% {
    transform: translate(-14px, 18px);
  }

  70% {
    transform: translate(10px, -10px);
  }
}

/* Floating abstract shapes */
.hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: shapeFloat var(--float-dur, 12s) var(--float-delay, 0s) ease-in-out infinite;
}

.hero__shape--1 {
  width: 7px;
  height: 7px;
  background: rgba(37, 99, 235, 0.22);
  top: 22%;
  right: 26%;
  --float-dur: 10s;
  --float-delay: 0s;
}

.hero__shape--2 {
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(79, 70, 229, 0.18);
  background: transparent;
  top: 46%;
  right: 13%;
  border-radius: 3px;
  --float-dur: 14s;
  --float-delay: 1.5s;
}

.hero__shape--3 {
  width: 5px;
  height: 5px;
  background: rgba(124, 58, 237, 0.22);
  top: 68%;
  right: 31%;
  --float-dur: 11s;
  --float-delay: 3s;
}

.hero__shape--4 {
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(37, 99, 235, 0.12);
  background: transparent;
  top: 32%;
  right: 42%;
  --float-dur: 16s;
  --float-delay: 2s;
}

.hero__shape--5 {
  width: 5px;
  height: 5px;
  background: rgba(147, 197, 253, 0.28);
  top: 56%;
  right: 22%;
  border-radius: 2px;
  --float-dur: 13s;
  --float-delay: 4s;
}

@keyframes shapeFloat {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.5);
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(-65px) translateX(-16px) scale(1) rotate(180deg);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-125px) translateX(12px) scale(0.3) rotate(360deg);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.005em;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 50%;
  animation: pulse 2.8s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Hero headline */
.hero__headline {
  font-size: clamp(2.7rem, 5.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.042em;
  margin-bottom: 26px;
  color: var(--text-primary);
}

.hero__subtext {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}

/* Hero proof badges */
.hero__proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  padding: 8px 16px 8px 10px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
  animation: float 4.5s ease-in-out infinite;
}

.hero__proof-item:nth-child(2) {
  animation-delay: 0.85s;
}

.hero__proof-item:nth-child(3) {
  animation-delay: 1.7s;
}

.hero__proof-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-hover);
}

/* ═══════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════ */
.problem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.problem-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 38px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.problem-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.88);
}

.problem-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.problem-card__header h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.problem-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.problem-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
}

.problem-statement {
  text-align: center;
  padding: 30px 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.problem-statement p {
  font-size: 1.18rem;
  color: var(--text-secondary);
  font-style: italic;
}

.problem-statement strong {
  color: var(--text-primary);
  font-style: normal;
}

/* ═══════════════════════════════
   PILLAR GRID
   ═══════════════════════════════ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 38px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.pillar-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.9);
}

.pillar-card:hover .icon-tile {
  background: linear-gradient(145deg, var(--blue), var(--indigo));
  box-shadow: var(--blue-glow);
}

.pillar-card .icon-tile {
  margin-bottom: 22px;
}

.pillar-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}

.pillar-card p {
  font-size: 0.89rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════
   CAPABILITIES
   ═══════════════════════════════ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.cap-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 38px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient tint top-right corner */
.cap-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
  transition: opacity var(--dur);
  opacity: 0;
}

.cap-card:hover::before {
  opacity: 1;
}

.cap-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.9);
}

.cap-card:hover .icon-tile {
  background: linear-gradient(145deg, var(--blue), var(--indigo));
  box-shadow: var(--blue-glow);
}

.cap-card:hover .cap-card__tag {
  color: var(--blue);
}

.cap-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cap-card__tag {
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: color var(--dur-fast);
}

.cap-card h3 {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}

.cap-card>p {
  font-size: 0.89rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.62;
}

.cap-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cap-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.cap-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
}


/* ═══════════════════════════════════════════════════════════
   PROCESS — Scroll-Driven Sequential Step Reveal
   ═══════════════════════════════════════════════════════════ */
.process-sequential {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

/* ─── Individual Step ─── */
.ps-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 28px;
  /* Initial hidden state: pushed down, invisible */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s ease;
  filter: blur(2px);
  will-change: opacity, transform, filter;
}

/* Step revealed (scrolled into view) */
.ps-step--revealed {
  opacity: 0.38;
  transform: translateY(0);
  filter: blur(0);
}

/* Active (currently dominant) step */
.ps-step--active {
  opacity: 1;
  transform: translateY(0) scale(1.0);
  filter: blur(0);
}

/* Past steps: softened, minimized */
.ps-step--past {
  opacity: 0.28;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

/* ─── Connector (dot + vertical line) ─── */
.ps-step__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.ps-step__dot {
  width: 16px;
  height: 16px;
  min-height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-soft);
  background: var(--bg-white);
  transition:
    background 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease-spring);
  flex-shrink: 0;
  z-index: 1;
}

.ps-step--active .ps-step__dot {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.14),
    0 0 0 8px rgba(37, 99, 235, 0.06),
    0 4px 16px rgba(37, 99, 235, 0.32);
  transform: scale(1.25);
}

.ps-step--past .ps-step__dot {
  background: linear-gradient(135deg, var(--blue-400), var(--indigo));
  border-color: transparent;
  opacity: 0.5;
}

.ps-step__line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg,
      var(--border-soft) 0%,
      var(--border-soft) 100%);
  border-radius: 2px;
  margin: 6px 0;
  position: relative;
  overflow: hidden;
}

.ps-step__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--blue), var(--indigo));
  border-radius: 2px;
  transition: height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-step--active .ps-step__line::after,
.ps-step--past .ps-step__line::after {
  height: 100%;
}

/* ─── Step Card ─── */
.ps-step__card {
  position: relative;
  padding: 36px 40px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    background 0.6s var(--ease),
    border-color 0.6s var(--ease),
    box-shadow 0.6s var(--ease),
    transform 0.6s var(--ease);
  will-change: transform, box-shadow;
}

/* Active card — elevated with glow */
.ps-step--active .ps-step__card {
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 20px 60px rgba(37, 99, 235, 0.12),
    0 8px 24px rgba(79, 70, 229, 0.08),
    0 0 0 1px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateX(6px) scale(1.012);
}

/* Past card — muted, shrunk */
.ps-step--past .ps-step__card {
  background: rgba(255, 255, 255, 0.38);
  border-color: transparent;
  box-shadow: none;
  transform: translateX(0) scale(0.98);
}

/* Ambient glow accent behind card */
.ps-step__glow-accent {
  position: absolute;
  top: -60%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.07) 0%,
      transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.ps-step--active .ps-step__glow-accent {
  opacity: 1;
}

/* ─── Step Header (icon + meta) ─── */
.ps-step__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.ps-step__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, #111827, #0A1628);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgba(11, 21, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition:
    background 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease-spring);
}

.ps-step--active .ps-step__icon {
  background: linear-gradient(145deg, var(--blue), var(--indigo));
  box-shadow:
    0 6px 20px rgba(37, 99, 235, 0.38),
    0 2px 6px rgba(79, 70, 229, 0.24);
  transform: scale(1.08);
}

.ps-step__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ps-step__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s var(--ease);
}

.ps-step--active .ps-step__num {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-step__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(203, 213, 235, 0.35);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  width: fit-content;
  transition:
    color 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.ps-step--active .ps-step__tag {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

/* ─── Step Title & Desc ─── */
.ps-step__title {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.4s var(--ease);
}

.ps-step--past .ps-step__title {
  color: var(--text-muted);
}

.ps-step--active .ps-step__title {
  color: var(--text-primary);
}

.ps-step__desc {
  font-size: 0.915rem;
  color: var(--text-secondary);
  line-height: 1.72;
  transition: opacity 0.4s var(--ease);
}

.ps-step--past .ps-step__desc {
  opacity: 0.55;
}


/* ═══════════════════════════════
   INDUSTRIES
   ═══════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.industry-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.9);
}

.industry-card:hover .icon-tile {
  background: linear-gradient(145deg, var(--blue), var(--indigo));
  box-shadow: var(--blue-glow);
}

.industry-card h4 {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.industry-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.52;
}

/* ═══════════════════════════════
   DIFFERENTIATION
   ═══════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 34px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.diff-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.9);
}

.diff-card:hover .icon-tile {
  background: linear-gradient(145deg, var(--blue), var(--indigo));
  box-shadow: var(--blue-glow);
  transform: translateY(-3px) scale(1.06);
}

.diff-card .icon-tile {
  margin-bottom: 20px;
}

.diff-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}

.diff-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.62;
}

/* ═══════════════════════════════
   OUTCOMES
   ═══════════════════════════════ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outcome-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 80px;
  background: radial-gradient(ellipse,
      rgba(37, 99, 235, 0.07) 0%,
      transparent 70%);
  transition: opacity var(--dur);
  opacity: 0;
}

.outcome-card:hover::before {
  opacity: 1;
}

.outcome-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.9);
}

.outcome-card:hover .outcome-card__value {
  transform: scale(1.08);
  -webkit-text-fill-color: transparent;
}

.outcome-card__value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -0.035em;
  line-height: 1;
  transition: transform 0.38s var(--ease-spring);
}

.outcome-card h4 {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.outcome-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.52;
}

/* ═══════════════════════════════
   ENGAGEMENT
   ═══════════════════════════════ */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.engage-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 38px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.engage-card:hover {
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.9);
}

/* Featured card — premium elevated treatment */
.engage-card--featured {
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(240, 245, 255, 0.92) 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.28);
  box-shadow:
    var(--shadow-blue),
    0 0 0 1px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
}

.engage-card--featured::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
}

.engage-card--featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 60px rgba(37, 99, 235, 0.2),
    0 8px 20px rgba(79, 70, 229, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.engage-card__badge {
  position: absolute;
  top: -1px;
  right: 28px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.engage-card__tier {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue);
  margin-bottom: 14px;
}

.engage-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.engage-card>p {
  font-size: 0.89rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.62;
}

.engage-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.engage-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.52;
}

.engage-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ═══════════════════════════════
   CTA SECTION
   ═══════════════════════════════ */
.section--cta {
  padding: 148px 0;
  background: linear-gradient(160deg,
      #EEF2FB 0%,
      #E9EFFA 50%,
      #EDF1FB 100%);
  position: relative;
  overflow: hidden;
}

/* CTA section ambient glow */
.section--cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse,
      rgba(37, 99, 235, 0.08) 0%,
      rgba(79, 70, 229, 0.05) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent, rgba(37, 99, 235, 0.15), rgba(79, 70, 229, 0.12), transparent);
  z-index: 1;
}

.cta-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-desc {
  font-size: 1.06rem;
  color: var(--text-secondary);
  margin: 18px auto 40px;
  max-width: 520px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  background: var(--bg-white);
  border-top: 1px solid rgba(203, 213, 235, 0.6);
  padding: 60px 0 30px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
  gap: 40px;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.65;
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__col-title {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  position: relative;
  width: fit-content;
}

.footer__col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transition: width 0.32s var(--ease);
}

.footer__col a:hover {
  color: var(--blue);
}

.footer__col a:hover::after {
  width: 100%;
}

.footer__bottom {
  border-top: 1px solid rgba(203, 213, 235, 0.5);
  padding-top: 22px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.79rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(16px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ═══════════════════════════════
   KEYFRAMES
   ═══════════════════════════════ */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engage-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 20px;
  }

  .process-track__line {
    display: none;
  }

  .process-card {
    padding: 24px 16px 28px;
  }

  .process-card::before {
    inset: 0;
    border: 1px solid var(--border-soft);
    background: var(--glass-bg);
    box-shadow: var(--shadow-card);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 88px 0;
  }

  .section--cta {
    padding: 100px 0;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(247, 249, 254, 0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 108px 28px 28px;
    gap: 22px;
    border-left: 1px solid var(--border);
    transition: right var(--dur) var(--ease);
    z-index: 999;
    box-shadow: -16px 0 48px rgba(11, 21, 38, 0.08);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav__hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .problem-split {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .hero__proof {
    flex-direction: column;
    gap: 8px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2.1rem;
  }

  .hero__actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Logo Scaling ─── */
.nav__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform var(--dur) var(--ease-spring);
}

.footer__logo-img {
  height: 32px;
}

.nav__logo:hover .nav__logo-img {
  transform: rotate(5deg) scale(1.08);
}

/* ─── Contact Form ─── */
.cta-form-container {
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 4px;
}

.form-input {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--dur-fast) var(--ease);
}

.form-input:focus {
  outline: none;
  background: var(--bg-white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.w-full {
  width: 100%;
  justify-content: center;
}

.footer__phone {
  color: var(--blue);
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer__phone:hover {
  opacity: 0.8;
}