* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #050b14;
  color: #eef2ff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


.gradient-text {
  background: linear-gradient(135deg, #5F9DF7, #A367F2, #F45D8C);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.bg-light-subtle {
  background: #0f172a;
}


.glass-nav {
  background: rgba(5, 11, 20, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95, 157, 247, 0.2);
  transition: all 0.3s ease;
}

.navbar-brand {
  letter-spacing: -0.02em;
}

.nav-link {
  font-weight: 500;
  transition: 0.2s;
}

.nav-link:hover {
  color: #5F9DF7 !important;
  transform: translateY(-2px);
}


.hero-section {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 10% 30%, #0a1120, #03070f);
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(95, 157, 247, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: -30%;
  left: -20%;
  animation: slowDrift 25s infinite alternate;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.funnel-visual {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(95, 157, 247, 0.4);
  width: 280px;
  position: relative;
  font-weight: bold;
  font-size: 1.5rem;
}

.ai-pulse {
  animation: pulseGlow 2s infinite;
  display: block;
  margin-top: 15px;
}

.circle-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #5F9DF730, transparent);
  left: -10%;
  top: -10%;
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
}

.hero-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  svg>') no-repeat bottom;
 background-size: cover;
}

.shadow-glow {
  box-shadow: 0 8px 28px rgba(95, 157, 247, 0.35);
}

.btn-primary {
  background: linear-gradient(95deg, #5F9DF7, #A367F2);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(95, 157, 247, 0.45);
  background: linear-gradient(95deg, #4d8be0, #9154e0);
}


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


.card-modern {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 32px;
  border: 1px solid rgba(95, 157, 247, 0.2);
  transition: all 0.4s;
}

.card-modern:hover {
  transform: translateY(-8px);
  border-color: #5F9DF7;
  background: rgba(20, 30, 55, 0.8);
  box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.5);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #18233f, #0e152a);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5F9DF7;
  border: 1px solid #2d3a60;
}


.stage-item {
  background: rgba(10, 18, 30, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 28px;
  transition: 0.3s;
  border-left: 4px solid #5F9DF7;
}

.stage-item:hover {
  background: #111c2f;
  transform: translateX(8px);
}

.stage-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5F9DF7, #A367F2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  min-width: 55px;
}


.funnel-graph-wrapper {
  background: #0a0f1c;
  border-radius: 48px;
  border: 1px solid #20273f;
}

.funnel-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.funnel-bar {
  background: linear-gradient(90deg, #232e4e, #1a253f);
  border-radius: 30px;
  padding: 12px 18px;
  font-weight: 600;
  color: white;
  transition: width 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  width: 0%;
  position: relative;
  overflow: hidden;
}

.funnel-bar span {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.funnel-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #5F9DF730, #A367F230);
  border-radius: 30px;
}


.tech-card {
  background: rgba(5, 10, 20, 0.6);
  border-radius: 28px;
  border: 1px solid #2a3452;
  transition: all 0.25s;
}

.tech-card i {
  color: #7c9ef0;
}

.tech-card:hover {
  background: #0f172f;
  border-color: #5F9DF7;
  transform: scale(1.02);
}


.cta-section {
  background: radial-gradient(ellipse at 30% 40%, #1e2a4a, #03070f);
  border-radius: 50px 50px 0 0;
  margin-top: 40px;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(95, 157, 247, 0.5);
  border-color: #5F9DF7;
}

.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  line-height: 38px;
  margin: 0 6px;
  color: white;
  transition: 0.2s;
}

.social-icons a:hover {
  background: #5F9DF7;
  transform: translateY(-4px);
}

.footer {
  background: #03070f;
  border-top: 1px solid #1b253f;
}


.reveal,
.fade-up,
.fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right {
  transform: translateX(30px);
}

.reveal.revealed,
.fade-up.revealed,
.fade-in-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}


@keyframes slowDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(5%, 3%) scale(1.1);
  }
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 0px #5F9DF7;
    opacity: 0.7;
  }

  100% {
    text-shadow: 0 0 12px #A367F2;
    opacity: 1;
  }
}


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

  .display-3 {
    font-size: 2.2rem;
  }

  .hero-section {
    text-align: center;
  }

  .stage-item {
    flex-direction: column;
    text-align: center;
  }
}