/* ═══════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99,102,241,0.35);
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #030305;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* ── Video ── */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) saturate(0.7);
}

/* ── Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(3,3,5,0.8) 0%,
      rgba(3,3,5,0.55) 35%,
      rgba(3,3,5,0.6) 60%,
      rgba(3,3,5,0.95) 100%
    );
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, transparent 30%, rgba(3,3,5,0.6) 100%);
}

/* ── Noise ── */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ── Grid ── */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── Glow Orbs ── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
  top: -15%;
  right: -8%;
  opacity: 0.5;
  animation: floatOrb1 14s ease-in-out infinite;
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.2), transparent 70%);
  bottom: -12%;
  left: -6%;
  opacity: 0.4;
  animation: floatOrb2 18s ease-in-out infinite;
}

.glow-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(129,140,248,0.15), transparent 70%);
  top: 40%;
  left: 30%;
  opacity: 0;
  animation: floatOrb3 20s ease-in-out infinite, orbFadeIn 2s ease-out 1.5s forwards;
}

@keyframes orbFadeIn { to { opacity: 0.35; } }

/* ── Scan Line ── */
.scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  animation: scanDown 7s linear infinite;
}

.scan-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 5%, rgba(99,102,241,0.12) 30%, rgba(129,140,248,0.2) 50%, rgba(99,102,241,0.12) 70%, transparent 95%);
}

.scan-line::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.03), transparent);
}

/* ── Glitch Lines ── */
.glitch-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(129,140,248,0.06);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: glitchFlash 12s ease-in-out infinite;
}

.glitch-line:nth-child(5) { top: 25%; animation-delay: 0s; }
.glitch-line:nth-child(6) { top: 55%; animation-delay: 4s; }
.glitch-line:nth-child(7) { top: 80%; animation-delay: 8s; }

@keyframes glitchFlash {
  0%, 94%, 100% { opacity: 0; }
  95% { opacity: 1; transform: scaleX(0.3) translateX(20%); }
  97% { opacity: 0.6; transform: scaleX(0.7) translateX(-10%); }
  98% { opacity: 0; }
}

/* ── Geo Shapes ── */
.geo-shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.geo-diamond {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(129,140,248,0.15);
  transform: rotate(45deg);
  animation: geoFloat1 16s ease-in-out infinite, geoFadeIn 2s ease-out 2s forwards;
}

.geo-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.12);
  animation: geoFloat2 20s ease-in-out infinite, geoFadeIn 2s ease-out 2.5s forwards;
}

.geo-cross {
  width: 10px;
  height: 10px;
  position: relative;
}

.geo-cross::before, .geo-cross::after {
  content: '';
  position: absolute;
  background: rgba(245,158,11,0.12);
}

.geo-cross::before { width: 100%; height: 1px; top: 50%; left: 0; }
.geo-cross::after { width: 1px; height: 100%; left: 50%; top: 0; }

@keyframes geoFadeIn { to { opacity: 1; } }

@keyframes geoFloat1 {
  0%, 100% { transform: rotate(45deg) translate(0,0); }
  25% { transform: rotate(45deg) translate(15px,-20px); }
  50% { transform: rotate(45deg) translate(-10px,-35px); }
  75% { transform: rotate(45deg) translate(20px,-15px); }
}

@keyframes geoFloat2 {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(-20px,15px); }
  66% { transform: translate(15px,-25px); }
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.06), transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%,-50%);
  will-change: left, top;
}


/* ═══════════════════════════════════════
   HERO CONTENT
═══════════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  width: 100%;
  padding: 0 28px;
  text-align: center;
  will-change: transform;
}

/* ── Tagline Chips ── */
.tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tagline-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 2px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(25px) scale(0.92);
  animation: chipReveal 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  cursor: default;
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}

.tagline-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(129,140,248,0.3), transparent 50%, rgba(16,185,129,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.tagline-chip:hover {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}

.tagline-chip:hover::before { opacity: 1; }

.tagline-chip:nth-child(1) { animation-delay: 0.3s; }
.tagline-chip:nth-child(3) { animation-delay: 0.45s; }
.tagline-chip:nth-child(5) { animation-delay: 0.6s; }

@keyframes chipReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.tagline-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16,185,129,0.6);
  animation: pulseDot 2.5s ease-in-out infinite;
  position: relative;
  color: rgba(16,185,129,0.4);
}

