/* Modern Webflow/Framer-inspired Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Colors - Clean, professional palette */
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Accent colors */
  --accent: #0ee7f2;
  --accent-dark: #0ab8c1;
  --accent-light: #5cf6c1;
  
  /* Vibrant colors */
  --purple: #a855f7;
  --pink: #ec4899;
  --orange: #f97316;
  --yellow: #eab308;
  --green: #22c55e;
  --blue: #3b82f6;
  --indigo: #6366f1;
  
  /* Spacing system */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

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

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.8;
}

.logo svg {
  color: var(--accent);
}

.logo-img {
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: var(--space-2) var(--space-5);
  background: var(--white);
  color: var(--black) !important;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* Hero Section */
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 100px 0 var(--space-10);
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 231, 242, 0.3), transparent 70%);
  top: -200px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  top: 20%;
  right: -150px;
  animation-delay: -7s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(92, 246, 193, 0.2), transparent 70%);
  bottom: -100px;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Main Container */
.hero-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

/* Label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease-out both;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.headline-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

/* Description */
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding: var(--space-5) 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* Actions */
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Visual - Advanced Design */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  animation: fadeIn 1.2s ease-out 0.5s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.visual-container {
  position: relative;
  width: 400px;
  height: 400px;
}

/* Grid Pattern */
.visual-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}

/* Rotating Rings */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  width: 280px;
  height: 280px;
  border-color: rgba(14, 231, 242, 0.15);
  animation: rotateRing 30s linear infinite;
}

.ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(168, 85, 247, 0.15);
  animation: rotateRing 40s linear infinite reverse;
  border-style: dashed;
  border-width: 1px;
}

.ring-3 {
  width: 340px;
  height: 340px;
  border-color: rgba(92, 246, 193, 0.1);
  animation: rotateRing 50s linear infinite;
  border-style: dotted;
  border-width: 2px;
}

@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Center Core */
.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(14, 231, 242, 0.4), rgba(92, 246, 193, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  animation: coreGlowPulse 4s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes coreGlowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.9;
  }
}

.core-inner {
  position: relative;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.15), rgba(92, 246, 193, 0.08));
  border: 2px solid rgba(14, 231, 242, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 40px rgba(14, 231, 242, 0.3),
    inset 0 0 20px rgba(14, 231, 242, 0.1);
  animation: coreRotate 20s linear infinite;
}

@keyframes coreRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.core-icon {
  color: var(--accent);
  animation: iconFloat 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(180deg);
  }
}

.core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: 2px solid rgba(14, 231, 242, 0.6);
  border-radius: 50%;
  animation: corePulseExpand 2s ease-out infinite;
}

@keyframes corePulseExpand {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Floating Data Points */
.data-point {
  position: absolute;
  z-index: 5;
}

.point-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(14, 231, 242, 0.8);
  animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.point-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 1px solid rgba(14, 231, 242, 0.3);
  border-radius: 50%;
}

.point-1 {
  top: 15%;
  left: 30%;
  animation: dataFloat1 8s ease-in-out infinite;
}

.point-2 {
  top: 25%;
  right: 20%;
  animation: dataFloat2 10s ease-in-out infinite;
}

.point-3 {
  bottom: 20%;
  left: 25%;
  animation: dataFloat3 12s ease-in-out infinite;
}

.point-4 {
  bottom: 30%;
  right: 25%;
  animation: dataFloat4 9s ease-in-out infinite;
}

.point-5 {
  top: 40%;
  left: 10%;
  animation: dataFloat5 11s ease-in-out infinite;
}

.point-6 {
  top: 50%;
  right: 8%;
  animation: dataFloat6 13s ease-in-out infinite;
}

@keyframes dataFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -15px); }
  50% { transform: translate(-5px, -25px); }
  75% { transform: translate(15px, -10px); }
}

@keyframes dataFloat2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-12px, 18px); }
  50% { transform: translate(8px, 30px); }
  75% { transform: translate(-10px, 12px); }
}

@keyframes dataFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, 10px); }
  50% { transform: translate(-10px, 20px); }
  75% { transform: translate(12px, 5px); }
}

@keyframes dataFloat4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-8px, -12px); }
  50% { transform: translate(12px, -20px); }
  75% { transform: translate(-15px, -8px); }
}

@keyframes dataFloat5 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, 15px); }
  50% { transform: translate(-8px, 25px); }
  75% { transform: translate(12px, 10px); }
}

@keyframes dataFloat6 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-10px, -15px); }
  50% { transform: translate(5px, -22px); }
  75% { transform: translate(-12px, -10px); }
}

