/*
 * Modern Landing Page Styles
 * Inspired by modern SaaS design patterns
 * Bootstrap 5 compatible
 */

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
  /* Colors */
  --color-primary: #00A896;
  --color-primary-dark: #008577;
  --color-primary-light: #1CB9A8;
  --color-secondary: #1a3f6b;
  --color-secondary-dark: #0f2847;
  --color-aviation-blue: #2c4875;
  --color-text-dark: #1a202c;
  --color-text-muted: #718096;
  --color-bg-light: #f7fafc;
  --color-white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00A896 0%, #008577 100%);
  --gradient-hero: linear-gradient(135deg, #00A896 0%, #1a3f6b 100%);
  --gradient-hero-alt: linear-gradient(135deg, #1CB9A8 0%, #2c4875 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 4px 14px 0 rgba(0, 168, 150, 0.3);
  --shadow-primary-lg: 0 10px 20px 0 rgba(0, 168, 150, 0.4);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Apply Inter font globally */
body {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #081320 0%, #0b1c2e 30%, #0d203b 60%, #081320 100%);
  overflow: hidden;
  padding: 3rem 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
}

/* Hero Background Grid */
.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 168, 150, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 150, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  animation: heroGridPulse 4s ease-in-out infinite;
}

@keyframes heroGridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Hero Background Logo */
.hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  opacity: 0.03;
}

.hero-bg-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
}

/* Hero Radar System */
.hero-radar-container {
  position: absolute;
  width: 800px;
  height: 800px;
  pointer-events: none;
}

.hero-radar-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-radar-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.hero-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 168, 150, 0.12);
  border-radius: 50%;
}

.hero-radar-ring:nth-child(1) { width: 200px; height: 200px; }
.hero-radar-ring:nth-child(2) { width: 400px; height: 400px; }
.hero-radar-ring:nth-child(3) { width: 600px; height: 600px; }
.hero-radar-ring:nth-child(4) { width: 800px; height: 800px; }

.hero-radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 168, 150, 0.15) 30deg,
    transparent 60deg
  );
  animation: heroRadarSweep 6s linear infinite;
}

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

/* Hero Flight Routes */
.hero-flight-routes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-flight-route {
  position: absolute;
}

.hero-route-1 { top: 11%; left: 6%; width: 280px; height: 80px; }
.hero-route-2 { bottom: 25%; left: 9%; width: 300px; height: 85px; }
.hero-route-3 { top: 10%; right: 6%; width: 290px; height: 80px; }
.hero-route-4 { bottom: 22%; right: 9%; width: 280px; height: 75px; }

.hero-route-svg {
  width: 100%;
  height: 100%;
}

