:root {
  --bs-primary: #6366f1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes testimonialFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
* {
  scroll-behavior: smooth;
}
body {
  background-color: #0a0a0b;
  color: #f1f5f9;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.7;
}
a {
  color: #6366f1;
  transition: color 0.3s ease;
}
a:hover {
  color: #6366f1;
}
section {
  position: relative;
  overflow: hidden;
}
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.display-4 {
  font-weight: 800;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.6;
}
.text-muted {
  color: #94a3b8 !important;
}
.navbar {
  backdrop-filter: blur(20px);
  background: rgba(26, 26, 27, 0.8) !important;
  border-bottom: 1px solid #2d2d30;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}
.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link:hover {
  color: #6366f1 !important;
  transform: translateY(-1px);
}
.nav-link.active {
  color: #6366f1 !important;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #6366f1;
  border-radius: 1px;
}
.btn-accent {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  color: white;
  font-weight: 600;
  padding: 6px 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  color: white;
}
.btn-accent:active {
  transform: translateY(0);
}
.btn-accent.btn-lg {
  padding: 14px 28px;
  font-size: 1.1rem;
}
.btn-outline-accent {
  background: transparent;
  border: 1px solid #6366f1;
  color: #6366f1;
  font-weight: 600;
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-outline-accent:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: #8b5cf6;
  transform: translateY(-2px);
  color: white;
}
.btn-outline-accent:active {
  transform: translateY(0);
}
.btn-outline-accent.btn-lg {
  padding: 14px 28px;
  font-size: 1.1rem;
}
.btn-outline-light {
  border: 2px solid rgba(241, 245, 249, 0.2);
  color: #f1f5f9;
  font-weight: 600;
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background: rgba(241, 245, 249, 0.1);
  border-color: rgba(241, 245, 249, 0.3);
  transform: translateY(-2px);
  color: white;
}
.btn-outline-light.btn-lg {
  padding: 14px 28px;
  font-size: 1.1rem;
}
.card {
  background: #1e1e1f !important;
  border: 1px solid #2d2d30 !important;
  border-radius: 16px !important;
  transition: all 0.3s ease;
  overflow: hidden;
  color: #f3f4f6;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.3) !important;
}
.card h5 {
  font-weight: 600;
  color: #f1f5f9;
}
.ci-icon {
  color: #6366f1;
  transition: color 0.3s ease;
}
.ci-icon:hover {
  color: #8b5cf6;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.feature-icon i {
  font-size: 2.5rem !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
}
.icons.logo {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-right: 8px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  background-image: url('../images/logo-dark.svg');
}
.icons.logo.logo-light {
  background-image: url('../images/logo-light.svg');
}
.step-number {
  width: 70px !important;
  height: 70px !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}
.step-number:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}
.gradient-bg {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(16, 185, 129, 0.1) 100%);
  position: relative;
}
.gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
#testimonials {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
  position: relative;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
#testimonials h2 {
  position: relative;
  display: inline-block;
}
#testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}
.testimonial-card {
  background: #1e1e1f !important;
  border: 1px solid #2d2d30 !important;
  border-radius: 20px !important;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  color: #f3f4f6;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(99, 102, 241, 0.4) !important;
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.testimonial-card:hover .testimonial-stars {
  transform: scale(1.1);
}
.testimonial-card .card-body {
  padding: 2rem !important;
  position: relative;
  z-index: 2;
}
.testimonial-card:nth-child(1) {
  animation: testimonialFloat 6s ease-in-out infinite;
  animation-delay: 0s;
}
.testimonial-card:nth-child(2) {
  animation: testimonialFloat 6s ease-in-out infinite;
  animation-delay: 2s;
}
.testimonial-card:nth-child(3) {
  animation: testimonialFloat 6s ease-in-out infinite;
  animation-delay: 4s;
}
.testimonial-avatar {
  width: 64px !important;
  height: 64px !important;
  border: 3px solid transparent;
  background: linear-gradient(#1e1e1f, #1e1e1f) padding-box, linear-gradient(135deg, #6366f1, #8b5cf6) border-box;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.testimonial-user h6 {
  color: #f1f5f9 !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2px !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-user small {
  color: #94a3b8 !important;
  font-weight: 500;
  opacity: 0.8;
}
.testimonial-quote {
  position: relative;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: #94a3b8 !important;
  margin: 1.5rem 0 !important;
  padding-left: 1rem;
  border-left: 3px solid rgba(99, 102, 241, 0.3);
  font-style: italic;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: 3rem;
  color: rgba(99, 102, 241, 0.2);
  font-family: serif;
  line-height: 1;
}
.testimonial-stars {
  transition: all 0.3s ease;
  display: inline-flex;
  gap: 2px;
}
.testimonial-stars i {
  font-size: 1.1rem;
  color: #fbbf24 !important;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
  transition: all 0.2s ease;
}
.testimonial-stars i:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}
.zoom-in {
  animation: zoomIn 1.2s ease forwards;
}
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  .feature-icon i {
    font-size: 2rem !important;
  }
  .testimonial-card {
    margin-bottom: 2rem;
  }
  .testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
  .testimonial-card .card-body {
    padding: 1.5rem !important;
  }
  .testimonial-avatar {
    width: 56px !important;
    height: 56px !important;
  }
  .testimonial-quote {
    font-size: 0.95rem !important;
  }
  .testimonial-quote::before {
    font-size: 2.5rem;
    top: -8px;
    left: -6px;
  }
}