/* Visual Info Cards (Hero Section) */
.visual-info-card {
  position: absolute;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(14, 231, 242, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  width: 100px;
  transition: all 0.3s ease;
}

.visual-info-card:hover {
  border-color: rgba(14, 231, 242, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 231, 242, 0.2);
}

.card-bar {
  height: 3px;
  background: rgba(14, 231, 242, 0.3);
  border-radius: 2px;
  margin-bottom: 4px;
  animation: barLoad 2s ease-out infinite;
}

.bar-1 {
  width: 75%;
  animation-delay: 0s;
}

.bar-2 {
  width: 55%;
  animation-delay: 0.2s;
}

.bar-3 {
  width: 85%;
  animation-delay: 0.4s;
}

@keyframes barLoad {
  0%, 100% {
    opacity: 0.3;
    background: rgba(14, 231, 242, 0.3);
  }
  50% {
    opacity: 1;
    background: rgba(14, 231, 242, 0.7);
  }
}

.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.card-right {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.card-bottom {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.card-left {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

/* Metrics Strip */
/* Metrics Strip */
.metrics-strip {
  margin-top: var(--space-10);
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.metric {
  text-align: center;
  padding: var(--space-2) 0;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.4;
}

/* Metrics Strip Responsive */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-8);
  }

  .metric-value {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .metrics-strip {
    margin-top: var(--space-8);
    padding: var(--space-6) 0;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5) var(--space-6);
  }

  .metric {
    padding: var(--space-3) 0;
  }

  .metric-value {
    font-size: 1.75rem;
  }

  .metric-label {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .metrics-strip {
    padding: var(--space-5) 0;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 280px;
    margin: 0 auto;
  }

  .metric {
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .metric:last-child {
    border-bottom: none;
  }

  .metric-value {
    font-size: 1.625rem;
  }

  .metric-label {
    font-size: 0.8125rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(14, 231, 242, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-icon {
  transition: transform var(--transition-base);
  position: relative;
  z-index: 1;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

/* Trust Banner */
.trust-banner {
  padding: var(--space-8) 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-content {
  text-align: center;
}

.trust-text {
  font-size: 1.125rem;
  color: var(--gray-400);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

/* Section */
.section {
  padding: var(--space-16) 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.section-header {
  margin-bottom: var(--space-12);
  max-width: 700px;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  display: inline-block;
  animation: floatLabel 3s ease-in-out infinite;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.section-header.center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-400);
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.capability-card {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.capability-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.capability-card > * {
  position: relative;
  z-index: 1;
}

/* Capability Card 1 - Cyan */
.capability-card:nth-child(1)::before {
  background: radial-gradient(circle at top left, rgba(14, 231, 242, 0.15), transparent 70%);
}

.capability-card:nth-child(1):hover {
  background: rgba(14, 231, 242, 0.04);
  border-color: rgba(14, 231, 242, 0.5);
  box-shadow: 0 20px 60px rgba(14, 231, 242, 0.25);
}

.capability-card:nth-child(1):hover::before {
  opacity: 1;
}

.capability-card:nth-child(1) .card-number {
  color: var(--accent);
}

.capability-card:nth-child(1):hover .card-title {
  background: linear-gradient(135deg, #0ee7f2, #5cf6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Capability Card 2 - Purple */
.capability-card:nth-child(2)::before {
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), transparent 70%);
}

.capability-card:nth-child(2):hover {
  background: rgba(168, 85, 247, 0.04);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25);
}

.capability-card:nth-child(2):hover::before {
  opacity: 1;
}

.capability-card:nth-child(2) .card-number {
  color: var(--purple);
}

.capability-card:nth-child(2):hover .card-title {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Capability Card 3 - Pink */
.capability-card:nth-child(3)::before {
  background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.15), transparent 70%);
}

.capability-card:nth-child(3):hover {
  background: rgba(236, 72, 153, 0.04);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.25);
}

.capability-card:nth-child(3):hover::before {
  opacity: 1;
}

.capability-card:nth-child(3) .card-number {
  color: var(--pink);
}

.capability-card:nth-child(3):hover .card-title {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Capability Card 4 - Orange */
.capability-card:nth-child(4)::before {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), transparent 70%);
}

.capability-card:nth-child(4):hover {
  background: rgba(249, 115, 22, 0.04);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.25);
}

.capability-card:nth-child(4):hover::before {
  opacity: 1;
}

.capability-card:nth-child(4) .card-number {
  color: var(--orange);
}

.capability-card:nth-child(4):hover .card-title {
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Capability Card 5 - Blue */
.capability-card:nth-child(5)::before {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.15), transparent 70%);
}

.capability-card:nth-child(5):hover {
  background: rgba(59, 130, 246, 0.04);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.capability-card:nth-child(5):hover::before {
  opacity: 1;
}

.capability-card:nth-child(5) .card-number {
  color: var(--blue);
}

.capability-card:nth-child(5):hover .card-title {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Capability Card 6 - Green */
.capability-card:nth-child(6)::before {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.15), transparent 70%);
}

.capability-card:nth-child(6):hover {
  background: rgba(34, 197, 94, 0.04);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.25);
}

.capability-card:nth-child(6):hover::before {
  opacity: 1;
}

.capability-card:nth-child(6) .card-number {
  color: var(--green);
}

.capability-card:nth-child(6):hover .card-title {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: var(--space-5);
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.card-list li {
  font-size: 0.9375rem;
  color: var(--gray-500);
  padding-left: var(--space-5);
  position: relative;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Capabilities Grid Responsive */
@media (max-width: 1200px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-card:nth-child(5),
  .capability-card:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .capability-card {
    padding: var(--space-6);
  }

  .card-number {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9375rem;
  }

  .card-list li {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .capability-card {
    padding: var(--space-5);
  }

  .card-number {
    font-size: 2rem;
    margin-bottom: var(--space-3);
  }

  .card-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
  }

  .card-description {
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
  }

  .card-list {
    gap: var(--space-2);
  }

  .card-list li {
    font-size: 0.8125rem;
    padding-left: var(--space-4);
  }
}

/* Timeline */
.approach-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 231, 242, 0.2);
  position: relative;
  z-index: 1;
}

.marker-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(14, 231, 242, 0.3), transparent);
  margin-top: var(--space-2);
}

.timeline-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: var(--space-4);
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.timeline-tag {
  padding: var(--space-2) var(--space-3);
  background: rgba(14, 231, 242, 0.08);
  border: 1px solid rgba(14, 231, 242, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: all var(--transition-base);
}

.timeline-tag:hover {
  background: rgba(14, 231, 242, 0.15);
  border-color: rgba(14, 231, 242, 0.3);
  transform: translateY(-2px);
}

/* Milestone Divider */
.milestone-divider {
  margin: var(--space-8) 0;
}

.milestone-divider .timeline-marker {
  position: relative;
}

.milestone-divider .marker-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 0 6px rgba(14, 231, 242, 0.15), 0 4px 12px rgba(14, 231, 242, 0.3);
}

.milestone-divider .marker-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--black);
  border-radius: 50%;
}

.milestone-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.milestone-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-400);
  font-style: italic;
}