.tagline-chip .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  animation: dotRipple 2.5s ease-out infinite;
}

.tagline-chip .dot.amber {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245,158,11,0.6);
  color: rgba(245,158,11,0.4);
}

.tagline-chip .dot.indigo {
  background: #818cf8;
  box-shadow: 0 0 10px rgba(129,140,248,0.6);
  color: rgba(129,140,248,0.4);
}

.tagline-separator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  animation: chipReveal 0.6s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

/* ── Heading ── */
.hero-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}

.hero-heading .line { display: block; overflow: hidden; }

.hero-heading .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineReveal 1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-heading .line:nth-child(1) .line-inner { animation-delay: 0.6s; }
.hero-heading .line:nth-child(2) .line-inner { animation-delay: 0.75s; }
.hero-heading .line:nth-child(3) .line-inner { animation-delay: 0.9s; }

@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }

.hero-heading .highlight {
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 25%, #6366f1 50%, #4f46e5 75%, #6366f1 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-heading .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  -webkit-text-fill-color: rgba(255,255,255,0.85);
}

/* ── Divider ── */
.hero-divider {
  width: 60px;
  height: 2px;
  margin: 0 auto 28px;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, var(--accent-light), transparent);
  opacity: 0;
  transform: scaleX(0);
  animation: dividerGrow 0.8s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

@keyframes dividerGrow { to { opacity: 0.5; transform: scaleX(1); } }

/* ── Quote & Desc ── */
.hero-quote {
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  padding: 0 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.2s forwards;
}

.hero-desc {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.38);
  max-width: 620px;
  margin: 0 auto 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
}

/* ── CTA Buttons ── */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeSlideUp 1s cubic-bezier(0.16,1,0.3,1) 1.6s forwards;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  border-radius: 14px;
  border: none;
  background: #fff;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 0 rgba(255,255,255,0), 0 4px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), transparent);
  animation: shimmerSweep 3s ease-in-out infinite 2.5s;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(99,102,241,0.25), 0 8px 40px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #fff;
}

.cta-primary:hover::after { animation: none; opacity: 0; }
.cta-primary:active { transform: translateY(-1px) scale(0.98); }

.cta-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.cta-primary:hover svg { transform: translateX(4px); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(129,140,248,0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.cta-secondary:hover::before { opacity: 1; }
.cta-secondary:active { transform: translateY(-1px) scale(0.98); }

.cta-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.cta-secondary:hover svg { transform: translateX(4px); }

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 2.4s forwards;
}

.scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: rgba(129,140,248,0.6);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 7px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
  100% { top: 7px; opacity: 1; }
}

/* ── Particles ── */
.particle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  will-change: transform, opacity;
}


/* ═══════════════════════════════════════
   KEYFRAMES (shared)
═══════════════════════════════════════ */
@keyframes fadeSlideUp { to { opacity: 1; transform: translateY(0); } }

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes dotRipple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-50px,40px) scale(1.05); }
  66% { transform: translate(20px,-30px) scale(0.95); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(0.95); }
  66% { transform: translate(-30px,50px) scale(1.05); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(50px,-60px); }
}

@keyframes scanDown {
  0% { top: -2px; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(var(--drift)); opacity: 0; }
}


/* ═══════════════════════════════════════
   WHY SECTION — White Background
═══════════════════════════════════════ */
.why-section {
  position: relative;
  background: #ffffff;
  padding: 100px 24px 90px;
  overflow: hidden;
  z-index: 5;
}

/* Subtle dot pattern */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.why-container {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  z-index: 1;
}

/* ── Eyebrow ── */
.why-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}

.why-eyebrow.revealed { opacity: 1; transform: translateY(0); }

.eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(99,102,241,0.4));
}

.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(99,102,241,0.4));
}

.eyebrow-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6366f1;
}

/* ── Heading ── */
.why-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-align: center;
  color: #0f0f1a;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s;
}

.why-heading.revealed { opacity: 1; transform: translateY(0); }

.heading-accent {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Description ── */
.why-desc {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.8;
  color: #4b5563;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s;
}

.why-desc.revealed { opacity: 1; transform: translateY(0); }

.why-desc strong { color: #111827; font-weight: 600; }

/* ── Sector Tags ── */
.sector-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s;
}

.sector-tags.revealed { opacity: 1; transform: translateY(0); }

.sector-tag {
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(99,102,241,0.12);
  background: rgba(99,102,241,0.04);
  font-size: 12px;
  font-weight: 500;
  color: #6366f1;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: default;
}

.sector-tag:hover {
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-2px);
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Stat Card ── */
.stat-card {
  position: relative;
  background: #f8f9fc;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 36px 22px 28px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  cursor: default;
}

.stat-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
  background: #ffffff;
}