.hero-route-path {
  fill: none;
  stroke: rgba(0, 168, 150, 0.2);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.hero-route-path-glow {
  fill: none;
  stroke: rgba(0, 168, 150, 0.6);
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  filter: drop-shadow(0 0 4px rgba(0, 168, 150, 0.5));
}

.hero-route-1 .hero-route-path-glow { animation: heroDrawRoute 8s ease-in-out infinite; }
.hero-route-2 .hero-route-path-glow { animation: heroDrawRoute 10s ease-in-out infinite; animation-delay: 2s; }
.hero-route-3 .hero-route-path-glow { animation: heroDrawRoute 9s ease-in-out infinite; animation-delay: 4s; }
.hero-route-4 .hero-route-path-glow { animation: heroDrawRoute 7s ease-in-out infinite; animation-delay: 1s; }

@keyframes heroDrawRoute {
  0% { stroke-dashoffset: 600; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* Hero Flying Planes */
.hero-flying-plane {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  color: var(--color-primary);
  filter: drop-shadow(0 0 6px var(--color-primary));
  offset-rotate: auto 0deg;
  offset-anchor: center bottom;
  transform: translateY(1px);
  opacity: 0;
}

.hero-route-1 .hero-flying-plane { animation: heroFlyPlane 8s ease-in-out infinite; }
.hero-route-2 .hero-flying-plane { animation: heroFlyPlane 10s ease-in-out infinite; animation-delay: 2s; }
.hero-route-3 .hero-flying-plane { animation: heroFlyPlane 9s ease-in-out infinite; animation-delay: 4s; }
.hero-route-4 .hero-flying-plane { animation: heroFlyPlane 7s ease-in-out infinite; animation-delay: 1s; }

@keyframes heroFlyPlane {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Hero Airport Dots */
.hero-airport-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.hero-airport-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  opacity: 0.5;
  animation: heroAirportPulse 2s ease-out infinite;
}

@keyframes heroAirportPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

/* Hero Route Info Badge */
.hero-route-info {
  position: absolute;
  background: rgba(13, 32, 59, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 168, 150, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  opacity: 0;
  transform: translateY(5px);
  animation: heroShowInfo 8s ease-in-out infinite;
  white-space: nowrap;
}

.hero-route-1 .hero-route-info { animation-delay: 0.5s; }
.hero-route-2 .hero-route-info { animation-delay: 2.5s; animation-duration: 10s; }
.hero-route-3 .hero-route-info { animation-delay: 4.5s; animation-duration: 9s; }
.hero-route-4 .hero-route-info { animation-delay: 1.5s; animation-duration: 7s; }

@keyframes heroShowInfo {
  0%, 15% { opacity: 0; transform: translateY(5px); }
  25%, 75% { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; transform: translateY(5px); }
}

.hero-route-code {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.hero-origin-code { color: var(--color-primary); }
.hero-dest-code { color: #fff; }
.hero-arrow { font-size: 0.65rem; color: rgba(255, 255, 255, 0.5); }

.hero-route-details {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.hero-detail {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-detail i {
  font-size: 0.55rem;
  color: var(--color-primary);
}

.hero-route-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.hero-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68d391;
  animation: heroStatusPulse 1.5s ease-in-out infinite;
}

@keyframes heroStatusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-route-amenities {
  display: flex;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-route-amenities i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.hero-route-amenities i:hover {
  color: var(--color-primary);
}

/* Hero Pending Flights */
.hero-pending-flights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-pending-flight {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: heroPendingPulse 3s ease-in-out infinite;
}

/* Position pending flights randomly between routes */
.hero-pending-1 { top: 35%; left: 5%; animation-delay: 0s; }
.hero-pending-2 { top: 55%; left: 12%; animation-delay: 1s; }
.hero-pending-3 { top: 32%; right: 6%; animation-delay: 0.5s; }
.hero-pending-4 { top: 50%; right: 14%; animation-delay: 1.5s; }

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

.hero-pending-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}

.hero-pending-1 .hero-pending-dot { background: #f6ad55; box-shadow: 0 0 10px #f6ad55; }
.hero-pending-2 .hero-pending-dot { background: #68d391; box-shadow: 0 0 10px #68d391; }
.hero-pending-3 .hero-pending-dot { background: #fc8181; box-shadow: 0 0 10px #fc8181; }
.hero-pending-4 .hero-pending-dot { background: #68d391; box-shadow: 0 0 10px #68d391; }

.hero-pending-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.5;
  animation: heroPendingRipple 2s ease-out infinite;
}

.hero-pending-1 .hero-pending-dot::before { border-color: #f6ad55; }
.hero-pending-2 .hero-pending-dot::before { border-color: #68d391; }
.hero-pending-3 .hero-pending-dot::before { border-color: #fc8181; }
.hero-pending-4 .hero-pending-dot::before { border-color: #68d391; }

@keyframes heroPendingRipple {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.hero-pending-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-pending-code {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.hero-pending-status {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-pending-1 .hero-pending-status { color: #f6ad55; }
.hero-pending-2 .hero-pending-status { color: #68d391; }
.hero-pending-3 .hero-pending-status { color: #fc8181; }
.hero-pending-4 .hero-pending-status { color: #68d391; }

/* Hero Particle Field */
.hero-particle-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 168, 150, 0.6);
  border-radius: 50%;
  opacity: 0;
}

.hero-particle:nth-child(1) { left: 10%; animation: heroParticleFloat 12s linear infinite; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 20%; animation: heroParticleFloat 14s linear infinite; animation-delay: 2s; }
.hero-particle:nth-child(3) { left: 30%; animation: heroParticleFloat 11s linear infinite; animation-delay: 4s; }
.hero-particle:nth-child(4) { left: 40%; animation: heroParticleFloat 15s linear infinite; animation-delay: 1s; }
.hero-particle:nth-child(5) { left: 50%; animation: heroParticleFloat 13s linear infinite; animation-delay: 3s; }
.hero-particle:nth-child(6) { left: 60%; animation: heroParticleFloat 12s linear infinite; animation-delay: 5s; }
.hero-particle:nth-child(7) { left: 70%; animation: heroParticleFloat 14s linear infinite; animation-delay: 2s; }
.hero-particle:nth-child(8) { left: 80%; animation: heroParticleFloat 11s linear infinite; animation-delay: 4s; }
.hero-particle:nth-child(9) { left: 90%; animation: heroParticleFloat 13s linear infinite; animation-delay: 1s; }
.hero-particle:nth-child(10) { left: 95%; animation: heroParticleFloat 15s linear infinite; animation-delay: 3s; }

@keyframes heroParticleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* Hero Ambient Glows */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero-glow-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.15) 0%, transparent 70%);
}

.hero-glow-2 {
  bottom: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 63, 107, 0.3) 0%, transparent 70%);
  animation-delay: 2s;
}

.hero-glow-3 {
  top: 40%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.1) 0%, transparent 70%);
  animation-delay: 4s;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* ============================================
   BUSINESS TYPE SELECTOR
   ============================================ */
.business-selector {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  display: inline-flex;
  gap: 0.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2.5rem;
}

.business-btn {
  padding: 0.875rem 2rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.business-btn:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.business-btn.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .business-selector {
    flex-direction: column;
    width: 100%;
  }

  .business-btn {
    width: 100%;
    text-align: center;
  }

  /* Hide complex animations on mobile for performance */
  .hero-radar-container {
    display: none;
  }

  .hero-flight-routes {
    opacity: 0.5;
  }

  .hero-flight-route {
    transform: scale(0.6);
  }

  .hero-route-1 { top: 5%; left: -10%; }
  .hero-route-2 { bottom: 10%; left: -15%; }
  .hero-route-3 { top: 8%; right: -15%; }
  .hero-route-4 { bottom: 5%; right: -10%; }

  .hero-particle-field {
    opacity: 0.5;
  }

  .hero-bg-glow {
    opacity: 0.4;
  }

  .hero-glow-1 { width: 300px; height: 300px; }
  .hero-glow-2 { width: 250px; height: 250px; }
  .hero-glow-3 { display: none; }

  .hero-route-info,
  .hero-airport-dot {
    display: none;
  }

  .hero-pending-flights {
    display: none;
  }
}

/* ============================================
   MODERN BUTTONS
   ============================================ */
.btn-modern-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-lg);
  color: var(--color-white);
  text-decoration: none;
}

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

.btn-modern-secondary {
  background: transparent;
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-modern-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
  text-decoration: none;
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-primary:hover {
  background: rgba(5, 150, 105, 0.08);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
  text-decoration: none;
}

.btn-group-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .btn-modern-primary,
  .btn-modern-secondary,
  .btn-outline-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ANIMATED STATISTICS
   ============================================ */
.stats-section {
  background: var(--color-white);
  padding: 3rem 0;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
}

.stats-container {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }
}

/* ============================================
   MODERN CARDS
   ============================================ */
.card-modern {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.card-icon-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

.card-icon-wrapper img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.card-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-text-modern {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  flex-grow: 1;
}

/* ============================================
   MODERN FORMS
   ============================================ */
.form-modern {
  max-width: 600px;
  margin: 0 auto;
}

.form-group-modern {
  margin-bottom: 1.5rem;
}

.form-label-modern {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.form-input-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--color-white);
  font-family: var(--font-primary);
}

.form-input-modern:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

.form-input-modern::placeholder {
  color: #a0aec0;
}

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

.form-select-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--color-white);
  cursor: pointer;
  font-family: var(--font-primary);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-select-modern:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

/* Login Form Modern Overrides */
.login-form-header .card {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.login-form-header .card-header {
  background: var(--gradient-primary) !important;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
  padding: 1.5rem;
}

.login-form-header .form-control {
  padding: 0.875rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.login-form-header .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-modern {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subtitle-primary {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Stagger animations */
.stagger-children > *:nth-child(1) { animation-delay: 0s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.25s; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ============================================
   TESTIMONIAL MODERN
   ============================================ */
.testimonial-modern {
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.05) 0%, rgba(26, 63, 107, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(0, 168, 150, 0.1);
  transition: all var(--transition-base);
}

.testimonial-modern:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================
   STICKY HEADER - GLASSMORPHISM (Apple-style)
   ============================================ */
#site-header {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  position: relative;
  z-index: 1050;
}

#site-header .navbar {
  position: static;
}

#site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Apple-style glassmorphism */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.07);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure content has proper spacing when header becomes sticky */
body.header-sticky {
  padding-top: 88px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
@media (max-width: 991px) {
  #site-header .container-fluid {
    position: relative;
  }

  #site-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 1rem;
    z-index: 1000;
    margin-top: 0.5rem;
  }

  #site-header .navbar-nav {
    align-items: stretch !important;
  }

  #site-header .navbar-nav .nav-item {
    width: 100%;
  }

  #site-header .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    text-align: left;
  }

  #site-header .navbar-nav .nav-link:hover {
    background: rgba(0, 168, 150, 0.1);
  }

  #site-header .navbar-nav .btn {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem 2rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all var(--transition-base);
  filter: grayscale(100%) opacity(0.7);
  min-height: 80px;
}

.partner-logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.partner-logo {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .partner-logo {
    max-width: 120px;
    max-height: 50px;
  }
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.footer-modern {
  background: linear-gradient(135deg, #1a3f6b 0%, #0f2847 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-primary) !important;
  transform: translateX(3px);
}

.footer-contact {
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
}

.footer-contact a {
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom a {
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: var(--color-primary) !important;
}

/* ============================================
   BENEFITS COMPARISON TABLE - Modern Design
   ============================================ */
.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.comparison-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-cell {
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-category {
  background: #ffffff;
  justify-content: flex-start;
  font-weight: 600;
  padding: 1.5rem 1.5rem;
}

.category-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.comparison-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.comparison-without {
  background: rgba(220, 38, 38, 0.04);
}

.comparison-without .comparison-title {
  color: #991b1b;
}

.comparison-with {
  background: rgba(5, 150, 105, 0.04);
}

.comparison-with .comparison-title {
  color: #065f46;
}

.comparison-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.comparison-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
  flex: 1;
}

.comparison-icon-bad {
  color: #dc2626;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.comparison-icon-good {
  color: #059669;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header {
    display: none;
  }

  .comparison-cell {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem;
  }

  .comparison-cell:last-child {
    border-bottom: none;
  }

  .comparison-category {
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.25rem;
  }

  .comparison-row {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
  }

  .comparison-row:last-child {
    margin-bottom: 0;
  }

  /* Add labels for mobile */
  .comparison-without .comparison-content::before {
    content: "Without PSS: ";
    font-weight: 600;
    color: #991b1b;
    white-space: nowrap;
    margin-right: 0.5rem;
  }

  .comparison-with .comparison-content::before {
    content: "With ATC: ";
    font-weight: 600;
    color: #065f46;
    white-space: nowrap;
    margin-right: 0.5rem;
  }
}

@media (max-width: 576px) {
  .comparison-cell {
    padding: 0.875rem;
  }

  .comparison-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .comparison-content p {
    font-size: 0.8125rem;
  }

  .category-title {
    font-size: 0.8125rem;
  }

  .comparison-title {
    font-size: 0.9375rem;
  }

  .category-title {
    font-size: 0.95rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary-modern {
  color: var(--color-primary);
}

.bg-light-modern {
  background-color: var(--color-bg-light);
}

.rounded-modern {
  border-radius: var(--radius-xl);
}

/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 992px) {
  .hero-modern {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero-title {
    margin-bottom: 1.25rem;
  }

  .section-modern {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 576px) {
  .card-modern {
    padding: 1.5rem;
  }

  .btn-group-modern {
    flex-direction: column;
  }
}

/* ============================================
   LOGIN DROPDOWN POPOVER
   ============================================ */

/* Dropdown container - now positioned relative to header */
.login-dropdown {
  position: absolute;
  top: 100%;
  right: 1rem;
  width: 380px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.login-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow pointer */
.login-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 24px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  transform: rotate(45deg);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.login-dropdown-glass {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

/* Light mode radar animation */
.login-dropdown .login-modal-bg {
  opacity: 0.8;
}

.login-dropdown .login-modal-bg .grid-pattern {
  background-image:
    linear-gradient(rgba(0, 168, 150, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 150, 0.05) 1px, transparent 1px);
}

.login-dropdown .login-modal-bg .radar-sweep {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 168, 150, 0.25) 20deg,
    rgba(0, 168, 150, 0.1) 40deg,
    transparent 60deg
  );
}

.login-dropdown .login-modal-bg .radar-ring {
  border-color: rgba(0, 168, 150, 0.2);
}

.login-dropdown .login-modal-bg .ambient-glow {
  background: radial-gradient(circle, rgba(0, 168, 150, 0.12) 0%, transparent 70%);
}

/* Dropdown Header */
.login-dropdown-header {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 1rem;
  text-align: center;
}

.login-dropdown-header .login-modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.login-dropdown-title {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.login-dropdown-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Dropdown Body */
.login-dropdown-body {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1.5rem 1.75rem;
}

/* Override form styles for light dropdown */
.login-dropdown .login-form-modern .form-label {
  color: var(--color-text-dark);
}

.login-dropdown .login-form-modern .form-control {
  background: #f7fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  color: var(--color-text-dark) !important;
}

.login-dropdown .login-form-modern .form-control::placeholder {
  color: #a0aec0 !important;
}

.login-dropdown .login-form-modern .form-control:focus {
  background: #ffffff !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1) !important;
}

/* Light mode icon - fix z-index so it stays above focused input */
.login-dropdown .login-form-modern .input-icon {
  color: #a0aec0 !important;
  z-index: 10 !important;
}

.login-dropdown .login-form-modern .input-group:focus-within .input-icon {
  color: var(--color-primary) !important;
}

.login-dropdown .login-form-modern .form-hint {
  color: var(--color-text-muted);
}

.login-dropdown .login-form-modern .password-toggle {
  color: #a0aec0;
}

.login-dropdown .login-form-modern .password-toggle:hover {
  color: var(--color-text-dark);
}

/* Responsive - Mobile */
@media (max-width: 991px) {
  .login-dropdown {
    position: fixed;
    top: 70px;
    right: 10px;
    left: 10px;
    width: auto;
    z-index: 1100;
  }

  .login-dropdown::before {
    display: none;
  }
}

/* Decorative background elements */
.login-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Grid pattern overlay */
.login-modal-bg .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* Radar sweep animation */
.login-modal-bg .radar-sweep {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 168, 150, 0.15) 20deg,
    rgba(0, 168, 150, 0.05) 40deg,
    transparent 60deg
  );
  border-radius: 50%;
  animation: radarSweep 6s linear infinite;
}

/* Radar rings */
.login-modal-bg .radar-ring {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(0, 168, 150, 0.1);
  border-radius: 50%;
}

.login-modal-bg .radar-ring:nth-child(2) {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.login-modal-bg .radar-ring:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 0;
  right: 0;
}

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

/* Ambient glow */
.login-modal-bg .ambient-glow {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* Modal Header */
#loginModal .modal-header {
  position: relative;
  z-index: 1;
  border: none;
  padding: 2.5rem 2rem 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
}

#loginModal .modal-header .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

#loginModal .modal-header .btn-close:hover {
  opacity: 1;
}

.login-modal-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow:
    0 10px 30px -5px rgba(0, 168, 150, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.login-modal-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  animation: iconShimmer 3s ease-in-out infinite;
}

@keyframes iconShimmer {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

.login-modal-icon svg,
.login-modal-icon i {
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

#loginModal .modal-title {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

#loginModal .modal-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}

/* Modal Body */
#loginModal .modal-body {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem 2.5rem;
  background: transparent;
}

/* Login Form Inputs */
.login-form-modern .form-group {
  margin-bottom: 1.25rem;
}

.login-form-modern .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.login-form-modern .input-group {
  position: relative;
}

.login-form-modern .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  z-index: 2;
  transition: color var(--transition-base);
}

.login-form-modern .form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 0.875rem 1rem 0.875rem 2.75rem !important;
  color: white !important;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.login-form-modern .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.login-form-modern .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 3px rgba(0, 168, 150, 0.15),
    0 0 20px rgba(0, 168, 150, 0.1);
  outline: none;
}

.login-form-modern .form-control:focus + .input-icon,
.login-form-modern .input-group:focus-within .input-icon {
  color: var(--color-primary);
}

/* Password toggle */
.login-form-modern .password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-base);
  z-index: 2;
}

.login-form-modern .password-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Form hint text */
.login-form-modern .form-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

/* Submit button */
.login-form-modern .btn-login {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.login-form-modern .btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.login-form-modern .btn-login:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px -5px rgba(0, 168, 150, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.login-form-modern .btn-login:hover::before {
  left: 100%;
}

.login-form-modern .btn-login:active {
  transform: translateY(0);
}

/* Modal animation override */
#loginModal.fade .modal-dialog {
  transform: scale(0.95) translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#loginModal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* ============================================
   HERO SLIDES SYSTEM
   ============================================ */
.hero-slides {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  visibility: hidden;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

/* Slide-specific gradients */
.hero-slide[data-slide="airlines"].active ~ .hero-gradient-overlay {
  background: linear-gradient(135deg, #00A896 0%, #1a3f6b 100%);
}

.hero-slide[data-slide="charters"].active ~ .hero-gradient-overlay {
  background: linear-gradient(135deg, #00A896 0%, #0d4f42 100%);
}

.hero-slide[data-slide="agencies"].active ~ .hero-gradient-overlay {
  background: linear-gradient(135deg, #1a3f6b 0%, #00A896 100%);
}

/* Feature tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.feature-tags li {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.hero-slide.active .feature-tags li {
  animation: tagFadeIn 0.4s ease backwards;
}

.hero-slide.active .feature-tags li:nth-child(1) { animation-delay: 0.15s; }
.hero-slide.active .feature-tags li:nth-child(2) { animation-delay: 0.2s; }
.hero-slide.active .feature-tags li:nth-child(3) { animation-delay: 0.25s; }
.hero-slide.active .feature-tags li:nth-child(4) { animation-delay: 0.3s; }
.hero-slide.active .feature-tags li:nth-child(5) { animation-delay: 0.35s; }
.hero-slide.active .feature-tags li:nth-child(6) { animation-delay: 0.4s; }

@keyframes tagFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-tags li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ============================================
   HERO ILLUSTRATIONS (Stock Photos)
   ============================================ */
.hero-illustrations {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  width: 100%;
  max-width: 480px;
}

.hero-illustration.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Illustration styling */
.hero-illustration img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.hero-illustration.active img:hover {
  transform: scale(1.03);
}

/* Charter Operations Cycle */
.charter-cycle {
  position: relative;
  width: 420px;
  height: 420px;
}

.cycle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(0, 168, 150, 0.4);
  border-radius: 50%;
  opacity: 0;
}

.hero-illustration.active .cycle-ring {
  animation: ringIn 0.5s ease forwards;
}

@keyframes ringIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
  opacity: 0;
  z-index: 2;
}

.hero-illustration.active .cycle-center {
  animation: centerIn 0.4s ease 0.2s forwards;
}

@keyframes centerIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.cycle-center i {
  color: white;
  font-size: 1.5rem;
}

.cycle-center span {
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cycle-step {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: rotate(calc(var(--i) * 60deg)) translateY(-160px) rotate(calc(var(--i) * -60deg));
  transform-origin: center;
  margin-left: -40px;
  margin-top: -40px;
  opacity: 0;
}

.hero-illustration.active .cycle-step {
  animation: stepIn 0.4s ease forwards;
  animation-delay: var(--delay);
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: rotate(calc(var(--i) * 60deg)) translateY(-120px) rotate(calc(var(--i) * -60deg)) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(calc(var(--i) * 60deg)) translateY(-160px) rotate(calc(var(--i) * -60deg)) scale(1);
  }
}

.cycle-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cycle-step:hover .cycle-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.cycle-icon i {
  color: white;
  font-size: 1.3rem;
}

.cycle-label {
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

/* Responsive adjustments for illustrations */
@media (max-width: 992px) {
  .hero-illustrations {
    min-height: 300px;
    margin-top: 2rem;
  }

  .hero-illustration {
    max-width: 400px;
  }

  .hero-illustration img {
    max-height: 300px;
  }

  .charter-cycle {
    width: 340px;
    height: 340px;
  }

  .cycle-ring {
    width: 260px;
    height: 260px;
  }

  .cycle-center {
    width: 85px;
    height: 85px;
  }

  .cycle-center i {
    font-size: 1.25rem;
  }

  .cycle-center span {
    font-size: 0.6rem;
  }

  .cycle-step {
    width: 70px;
    transform: rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg));
    margin-left: -35px;
    margin-top: -35px;
  }

  @keyframes stepIn {
    from {
      opacity: 0;
      transform: rotate(calc(var(--i) * 60deg)) translateY(-100px) rotate(calc(var(--i) * -60deg)) scale(0.5);
    }
    to {
      opacity: 1;
      transform: rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg)) scale(1);
    }
  }

  .cycle-icon {
    width: 46px;
    height: 46px;
  }

  .cycle-icon i {
    font-size: 1.1rem;
  }

  .cycle-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .hero-illustrations {
    min-height: 200px;
  }

  .hero-illustration {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-illustration img {
    max-height: 220px;
  }

  .charter-cycle {
    width: 280px;
    height: 280px;
  }

  .cycle-ring {
    width: 210px;
    height: 210px;
  }

  .cycle-center {
    width: 70px;
    height: 70px;
  }

  .cycle-center i {
    font-size: 1.1rem;
  }

  .cycle-center span {
    font-size: 0.55rem;
  }

  .cycle-step {
    width: 55px;
    transform: rotate(calc(var(--i) * 60deg)) translateY(-105px) rotate(calc(var(--i) * -60deg));
    margin-left: -27px;
    margin-top: -27px;
  }

  @keyframes stepIn {
    from {
      opacity: 0;
      transform: rotate(calc(var(--i) * 60deg)) translateY(-80px) rotate(calc(var(--i) * -60deg)) scale(0.5);
    }
    to {
      opacity: 1;
      transform: rotate(calc(var(--i) * 60deg)) translateY(-105px) rotate(calc(var(--i) * -60deg)) scale(1);
    }
  }

  .cycle-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .cycle-icon i {
    font-size: 0.95rem;
  }

  .cycle-label {
    font-size: 0.6rem;
  }

  .hero-slides {
    min-height: auto;
  }

  .feature-tags {
    justify-content: center;
  }
}

/* ============================================
   BUSINESS SELECTOR ENHANCEMENTS
   ============================================ */
.business-btn[data-slide] {
  position: relative;
}

.business-btn[data-slide]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.business-btn[data-slide].active::after {
  width: 30px;
}

/* =============================================
   WHY CHOOSE SECTION - Metrics Banner Design
   ============================================= */

.why-metrics-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background decorative elements */
.why-metrics-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-metrics-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 168, 150, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 150, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.why-metrics-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 168, 150, 0.06) 0%, transparent 70%);
}

/* Section Header */
.why-metrics-header {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.why-metrics-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 168, 150, 0.1);
  border-radius: 30px;
}

.why-metrics-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

/* Features Grid */
.why-features-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* Individual Feature Item */
.why-feature-item {
  flex: 1;
  max-width: 360px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-feature-item:hover {
  transform: translateY(-4px);
}

.why-feature-item:hover .why-feature-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 168, 150, 0.25);
}

/* Feature Icon */
.why-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00c9b1 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.2);
  transition: all 0.3s ease;
}

.why-feature-icon i,
.why-feature-icon svg {
  font-size: 2rem;
  color: #ffffff !important;
  fill: #ffffff !important;
}

.why-feature-icon svg path {
  fill: #ffffff !important;
}

/* Feature Content */
.why-feature-content {
  max-width: 340px;
  margin: 0 auto;
}

.why-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.why-feature-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Vertical Divider */
.why-feature-divider {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 168, 150, 0.2) 20%,
    rgba(0, 168, 150, 0.2) 80%,
    transparent 100%
  );
  align-self: stretch;
  margin: 2rem 0;
}

/* Bottom CTA */
.why-metrics-cta {
  position: relative;
  z-index: 2;
}

.btn-metrics-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2rem;
  background: var(--color-primary);
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 150, 0.25);
}