/* Milestone Items */
.milestone-item .marker-dot {
  background: rgba(14, 231, 242, 0.2);
  border: 2px solid var(--accent);
}

.milestone-item .timeline-number {
  background: rgba(14, 231, 242, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  display: inline-block;
}

/* Outcome Section */
.outcome-section {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.outcome-card {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.outcome-card.featured {
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.08), rgba(92, 246, 193, 0.04));
  border-color: rgba(14, 231, 242, 0.3);
}

.outcome-card.featured::before {
  background: radial-gradient(circle at top right, rgba(14, 231, 242, 0.2), rgba(92, 246, 193, 0.1));
}

.outcome-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 231, 242, 0.4);
  box-shadow: 0 20px 60px rgba(14, 231, 242, 0.2);
}

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

.outcome-card > * {
  position: relative;
  z-index: 1;
}

.outcome-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outcome-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.2), rgba(92, 246, 193, 0.1));
  border-radius: var(--radius-lg);
  color: var(--accent);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.outcome-card:hover .outcome-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(14, 231, 242, 0.3);
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.outcome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.outcome-list li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-400);
  padding-left: var(--space-6);
  position: relative;
}

.outcome-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
}

.outcome-list li strong {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .outcome-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .outcome-card {
    padding: var(--space-6);
  }
  
  .outcome-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .outcome-title {
    font-size: 1.25rem;
  }
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.impact-card {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.impact-card:nth-child(1)::before {
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15), transparent 70%);
}

.impact-card:nth-child(2)::before {
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15), transparent 70%);
}

.impact-card:nth-child(3)::before {
  background: radial-gradient(circle at center, rgba(14, 231, 242, 0.15), transparent 70%);
}

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

.impact-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.impact-card:nth-child(1):hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.3);
}

.impact-card:nth-child(2):hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
}