/* Top accent bar */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.stat-card:hover::before { transform: translateX(-50%) scaleX(1); }

.stat-card:nth-child(1)::before { background: linear-gradient(90deg, #818cf8, #6366f1); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, #34d399, #10b981); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #fb7185, #f43f5e); }

/* Radial glow on hover */
.stat-card::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.stat-card:nth-child(1)::after { background: radial-gradient(circle, rgba(99,102,241,0.07), transparent 70%); }
.stat-card:nth-child(2)::after { background: radial-gradient(circle, rgba(16,185,129,0.07), transparent 70%); }
.stat-card:nth-child(3)::after { background: radial-gradient(circle, rgba(245,158,11,0.07), transparent 70%); }
.stat-card:nth-child(4)::after { background: radial-gradient(circle, rgba(244,63,94,0.07), transparent 70%); }

.stat-card:hover::after { opacity: 1; }

/* ── Icon Wrap ── */
.stat-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}

.stat-card:hover .stat-icon-wrap {
  transform: scale(1.12) rotate(-3deg);
}

.stat-card:nth-child(1):hover .stat-icon-wrap { box-shadow: 0 8px 24px rgba(99,102,241,0.15); }
.stat-card:nth-child(2):hover .stat-icon-wrap { box-shadow: 0 8px 24px rgba(16,185,129,0.15); }
.stat-card:nth-child(3):hover .stat-icon-wrap { box-shadow: 0 8px 24px rgba(245,158,11,0.15); }
.stat-card:nth-child(4):hover .stat-icon-wrap { box-shadow: 0 8px 24px rgba(244,63,94,0.15); }

.icon-indigo { background: rgba(99,102,241,0.08); color: #6366f1; }
.icon-emerald { background: rgba(16,185,129,0.08); color: #10b981; }
.icon-amber { background: rgba(245,158,11,0.08); color: #f59e0b; }
.icon-rose { background: rgba(244,63,94,0.08); color: #f43f5e; }

/* ── Number ── */
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f0f1a;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.stat-suffix {
  font-size: 22px;
  font-weight: 600;
}

.indigo-s { color: #6366f1; }
.emerald-s { color: #10b981; }
.amber-s { color: #f59e0b; }
.rose-s { color: #f43f5e; }

/* ── Label ── */
.stat-text {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* ── Progress Bar ── */
.stat-bar {
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,0.04);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 2s cubic-bezier(0.16,1,0.3,1);
}

.bar-indigo { background: linear-gradient(90deg, #818cf8, #6366f1); }
.bar-emerald { background: linear-gradient(90deg, #34d399, #10b981); }
.bar-amber { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.bar-rose { background: linear-gradient(90deg, #fb7185, #f43f5e); }

.stat-card.revealed:nth-child(1) .stat-bar-fill { width: 75%; }
.stat-card.revealed:nth-child(2) .stat-bar-fill { width: 85%; }
.stat-card.revealed:nth-child(3) .stat-bar-fill { width: 92%; }
.stat-card.revealed:nth-child(4) .stat-bar-fill { width: 100%; }

/* ── Bottom Edge ── */
.why-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(99,102,241,0.12) 50%, transparent 95%);
}


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { gap: 16px; }
  .stat-card { padding: 30px 18px 24px; }
  .stat-number { font-size: 34px; }
}

@media (max-width: 768px) {
  .hero { height: auto; min-height: 90vh; padding: 80px 0 60px; }

  .tagline-row { gap: 8px; }
  .tagline-separator { display: none; }
  .tagline-chip { font-size: 10px; padding: 6px 14px; }

  .cta-primary, .cta-secondary {
    padding: 15px 30px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  .cta-row { flex-direction: column; gap: 12px; }

  .hero-content { padding: 24px 18px; }
  .cursor-glow { display: none; }
  .geo-shape { display: none; }

  .scroll-indicator { bottom: 16px; }

  /* Why section */
  .why-section { padding: 80px 18px 70px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card { padding: 28px 16px 22px; border-radius: 16px; }
  .stat-number { font-size: 30px; }
  .stat-icon-wrap { width: 48px; height: 48px; margin-bottom: 16px; }
  .stat-icon-wrap svg { width: 22px; height: 22px; }
  .stat-text { font-size: 12px; }
  .sector-tags { gap: 8px; margin-bottom: 40px; }
  .sector-tag { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 480px) {
  .hero { min-height: 85vh; }
  .hero-heading { font-size: clamp(28px, 8vw, 40px); }

  .why-section { padding: 60px 14px 50px; }
  .why-heading { font-size: clamp(24px, 7vw, 36px); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 24px 14px 20px; }
  .stat-number { font-size: 26px; }
  .stat-suffix { font-size: 16px; }
  .stat-icon-wrap { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
  .stat-icon-wrap svg { width: 20px; height: 20px; }
  .stat-text { font-size: 11px; margin-bottom: 14px; }
}

@media (max-width: 360px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .stat-card { padding: 28px 20px 24px; }
  .stat-number { font-size: 32px; }
}






/* ════════════════════════════════════════
   WHO WE ARE SECTION
═══════════════════════════════════════ */
.who-section {
  position: relative;
  background: #050508;
  padding: 120px 24px;
  overflow: hidden;
}

/* Subtle background grid */
.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.who-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

/* ── Text Content ── */
.who-text {
  position: relative;
}

.who-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-eyebrow.revealed { opacity: 1; transform: translateY(0); }

.who-eyebrow-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, #6366f1, transparent);
}

.who-eyebrow-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #818cf8;
}

.who-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.who-heading.revealed { opacity: 1; transform: translateY(0); }

.who-heading-accent {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.who-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.who-desc.revealed { opacity: 1; transform: translateY(0); }
.who-desc strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.who-desc-highlight {
  color: rgba(255,255,255,0.65);
  transition-delay: 0.3s;
}

.who-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.who-cta.revealed { opacity: 1; transform: translateY(0); }

.who-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #6366f1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-cta:hover::after { transform: scaleX(1); }

.who-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.who-cta:hover svg { transform: translateX(5px); }


/* ── Interactive Visual ── */
.who-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.who-visual.revealed { opacity: 1; transform: translateY(0); }

.network-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 5 / 4;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.network-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(99,102,241,0.08);
  border-color: rgba(255,255,255,0.1);
}

.network-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.network-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* SVG Line Animation */
.net-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.network-card.revealed .net-path {
  stroke-dashoffset: 0;
}

.path-1 { transition-delay: 0.2s; }
.path-2 { transition-delay: 0.4s; }
.path-3 { transition-delay: 0.6s; }

/* Hubs */
.net-hub {
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.network-card.revealed .net-hub {
  opacity: 1;
  transform: scale(1);
}

.hub-1 { transition-delay: 0.8s; }
.hub-2 { transition-delay: 1.0s; }
.hub-3 { transition-delay: 0.8s; }
.hub-4 { transition-delay: 1.0s; }
.hub-main { transition-delay: 0.6s; }

.hub-main {
  filter: drop-shadow(0 0 8px rgba(99,102,241,0.6));
  animation: pulseHub 3s ease-in-out infinite;
}

@keyframes pulseHub {
  0%, 100% { r: 6; filter: drop-shadow(0 0 8px rgba(99,102,241,0.6)); }
  50% { r: 8; filter: drop-shadow(0 0 15px rgba(99,102,241,0.9)); }
}

/* Floating Labels */
.net-label {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.6s ease 1.5s;
}

.network-card.revealed .net-label { opacity: 1; }

.label-air { top: 15%; right: 15%; }
.label-ocean { bottom: 20%; right: 10%; }
.label-road { top: 40%; left: 12%; }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .who-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .who-text {
    text-align: center;
  }

  .who-eyebrow {
    justify-content: center;
  }

  .who-cta {
    margin-top: 20px;
  }
}

@media (max-width: 540px) {
  .who-section {
    padding: 80px 18px;
  }

  .network-card {
    border-radius: 18px;
    padding: 16px;
  }

  .net-label {
    font-size: 8px;
    padding: 3px 8px;
  }
}




/* ════════════════════════════════════════
   WHAT WE DO SECTION (SEMICIRCLE)
═══════════════════════════════════════ */
.what-section {
  position: relative;
  background: #f8fafc;
  padding: 100px 24px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.what-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

/* ── Text ── */
.what-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.what-eyebrow.revealed { opacity: 1; transform: translateY(0); }

.what-eyebrow-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, transparent, #6366f1);
}
.what-eyebrow-line:last-child { background: linear-gradient(to left, transparent, #6366f1); }

.what-eyebrow-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6366f1;
}

.what-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.what-heading.revealed { opacity: 1; transform: translateY(0); }

.what-heading-accent {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.what-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.what-desc.revealed { opacity: 1; transform: translateY(0); }

/* ── Services Grid ── */
.what-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.service-card.revealed { opacity: 1; transform: translateY(0) scale(1); }

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: rgba(99,102,241,0.2);
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon-wrap { transform: rotate(-5deg) scale(1.1); }

.icon-bg-indigo { background: rgba(99,102,241,0.1); color: #6366f1; }
.icon-bg-emerald { background: rgba(16,185,129,0.1); color: #10b981; }
.icon-bg-amber { background: rgba(245,158,11,0.1); color: #f59e0b; }
.icon-bg-rose { background: rgba(244,63,94,0.1); color: #f43f5e; }
.icon-bg-cyan { background: rgba(6,182,212,0.1); color: #06b6d4; }
.icon-bg-purple { background: rgba(168,85,247,0.1); color: #a855f7; }

.service-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #64748b;
}

/* ── Semicircle Visual ── */
.what-visual {
  position: relative;
  width: 100%;
  height: 350px; /* Increased height to accommodate the higher flying plane */
  margin-top: 25px;
  z-index: 1;
}

.arc-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible; /* Crucial so the top node and plane aren't cut off */
}

/* Drawing Animation for the Main Routes */
.draw-arc {
  stroke-dasharray: 3000; /* Increased to cover the larger paths */
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-section.revealed .draw-arc {
  stroke-dashoffset: 0;
  transition-delay: 0.5s;
}

/* Drawing Animation for the Glow Trails */
.draw-arc-glow {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-section.revealed .draw-arc-glow {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
}

/* Node Pop-in Animation */
.pop-node {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.what-section.revealed .pop-node {
  opacity: 1;
  transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .what-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .what-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .what-section { padding: 80px 16px 0; }
  .service-card { padding: 16px; }
  .what-visual { height: 250px; } /* Shrink visual on mobile */
  .what-visual{
  display:none !important;
}
}

/* REPLACE YOUR .map-video CSS WITH THIS */

.map-video{
  width: 1440px;
  height: 600px;
  object-fit: cover;
  display: block;
}














/* ════════════════════════════════════════
   WHY CHOOSE US SECTION
═══════════════════════════════════════ */
.why-choose-section {
  position: relative;
  background: #050510; /* Dark tech theme */
  padding: 120px 24px;
  overflow: hidden;
}

/* Subtle top edge glow to separate from previous section */
.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(99,102,241,0.5), transparent);
}

.wcu-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}

/* ── Text Content ── */
.wcu-text { position: relative; }

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wcu-eyebrow.revealed { opacity: 1; transform: translateY(0); }

.wcu-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 12px rgba(99,102,241,0.8);
}

.wcu-eyebrow-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #818cf8;
}

.wcu-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.wcu-heading.revealed { opacity: 1; transform: translateY(0); }

.wcu-heading-accent {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wcu-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.wcu-desc.revealed { opacity: 1; transform: translateY(0); }

/* ── Features List ── */
.wcu-features-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wcu-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcu-feature-item.revealed { opacity: 1; transform: translateX(0); }
.wcu-feature-item span { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.4; }

.wcu-feature-item:hover span { color: #fff; }

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  flex-shrink: 0;
  color: #818cf8;
  transition: all 0.3s ease;
}

.wcu-feature-item:hover .feature-check {
  background: rgba(99,102,241,0.2);
  box-shadow: 0 0 15px rgba(99,102,241,0.2);
}

/* The Magic Checkmark Draw Animation */
.feature-check svg {
  width: 14px;
  height: 14px;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.wcu-feature-item.revealed .feature-check svg {
  stroke-dashoffset: 0;
}

/* ── CTA ── */
.wcu-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}
.wcu-cta.revealed { opacity: 1; transform: translateY(0); }

.wcu-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6366f1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wcu-cta:hover::after { transform: scaleX(1); }
.wcu-cta svg { transition: transform 0.3s ease; }
.wcu-cta:hover svg { transform: translateX(5px); }


/* ── Visual Content (Bending Card) ── */
.wcu-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.wcu-visual.revealed { opacity: 1; transform: translateY(0); }

.tracking-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.15s ease-out, box-shadow 0.4s ease;
  animation: cardFloat 6s ease-in-out infinite;
  /* CSS variables for the bending shine */
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* Bending Light Reflection Overlay */
.tracking-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y), 
    rgba(255,255,255,0.2) 0%, 
    rgba(255,255,255,0.05) 30%, 
    transparent 60%
  );
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: overlay;
}

.tracking-card:hover::before {
  opacity: 1;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); }
}

.tc-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.tc-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* SVG Animations */
.tc-draw-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.tracking-card.revealed .tc-draw-path { stroke-dashoffset: 0; }

.tc-node {
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tracking-card.revealed .tc-node { opacity: 1; transform: scale(1); }

/* Floating UI Boxes inside the card */
.tc-stat-box {
  position: absolute;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  z-index: 3;
  opacity: 0;
  transition: all 0.6s ease 1.5s;
}
.tracking-card.revealed .tc-stat-box { opacity: 1; }

.tc-stat-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}

.tc-stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.top-left { top: 40px; left: 30px; }
.bottom-right { bottom: 40px; right: 30px; }

.top-left .tc-stat-value { color: #10b981; }
.bottom-right .tc-stat-value { color: #818cf8; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .wcu-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .wcu-text { text-align: center; }
  .wcu-eyebrow { justify-content: center; }
  .wcu-features-list { align-items: flex-start; max-width: 500px; margin: 0 auto 40px; }
  .wcu-cta { margin: 0 auto; }
}

@media (max-width: 600px) {
  .why-choose-section { padding: 80px 18px; }
  .wcu-features-list { gap: 16px; }
  .wcu-feature-item span { font-size: 14px; }
  .tracking-card { max-width: 320px; }
}









/* ════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ */
.testimonials-section {
  position: relative;
  background: #f8fafc;
  /* Fluid padding */
  padding: clamp(80px, 10vw, 120px) clamp(16px, 4vw, 24px);
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.06), transparent 70%);
  pointer-events: none;
}

.test-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

/* ── Header ── */
.test-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.test-header.revealed { opacity: 1; transform: translateY(0); }

.test-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.test-eyebrow-line { width: 30px; height: 2px; background: linear-gradient(to right, transparent, #6366f1); }
.test-eyebrow-line:last-child { background: linear-gradient(to left, transparent, #6366f1); }

.test-eyebrow-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #6366f1;
}

.test-heading {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; color: #0f172a;
}
.test-heading-accent {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Slider Layout ── */
.test-slider {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.test-slider.revealed { opacity: 1; transform: translateY(0); }

.test-viewport {
  flex: 1;
  position: relative;
  /* Dynamic height handled by JS on desktop, auto on mobile */
  min-height: 400px; 
}

/* ── Slides (Absolute Crossfade Desktop) ── */
.test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.test-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 10;
}

/* ── Card Design ── */
.test-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  /* Fluid padding scales down nicely on mobile */
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 60px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.test-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.accent-indigo { background: linear-gradient(to right, #818cf8, #6366f1); }
.accent-emerald { background: linear-gradient(to right, #34d399, #10b981); }
.accent-amber { background: linear-gradient(to right, #fbbf24, #f59e0b); }

.test-quote-bg {
  position: absolute;
  top: 20px;
  left: 30px;
  color: rgba(99,102,241,0.04);
  pointer-events: none;
}

.test-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.test-title {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(20px, 2.8vw, 28px); font-weight: 400;
  color: #1e293b; line-height: 1.3; margin-bottom: 16px;
}

/* ── Quote Wrapper & Clamp Logic ── */
.test-quote-wrapper {
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.test-quote-wrapper.clamped {
  /* Fallback/Elegant way to clamp: limits to ~3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.test-quote-wrapper.expanded {
  -webkit-line-clamp: unset;
}

.test-quote {
  font-size: clamp(14px, 1.5vw, 16px); font-weight: 400; line-height: 1.7;
  color: #475569; margin-bottom: 0;
}

/* ── Read More Button ── */
.test-read-more {
  background: none;
  border: none;
  color: #6366f1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 28px;
  padding: 4px 0;
  transition: color 0.3s, transform 0.2s;
  align-self: center;
}

.test-read-more:hover { color: #4f46e5; transform: translateY(-1px); }

/* Hide read more if content is short enough (JS will handle adding this class) */
.test-read-more.hidden { display: none; }

/* ── Author ── */
.test-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto; /* Pushes to bottom of flexbox */
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.avatar-indigo { background: linear-gradient(135deg, #818cf8, #6366f1); }
.avatar-emerald { background: linear-gradient(135deg, #34d399, #10b981); }
.avatar-amber { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.test-author-info { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.test-author-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: #0f172a; }
.test-author-role { font-size: 12px; font-weight: 500; color: #64748b; }

/* ── Navigation Arrows ── */
.test-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.06); background: #fff;
  color: #334155; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.test-arrow:hover {
  background: #6366f1; color: #fff; border-color: #6366f1;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(99,102,241,0.2);
}
.test-arrow:active { transform: scale(0.95); }

/* ── Dots ── */
.test-dots { display: flex; justify-content: center; gap: 8px; margin-top: clamp(30px, 4vw, 50px); }
.test-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.test-dot.active { background: #6366f1; width: 28px; border-radius: 4px; }


/* ════════════════════════════════════════
   RESPONSIVE BEHAVIOR
═══════════════════════════════════════ */

/* Tablets */
@media (max-width: 900px) {
  .test-viewport { min-height: 420px; }
}

/* Mobile Layout Shift */
@media (max-width: 640px) {
  .test-slider {
    flex-wrap: wrap;
    gap: 0;
  }
  
  /* Stack slides vertically on mobile (no absolute positioning) */
  .test-viewport { 
    min-height: auto; 
    width: 100%; 
    order: 1; 
  }
  .test-slide { 
    position: relative; 
    opacity: 0; 
    height: 0; 
    overflow: hidden; 
    transform: none; 
    transition: opacity 0.4s ease;
  }
  .test-slide.active { 
    opacity: 1; 
    height: auto; 
    overflow: visible; 
  }

  /* Move arrows below card */
  .test-arrow { 
    order: 2; 
    margin-top: 24px; 
  }
  .test-prev { margin-right: 16px; }

  /* Mobile card adjustments */
  .test-card { 
    border-radius: 20px; 
    border: 1px solid rgba(0,0,0,0.05);
  }
  .test-author {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .test-author-info { text-align: center; align-items: center; }
}

/* Small Phones */
@media (max-width: 400px) {
  .test-arrow { display: none; }
  .test-stars svg { width: 14px; height: 14px; }
}





/* ════════════════════════════════════════
   CTA VIDEO SECTION
═══════════════════════════════════════ */
.cta-video-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #030305; /* Fallback color while video loads */
}

/* ── Video Background ── */
.cta-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.8) brightness(0.7);
}

/* ── Dark Cinematic Overlay ── */
.cta-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(3,3,5,0.85) 0%,
    rgba(3,3,5,0.6) 40%,
    rgba(3,3,5,0.7) 70%,
    rgba(3,3,5,0.95) 100%
  );
  pointer-events: none;
}

/* Extra vignette for cinematic depth */
.cta-dark-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(3,3,5,0.6) 100%);
}

/* ── Content ── */
.cta-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 60px 24px;
  text-align: center;
}

/* ── Eyebrow ── */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-video-section.revealed .cta-eyebrow { opacity: 1; transform: translateY(0); }

.cta-eyebrow span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.cta-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 10px rgba(99,102,241,0.6);
}

/* ── Heading ── */
.cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.cta-video-section.revealed .cta-heading { opacity: 1; transform: translateY(0) scale(1); }

.cta-heading-accent {
  background: linear-gradient(135deg, #a5b4fc, #818cf8, #6366f1);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Description ── */
.cta-desc {
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.cta-video-section.revealed .cta-desc { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.cta-video-section.revealed .cta-buttons-row { opacity: 1; transform: translateY(0); }

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 14px;
  border: none;
  background: #fff;
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 0 rgba(255,255,255,0), 0 4px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(99,102,241,0.25), 0 8px 40px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #818cf8, #6366f1);
  color: #fff;
}

.cta-btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-primary:hover svg { transform: translateX(4px); }

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.8);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-btn-secondary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-secondary:hover svg { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .cta-video-section { min-height: 70vh; }
  
  .cta-buttons-row {
    flex-direction: column;
    gap: 14px;
  }
  
  .cta-btn-primary, .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 13px;
  }
}