.btn-metrics-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 168, 150, 0.35);
  color: #ffffff;
  background: var(--color-primary-dark);
}

.btn-metrics-cta i {
  transition: transform 0.3s ease;
}

.btn-metrics-cta:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .why-metrics-section {
    padding: 4rem 0;
  }

  .why-features-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .why-feature-item {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .why-feature-divider {
    width: 120px;
    height: 1px;
    margin: 0.5rem auto;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 168, 150, 0.2) 20%,
      rgba(0, 168, 150, 0.2) 80%,
      transparent 100%
    );
  }

  .why-metrics-header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .why-metrics-section {
    padding: 3rem 0;
  }

  .why-metrics-title {
    font-size: 1.5rem;
  }

  .why-feature-icon {
    width: 70px;
    height: 70px;
  }

  .why-feature-icon i {
    font-size: 1.75rem;
  }

  .why-feature-title {
    font-size: 1.1rem;
  }

  .why-feature-desc {
    font-size: 0.9rem;
  }

  .btn-metrics-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* =============================================
   RADAR DECORATION - Why Choose Section
   ============================================= */
.why-metrics-section .radar-container {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  pointer-events: none;
  z-index: 1;
}

.why-metrics-section .radar {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Radar rings */
.why-metrics-section .radar-ring {
  position: absolute;
  border: 1px solid rgba(0, 168, 150, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.why-metrics-section .radar-ring-1 {
  width: 100%;
  height: 100%;
}

.why-metrics-section .radar-ring-2 {
  width: 66%;
  height: 66%;
}

.why-metrics-section .radar-ring-3 {
  width: 33%;
  height: 33%;
}

/* Center dot */
.why-metrics-section .radar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  z-index: 3;
}

/* Radar sweep with gradient trail */
.why-metrics-section .radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: why-radar-rotate 4s linear infinite;
  overflow: hidden;
}

/* Gradient trail - follows behind the line */
.why-metrics-section .radar-sweep::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from 90deg at 50% 50%,
    transparent 280deg,
    rgba(0, 168, 150, 0.05) 300deg,
    rgba(0, 168, 150, 0.15) 320deg,
    rgba(0, 168, 150, 0.3) 340deg,
    rgba(0, 168, 150, 0.45) 358deg,
    rgba(0, 168, 150, 0.45) 360deg
  );
  border-radius: 50%;
}