.impact-card:nth-child(3):hover {
  border-color: rgba(14, 231, 242, 0.5);
  box-shadow: 0 25px 70px rgba(14, 231, 242, 0.3);
}

.impact-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:nth-child(1) .impact-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.05));
  color: #f97316;
}

.impact-card:nth-child(2) .impact-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(129, 140, 248, 0.05));
  color: #6366f1;
}

.impact-card:nth-child(3) .impact-icon {
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.2), rgba(92, 246, 193, 0.05));
  color: #0ee7f2;
}

.impact-card:hover .impact-icon {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.3);
}

.impact-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.impact-stat {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  display: inline-block;
}

.impact-card:nth-child(1) .impact-stat {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 146, 60, 0.05));
  color: #fb923c;
}

.impact-card:nth-child(2) .impact-stat {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.05));
  color: #818cf8;
}

.impact-card:nth-child(3) .impact-stat {
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.15), rgba(92, 246, 193, 0.05));
  color: #5cf6c1;
}

.impact-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.impact-card:hover .impact-description {
  color: var(--gray-300);
}

/* Leadership */
.leadership-content {
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  padding: var(--space-10);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
}

.leader-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.leader-title {
  font-size: 1.125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.leader-bio {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
}

.leader-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-6);
}

.credential-item {
  text-align: center;
}

.credential-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

.credential-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.text-link:hover {
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.08), rgba(92, 246, 193, 0.04));
  border-top: 1px solid rgba(14, 231, 242, 0.2);
  border-bottom: 1px solid rgba(14, 231, 242, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
  45deg,
  rgba(14, 231, 242, 0.1),
  rgba(168, 85, 247, 0.08),
  rgba(236, 72, 153, 0.08),
  rgba(249, 115, 22, 0.08),
  rgba(59, 130, 246, 0.08),
  rgba(34, 197, 94, 0.08)
  );
  animation: gradientRotate 20s linear infinite;
  z-index: 0;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

@keyframes gradientRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Section */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.contact-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.detail-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.detail-value:hover {
  color: var(--accent);
}

/* Social Links */
.social-links {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.social-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: var(--space-3);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: rgba(14, 231, 242, 0.1);
  border-color: rgba(14, 231, 242, 0.3);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 231, 242, 0.2);
}

.resources-section {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.resources-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.resources-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.resources-list li {
  font-size: 0.9375rem;
  color: var(--gray-400);
  padding-left: var(--space-5);
  position: relative;
}

.resources-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Booking Wrapper */
.booking-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-card {
  padding: var(--space-10);
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.05), rgba(92, 246, 193, 0.02));
  border: 1px solid rgba(14, 231, 242, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(14, 231, 242, 0.1), transparent 70%);
  pointer-events: none;
}

.booking-card > * {
  position: relative;
  z-index: 1;
}

.booking-header {
  margin-bottom: var(--space-8);
}

.booking-icon {
  color: var(--accent);
  margin: 0 auto var(--space-4);
  display: block;
  animation: float 3s ease-in-out infinite;
}

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

.booking-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.booking-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-400);
}

.booking-btn {
  margin-bottom: var(--space-4);
}

.booking-divider {
  position: relative;
  text-align: center;
  margin: var(--space-6) 0;
}

.booking-divider::before,
.booking-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.booking-divider::before {
  left: 0;
}

.booking-divider::after {
  right: 0;
}

.booking-divider span {
  font-size: 0.875rem;
  color: var(--gray-500);
  background: transparent;
  padding: 0 var(--space-3);
  position: relative;
}

.booking-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: var(--space-6);
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  color: var(--white);
}

