.hero-section {
  min-height: 100vh;
  padding: 80px 20px;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.hero-content {
  flex: 1;
  max-width: 720px;
}

.hero-title {
  font-size: 4em;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.6em;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  margin-top: 30px;
  width: 100%;
  max-width: 260px;
}

.hero-actions .btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  padding: 12px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.hero-actions .btn-ghost-light:hover {
  background: linear-gradient(135deg, #003060, #055c9d);
  border-color: #facc15;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.6), 0 0 40px rgba(250, 204, 21, 0.3);
  color: #fef9c3;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(250, 204, 21, 0.8);
}

@media (min-width: 992px) {
  main {
    padding: 0;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8em;
  }
  .hero-description {
    font-size: 1.2em;
  }
  .hero-actions {
    max-width: 100%;
  }
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: color 0.1s;
}

.cta-link:hover {
  color: var(--accent-light);
}

.cta-link .arrow {
  margin-left: 5px;
  transition: transform 0.1s;
}

.cta-link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .services-intro {
    flex-direction: column;
    text-align: center;
  }
  .services-grid {
    flex-direction: column;
  }
  .service-box {
    width: 100%;
    margin-bottom: 40px;
  }
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.usecases-grid > * {
  height: 100%;
}

/* Stats Section Styles */
.gradient-text {
  background: linear-gradient(135deg, #00d4ff, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter {
  font-variant-numeric: tabular-nums;
}

/* .fade-in-up, */
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}

/* .fade-in-up {
  transform: translateY(30px);
} */

.fade-in-left {
  transform: translateX(-30px);
}

.fade-in-right {
  transform: translateX(30px);
}

/* .fade-in-up.animate-in, */
.fade-in-left.animate-in,
.fade-in-right.animate-in,
.animate-in {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

/* Typewriter effect - initially hidden */
.typewriter {
  opacity: 0;
}

@media (max-width: 768px) {
  #stats {
    padding: 50px 20px;
  }
}

/* Glass-card styling */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(10px)) {
  .glass-card {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* Light theme glass-card for white backgrounds */
.card-white {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.card-white:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* Light glass-morphism card for subtle transparency on white backgrounds */
.glass-card-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(10px)) {
  .glass-card-light {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00d4ff;
  cursor: pointer;
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00d4ff;
  cursor: pointer;
  border: none;
}

/* Glow-button styling */
.glow-button {
  background: linear-gradient(135deg, #00d4ff, #10b981);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glow-button:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  transform: scale(1.05);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-stage {
  cursor: pointer;
  transition: all 0.3s ease;
}

.stage-details {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.timeline-stage:hover .card-white {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px !important;
    transform: none !important;
  }
  .timeline-stage-left {
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .timeline-stage-right {
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Disable all transitions and animations */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Disable hover-lift animation */
  .hover-lift:hover {
    transform: none;
  }

  /* Disable timeline stage expansion animation */
  .stage-details {
    transition: none;
  }

  /* Disable glow-button hover effects */
  .glow-button:hover {
    transform: none;
  }

  /* Disable custom fade-in animations */
  [class*="opacity-0"][class*="translate-y-10"] {
    opacity: 1 !important;
    transform: none !important;
  }

  /* .fade-in-up, */
  .fade-in-left,
  .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.fade-in-up.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

