body {
  background-color: #030712;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #030712; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* Premium CTA Button (Ultra Modern) */
.btn-cta {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 36px;
  min-height: 54px;
  box-shadow: 0 4px 20px -2px rgba(59, 130, 246, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease-in-out;
  z-index: 1;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px -4px rgba(59, 130, 246, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-cta:hover::before {
  left: 100%;
}
.btn-cta:active {
  transform: translateY(0) scale(0.98);
}
.btn-inner { 
  z-index: 2; 
  gap: 10px; 
  position: relative; 
  width: 100%; 
  color: white; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.05rem; 
  font-weight: 600; 
  letter-spacing: 0.3px;
}
.btn-inner svg { 
  width: 20px; 
  height: 20px; 
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); 
  stroke: white; 
  fill: none; 
}
.btn-cta:hover .btn-inner svg { 
  transform: translateX(6px); 
}

/* Secondary Glass Button */
.btn-secondary {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 500;
  font-size: 1.05rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  gap: 10px;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.btn-secondary:hover::before {
  opacity: 1;
}
.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}
.btn-secondary i {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-secondary:hover i {
  transform: scale(1.15) rotate(5deg);
  color: #fff;
}

/* Particle Animation inside Button */
.points_wrapper { overflow: hidden; width: 100%; height: 100%; pointer-events: none; position: absolute; inset: 0; z-index: 1; border-radius: 9999px; }
.points_wrapper .point { bottom: -10px; position: absolute; animation: floating-points infinite ease-in-out; pointer-events: none; width: 2px; height: 2px; background-color: #fff; border-radius: 9999px; }
.points_wrapper .point:nth-child(1) { left: 10%; opacity: 1; animation-duration: 2.35s; animation-delay: 0.2s; }
.points_wrapper .point:nth-child(2) { left: 30%; opacity: 0.7; animation-duration: 2.5s; animation-delay: 0.5s; }
.points_wrapper .point:nth-child(3) { left: 25%; opacity: 0.8; animation-duration: 2.2s; animation-delay: 0.1s; }
.points_wrapper .point:nth-child(4) { left: 44%; opacity: 0.6; animation-duration: 2.05s; }
.points_wrapper .point:nth-child(5) { left: 50%; opacity: 1; animation-duration: 1.9s; }
.points_wrapper .point:nth-child(6) { left: 75%; opacity: 0.5; animation-duration: 1.5s; animation-delay: 1.5s; }
.points_wrapper .point:nth-child(7) { left: 88%; opacity: 0.9; animation-duration: 2.2s; animation-delay: 0.2s; }

/* Glass Card */
.glass-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

/* Gradient Text */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #ffffff, #93c5fd);
}

/* Animations */
@keyframes fadeSlideIn { 
  0% { opacity: 0; transform: translateY(30px); filter: blur(8px); } 
  100% { opacity: 1; transform: translateY(0); filter: blur(0px); } 
}
@keyframes fadeSlideRight {
  0% { opacity: 0; transform: translateX(-40px); filter: blur(8px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0px); }
}
@keyframes clipRevealTop {
  0% { opacity: 0; clip-path: inset(100% 0 0 0); transform: translateY(30px); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}
@keyframes blurFadeIn {
  0% { opacity: 0; filter: blur(20px); transform: scale(0.95); }
  100% { opacity: 1; filter: blur(0px); transform: scale(1); }
}
@keyframes slideUp3D {
  0% { opacity: 0; transform: translateY(60px) rotateX(-15deg); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0px); }
}
@keyframes scaleReveal {
  0% { opacity: 0; transform: scale(0.85); filter: blur(10px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0px); }
}

.animate-on-scroll { animation-play-state: paused !important; opacity: 0; animation-fill-mode: both; will-change: transform, opacity, filter; }
.animate-on-scroll.animate { animation-play-state: running !important; animation-name: fadeSlideIn; animation-duration: 1s; animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1); }

/* Animation Modifiers */
.animate-on-scroll.fade-right.animate { animation-name: fadeSlideRight; }
.animate-on-scroll.clip-up.animate { animation-name: clipRevealTop; animation-duration: 1.2s; animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1); }
.animate-on-scroll.blur-fade.animate { animation-name: blurFadeIn; animation-duration: 1.2s; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.slide-3d.animate { animation-name: slideUp3D; animation-duration: 1s; animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1); perspective: 1000px; transform-origin: bottom; }
.animate-on-scroll.scale-reveal.animate { animation-name: scaleReveal; animation-duration: 0.8s; animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Falling Beams Animation */
@keyframes beam-fall {
  0% { transform: translateY(-100%); opacity: 0; }
  5% { opacity: 0.5; }
  50% { opacity: 1; }
  95% { opacity: 0.5; }
  100% { transform: translateY(120vh); opacity: 0; }
}
.animate-beam-1 { animation: beam-fall 6s linear infinite; animation-delay: 0s; }
.animate-beam-2 { animation: beam-fall 8s linear infinite; animation-delay: 2s; }
.animate-beam-3 { animation: beam-fall 7s linear infinite; animation-delay: 4s; }

/* Accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 1rem;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Stacked Cards Animation */
@keyframes cardStackCycle {
  0%, 25% { transform: translateY(0) scale(1); z-index: 30; opacity: 1; filter: blur(0px); }
  33%, 58% { transform: translateY(-40px) scale(0.85); z-index: 10; opacity: 0.5; filter: blur(2px); }
  66%, 91% { transform: translateY(-20px) scale(0.92); z-index: 20; opacity: 0.75; filter: blur(1px); }
  100% { transform: translateY(0) scale(1); z-index: 30; opacity: 1; filter: blur(0px); }
}
@media (min-width: 768px) {
  @keyframes cardStackCycle {
    0%, 25% { transform: translateY(0) scale(1); z-index: 30; opacity: 1; filter: blur(0px); }
    33%, 58% { transform: translateY(-60px) scale(0.85); z-index: 10; opacity: 0.5; filter: blur(2px); }
    66%, 91% { transform: translateY(-30px) scale(0.92); z-index: 20; opacity: 0.75; filter: blur(1px); }
    100% { transform: translateY(0) scale(1); z-index: 30; opacity: 1; filter: blur(0px); }
  }
}

@keyframes beam-horizontal {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Ambient Background Drift */
@keyframes ambient-drift {
  0% { transform: scale(1.05) translate(0, 0); }
  33% { transform: scale(1.1) translate(2%, 2%); }
  66% { transform: scale(1.08) translate(-2%, 1%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.animate-ambient-drift {
  animation: ambient-drift 30s ease-in-out infinite alternate;
}