.footer-brand svg {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.footer-social-icon:hover {
  background: rgba(14, 231, 242, 0.1);
  border-color: rgba(14, 231, 242, 0.3);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright,
.footer-legal {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 520px;
  }

  .floating-cards {
    height: 450px;
    max-width: 500px;
  }

  .card-1 { width: 180px; }
  .card-2 { width: 200px; }
  .card-3 { width: 160px; }
  .card-4 { width: 190px; }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: var(--space-16);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-visual {
    justify-content: center;
    margin: 0 auto;
  }

  .floating-cards {
    height: 400px;
    max-width: 500px;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .leader-credentials {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .credential-item {
    text-align: left;
  }
  
  /* Engagement Grid Responsive */
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Outcome Section Responsive */
  .outcome-section {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Timeline Responsive */
  .approach-timeline {
    padding-left: 0;
  }
  
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: var(--space-4);
  }
  
  .marker-line {
    left: 19px;
  }
  
  /* Hero Title Size */
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }
  
  .badge {
    font-size: 0.8125rem;
    padding: var(--space-2) var(--space-4);
  }
}

/* Tablet Responsive - Industry Tabs */
@media (max-width: 1024px) and (min-width: 769px) {
  .tab-details {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .detail-column:last-child {
    grid-column: 1 / -1;
  }
  
  .tab-header {
    padding: var(--space-5) var(--space-6);
  }
  
  .tab-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-16: 5rem;
    --space-12: 4rem;
  }
  
  /* Container Padding */
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  .navbar .container {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }
  
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    pointer-events: none;
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    padding: var(--space-3) 0;
    font-size: 1.125rem;
  }
  
  .nav-cta {
    text-align: center;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-12);
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding: 0 var(--space-4);
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    align-items: center;
  }

  .badge {
    font-size: 0.75rem;
    padding: var(--space-2) var(--space-3);
    margin: 0 auto var(--space-6);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: var(--space-8);
  }

  .floating-cards {
    height: 350px;
    max-width: 100%;
  }

  .floating-card {
    padding: var(--space-4);
  }

  .card-1 {
    top: 20px;
    left: 10%;
    width: 160px;
  }

  .card-2 {
    top: 30px;
    right: 10%;
    width: 170px;
  }

  .card-3 {
    bottom: 40px;
    left: 5%;
    width: 150px;
  }

  .card-4 {
    bottom: 30px;
    right: 8%;
    width: 165px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-label {
    font-size: 0.8125rem;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  /* Section Headers */
  .section-title {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
  }
  
  .section-description {
    font-size: 0.9375rem;
  }
  
  /* Timeline Tags */
  .timeline-tags {
    flex-wrap: wrap;
  }
  
  .timeline-tag {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-2);
  }
  
  /* Engagement Cards */
  .engagement-card {
    padding: var(--space-6);
  }
  
  .engagement-title {
    font-size: 1.25rem;
  }
  
  .engagement-description {
    font-size: 0.9375rem;
  }
  
  .engagement-deliverables {
    font-size: 0.875rem;
  }
  
  /* Outcome Cards */
  .outcome-card {
    padding: var(--space-6);
  }
  
  .outcome-title {
    font-size: 1.25rem;
  }
  
  .outcome-list li {
    font-size: 0.875rem;
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    padding: var(--space-6);
  }
  
  .contact-layout {
    gap: var(--space-8);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  
  .footer-legal {
    font-size: 0.8125rem;
  }
  
  /* Timeline */
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: var(--space-4);
  }
  
  .timeline-content {
    padding-right: 0;
  }
  
  .timeline-title {
    font-size: 1.25rem;
  }
  
  .timeline-description {
    font-size: 0.9375rem;
  }
  
  /* Industry Tabs */
  .industry-tabs {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .industry-tab:not(.active) {
    min-height: 100px;
  }
  
  .tab-header {
    padding: var(--space-3) var(--space-4);
    gap: var(--space-2);
  }
  
  .industry-tab.active .tab-header {
    padding: var(--space-4) var(--space-5);
  }
  
  .tab-icon {
    width: 32px;
    height: 32px;
  }
  
  .industry-tab.active .tab-icon {
    width: 48px;
    height: 48px;
  }
  
  .tab-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .industry-tab.active .tab-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* CTA Section */
  .cta-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .cta-description {
    font-size: 0.9375rem;
  }
  
  /* Impact Cards */
  .impact-card {
    padding: var(--space-6);
  }
  
  .impact-title {
    font-size: 1.125rem;
  }
  
  .impact-stat {
    font-size: 1.5rem;
  }
  
  .impact-description {
    font-size: 0.875rem;
  }
  
  /* Metrics Grid */
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .metric-value {
    font-size: 2.5rem;
  }
  
  .tab-title {
    font-size: 0.875rem;
  }
  
  .industry-tab.active .tab-title {
    font-size: 1.25rem;
  }
  
  .tab-subtitle {
    font-size: 0.75rem;
  }
  
  .tab-toggle {
    width: 20px;
    height: 20px;
  }
  
  .industry-tab.active .tab-toggle {
    width: 28px;
    height: 28px;
  }
  
  .tab-toggle svg {
    width: 12px;
    height: 12px;
  }
  
  .industry-tab.active .tab-toggle svg {
    width: 16px;
    height: 16px;
  }
  
  .tab-details {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-5);
  }
  
  .tech-tags {
    gap: var(--space-1);
  }
  
  .tech-tag {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-2);
  }
  
  .metric-number {
    font-size: 2rem;
  }
  
  .detail-list li {
    font-size: 0.875rem;
  }
  
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  :root {
    --space-16: 4rem;
    --space-12: 3rem;
    --space-8: 2rem;
  }

  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .hero {
    padding-top: 80px;
    padding-bottom: var(--space-10);
  }

  .hero-container {
    gap: var(--space-8);
    padding: 0 var(--space-3);
  }

  .badge {
    font-size: 0.6875rem;
    padding: var(--space-1) var(--space-3);
  }

  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: var(--space-5);
  }

  .hero-subtitle {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-6);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-3);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-cards {
    height: 300px;
  }

  .floating-card {
    padding: var(--space-3);
  }

  .card-1 {
    top: 10px;
    left: 5%;
    width: 140px;
  }

  .card-2 {
    top: 20px;
    right: 5%;
    width: 145px;
  }

  .card-3 {
    bottom: 30px;
    left: 2%;
    width: 130px;
  }

  .card-4 {
    bottom: 20px;
    right: 3%;
    width: 140px;
  }

  .card-icon {
    width: 36px;
    height: 36px;
  }

  .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .card-label {
    font-size: 0.75rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }
  
  .badge {
    font-size: 0.6875rem;
    padding: var(--space-1) var(--space-2);
  }
  
  .btn {
    padding: var(--space-3) var(--space-5);
    font-size: 0.9375rem;
  }
  
  .engagement-card,
  .outcome-card,
  .contact-form-wrapper {
    padding: var(--space-5);
  }
  
  .timeline-number {
    font-size: 0.75rem;
  }
  
  .milestone-label {
    font-size: 0.9375rem;
  }
  
  .popular-badge {
    font-size: 0.6875rem;
    padding: var(--space-1) var(--space-2);
  }
  
  .engagement-title,
  .outcome-title {
    font-size: 1.125rem;
  }
  
  .timeline-title {
    font-size: 1.125rem;
  }
}