/* Sweep line - at the leading edge */
.why-metrics-section .radar-sweep::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(0, 168, 150, 0.2));
  transform-origin: left center;
  transform: translateY(-50%);
}

@keyframes why-radar-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Flight paths */
.why-metrics-section .radar-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.why-metrics-section .radar-path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 0.8;
  stroke-dasharray: 3 3;
  opacity: 0.35;
}

/* Radar planes */
.why-metrics-section .radar-plane {
  position: absolute;
  font-size: 14px;
  opacity: 0;
  animation: why-plane-ping 4s linear infinite;
  z-index: 2;
}

.why-metrics-section .radar-plane i,
.why-metrics-section .radar-plane svg {
  color: var(--color-primary) !important;
}

.why-metrics-section .radar-plane svg path {
  fill: var(--color-primary) !important;
}

/* Plane 1 - at SVG (50, 25), heading NE */
.why-metrics-section .radar-plane-1 {
  top: 25%;
  left: 50%;
  transform: rotate(-45deg);
  animation-delay: 0.3s;
}

/* Plane 2 - at SVG (72, 45), heading E */
.why-metrics-section .radar-plane-2 {
  top: 45%;
  left: 72%;
  transform: rotate(-10deg);
  animation-delay: 1.5s;
}

/* Plane 3 - at SVG (32, 65), heading SW */
.why-metrics-section .radar-plane-3 {
  top: 65%;
  left: 32%;
  transform: rotate(225deg);
  animation-delay: 2.8s;
}

@keyframes why-plane-ping {
  0%, 55% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  65%, 100% {
    opacity: 0.7;
  }
}

/* Hide radar on smaller screens */
@media (max-width: 1200px) {
  .why-metrics-section .radar-container {
    width: 280px;
    height: 280px;
    right: -40px;
    opacity: 0.7;
  }
}

@media (max-width: 991px) {
  .why-metrics-section .radar-container {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .why-feature-item,
  .why-feature-icon,
  .btn-metrics-cta,
  .btn-metrics-cta i {
    transition: none;
  }

  .why-feature-item:hover,
  .why-feature-item:hover .why-feature-icon,
  .btn-metrics-cta:hover {
    transform: none;
  }

  .why-metrics-section .radar-sweep,
  .why-metrics-section .radar-plane {
    animation: none;
  }

  .why-metrics-section .radar-plane {
    opacity: 0.7;
  }
}