/* Industry Tabs */
.industry-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
}

.industry-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-tab:not(.active) {
  min-height: 120px;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.industry-tab.active {
  background: rgba(255, 255, 255, 0.05);
  grid-column: 1 / -1;
  min-height: auto;
}

.tab-header {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  width: 100%;
}

.industry-tab:not(.active) .tab-header {
  padding: var(--space-5);
  flex-direction: column;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.industry-tab.active .tab-header {
  padding: var(--space-6);
  flex-direction: row;
}

.tab-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tab-header:active {
  transform: scale(0.98);
}

.tab-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: all var(--transition-base);
  margin-bottom: var(--space-3);
}

.industry-tab.active .tab-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
}

.tab-icon svg {
  width: 28px;
  height: 28px;
  transition: all var(--transition-base);
}

.industry-tab.active .tab-icon svg {
  width: 32px;
  height: 32px;
}

.tab-title-wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.industry-tab:not(.active) .tab-title-wrapper {
  align-items: center;
}

.tab-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  transition: all var(--transition-base);
}

.industry-tab.active .tab-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.tab-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  transition: all var(--transition-base);
}

.industry-tab:not(.active) .tab-subtitle {
  font-size: 1rem;
  opacity: 0.8;
}

.industry-tab.active .tab-subtitle {
  font-size: 1.075rem;
}

.tab-toggle {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.tab-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
  color: var(--gray-400);
}

.industry-tab.active .tab-toggle {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.industry-tab.active .tab-toggle svg {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
  color: var(--accent);
}

.tab-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.tab-content {
  display: none;
}

.industry-tab.active .tab-content {
  display: grid;
  grid-template-rows: 1fr;
  animation: expandContent 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes expandContent {
  from {
    grid-template-rows: 0fr;
    opacity: 0;
  }
  to {
    grid-template-rows: 1fr;
    opacity: 1;
  }
}

.tab-details {
  overflow: hidden;
  padding: var(--space-6) var(--space-8) var(--space-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.detail-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.detail-list li {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--gray-300);
  padding-left: var(--space-5);
  position: relative;
}

.detail-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tech-tag {
  padding: var(--space-2) var(--space-3);
  background: rgba(14, 231, 242, 0.1);
  border: 1px solid rgba(14, 231, 242, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.impact-metrics {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.metric-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-text {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Industry Tab Color Variations */
.industry-tab:nth-child(1) {
  border-color: rgba(14, 231, 242, 0.2);
}

.industry-tab:nth-child(1):hover {
  border-color: rgba(14, 231, 242, 0.4);
  box-shadow: 0 4px 20px rgba(14, 231, 242, 0.15);
}

.industry-tab:nth-child(1).active {
  border-color: rgba(14, 231, 242, 0.5);
  box-shadow: 0 8px 30px rgba(14, 231, 242, 0.2);
}

.industry-tab:nth-child(1) .tab-icon {
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.25), rgba(14, 231, 242, 0.1));
  color: var(--accent);
}

.industry-tab:nth-child(2) {
  border-color: rgba(168, 85, 247, 0.2);
}

.industry-tab:nth-child(2):hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15);
}

.industry-tab:nth-child(2).active {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
}

.industry-tab:nth-child(2) .tab-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(168, 85, 247, 0.1));
  color: var(--purple);
}

.industry-tab:nth-child(3) {
  border-color: rgba(236, 72, 153, 0.2);
}

.industry-tab:nth-child(3):hover {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

.industry-tab:nth-child(3).active {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2);
}

.industry-tab:nth-child(3) .tab-icon {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.1));
  color: var(--pink);
}

.industry-tab:nth-child(4) {
  border-color: rgba(249, 115, 22, 0.2);
}

.industry-tab:nth-child(4):hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.industry-tab:nth-child(4).active {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

.industry-tab:nth-child(4) .tab-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.1));
  color: var(--orange);
}

.industry-tab:nth-child(5) {
  border-color: rgba(59, 130, 246, 0.2);
}

.industry-tab:nth-child(5):hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.industry-tab:nth-child(5).active {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.industry-tab:nth-child(5) .tab-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.1));
  color: var(--blue);
}

.industry-tab:nth-child(6) {
  border-color: rgba(34, 197, 94, 0.2);
}

.industry-tab:nth-child(6):hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.industry-tab:nth-child(6).active {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

.industry-tab:nth-child(6) .tab-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
  color: var(--green);
}

/* Engagement Cards */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.engagement-card {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.engagement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.engagement-card > * {
  position: relative;
  z-index: 1;
}

.engagement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.engagement-card:hover .engagement-description {
  color: var(--gray-300);
}

.engagement-card:hover .engagement-deliverables li {
  color: var(--gray-400);
}

/* Engagement Card 1 - Featured - Cyan to Green Gradient */
.engagement-card.featured {
  background: linear-gradient(135deg, rgba(14, 231, 242, 0.08), rgba(92, 246, 193, 0.04));
  border-color: rgba(14, 231, 242, 0.2);
}

.engagement-card.featured::before {
  background: radial-gradient(circle at top left, rgba(14, 231, 242, 0.2), rgba(92, 246, 193, 0.15));
}

.engagement-card.featured:hover {
  background: rgba(14, 231, 242, 0.05);
  border-color: rgba(14, 231, 242, 0.5);
  box-shadow: 0 25px 70px rgba(14, 231, 242, 0.3);
}

.engagement-card.featured:hover .engagement-title {
  background: linear-gradient(135deg, #0ee7f2, #5cf6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Engagement Card 1 (Non-featured) - Purple to Blue */
.engagement-card:nth-child(1)::before {
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), rgba(99, 102, 241, 0.1));
}

.engagement-card:nth-child(1):hover {
  background: rgba(168, 85, 247, 0.04);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 25px 70px rgba(168, 85, 247, 0.3);
}

.engagement-card:nth-child(1):hover .engagement-title {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Engagement Card 3 (Last) - Orange to Pink */
.engagement-card:nth-child(3)::before {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), rgba(236, 72, 153, 0.1));
}

.engagement-card:nth-child(3):hover {
  background: rgba(249, 115, 22, 0.04);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.3);
}

.engagement-card:nth-child(3):hover .engagement-title {
  background: linear-gradient(135deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popular-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--black);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.engagement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-5);
  gap: var(--space-4);
}

.engagement-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex: 1;
}

.engagement-duration {
  padding: var(--space-2) var(--space-4);
  background: rgba(14, 231, 242, 0.1);
  border: 1px solid rgba(14, 231, 242, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.engagement-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: var(--space-6);
}

.engagement-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}

.engagement-deliverables li {
  font-size: 0.9375rem;
  color: var(--gray-500);
  padding-left: var(--space-6);
  position: relative;
}

.engagement-deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
}

/* Enhanced hover animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(14, 231, 242, 0.3); }
  50% { box-shadow: 0 0 40px rgba(14, 231, 242, 0.5); }
}

.industry-card:hover,
.engagement-card:hover,
.capability-card:hover,
.impact-card:hover {
  animation: float 3s ease-in-out infinite;
}

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

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

/* Extra Small Screens - Industry Tabs */
@media (max-width: 480px) {
  .industry-tabs {
    gap: var(--space-2);
  }
  
  .tab-header {
    padding: var(--space-3) var(--space-4);
    gap: var(--space-2);
  }
  
  .tab-icon {
    width: 40px;
    height: 40px;
  }
  
  .tab-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .tab-title {
    font-size: 1rem;
  }
  
  .tab-subtitle {
    font-size: 0.75rem;
  }
  
  .tab-toggle {
    width: 32px;
    height: 32px;
  }
  
  .tab-details {
    padding: var(--space-4);
    gap: var(--space-5);
  }
  
  .detail-heading {
    font-size: 0.75rem;
  }
  
  .detail-list li {
    font-size: 0.8125rem;
  }
  
  .tech-tag {
    font-size: 0.6875rem;
    padding: 0.125rem var(--space-2);
  }
  
  .metric-number {
    font-size: 1.75rem;
  }
  
  .metric-text {
    font-size: 0.75rem;
  }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-main {
    gap: var(--space-10);
  }

  .visual-container {
    width: 350px;
    height: 350px;
  }

  .ring-1 {
    width: 240px;
    height: 240px;
  }

  .ring-2 {
    width: 190px;
    height: 190px;
  }

  .ring-3 {
    width: 290px;
    height: 290px;
  }

  .visual-info-card {
    width: 85px;
    padding: var(--space-2) var(--space-3);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 100px 0 var(--space-12);
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-label {
    align-self: center;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 380px;
  }

  .visual-container {
    width: 320px;
    height: 320px;
  }

  .ring-1 {
    width: 220px;
    height: 220px;
  }

  .ring-2 {
    width: 170px;
    height: 170px;
  }

  .ring-3 {
    width: 270px;
    height: 270px;
  }

  .core-inner {
    width: 75px;
    height: 75px;
  }

  .core-icon svg {
    width: 28px;
    height: 28px;
  }

  .core-glow {
    width: 110px;
    height: 110px;
  }

  .visual-info-card {
    width: 75px;
    padding: var(--space-2) var(--space-3);
  }

  .card-label {
    font-size: 0.6875rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 var(--space-10);
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin-bottom: var(--space-5);
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--space-8);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
    padding: var(--space-5) 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .visual-container {
    width: 280px;
    height: 280px;
  }

  .ring-1 {
    width: 190px;
    height: 190px;
  }

  .ring-2 {
    width: 145px;
    height: 145px;
  }

  .ring-3 {
    width: 230px;
    height: 230px;
  }

  .core-inner {
    width: 65px;
    height: 65px;
  }

  .core-icon svg {
    width: 24px;
    height: 24px;
  }

  .core-glow {
    width: 95px;
    height: 95px;
  }

  .visual-info-card {
    width: 65px;
    padding: var(--space-2);
  }

  .card-label {
    font-size: 0.625rem;
  }

  .card-bar {
    height: 2px;
    margin-bottom: 3px;
  }

  .data-point .point-dot {
    width: 4px;
    height: 4px;
  }

  .point-trail {
    width: 15px;
    height: 15px;
  }

  .orb-1, .orb-2, .orb-3 {
    filter: blur(60px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 var(--space-8);
  }

  .hero-label {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-3);
  }

  .hero-headline {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .stat-number {
    font-size: 1.375rem;
  }

  .stat-text {
    font-size: 0.8125rem;
  }

  .hero-visual {
    min-height: 260px;
  }

  .visual-container {
    width: 240px;
    height: 240px;
  }

  .ring-1 {
    width: 165px;
    height: 165px;
  }

  .ring-2 {
    width: 125px;
    height: 125px;
  }

  .ring-3 {
    width: 200px;
    height: 200px;
  }

  .core-inner {
    width: 55px;
    height: 55px;
  }

  .core-icon svg {
    width: 20px;
    height: 20px;
  }

  .core-glow {
    width: 80px;
    height: 80px;
  }

  .visual-info-card {
    width: 55px;
    padding: var(--space-1) var(--space-2);
  }

  .card-label {
    font-size: 0.5625rem;
    margin-top: var(--space-1);
  }

  .card-bar {
    height: 2px;
    margin-bottom: 2px;
  }

  .data-point .point-dot {
    width: 3px;
    height: 3px;
  }

  .point-trail {
    width: 12px;
    height: 12px;
  }
}
