:root {
  --tblr-primary: #3b82f6;
  --tblr-primary-rgb: 59, 130, 246;
  --landing-hero-bg: #0f172a;
  --landing-hero-text: #f8fafc;
  --landing-accent: #8b5cf6;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, San Francisco,
    Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

/* Navbar */
/* Navbar */
.landing-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.landing-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-navbar .nav-link {
  color: #1e293b !important;
  font-weight: 500;
  transition: color 0.2s;
}

.landing-navbar .nav-link:hover {
  color: var(--tblr-primary) !important;
}

.landing-navbar .navbar-brand span {
  color: #1e293b !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  background-color: var(--landing-hero-bg);
  overflow: hidden;
  color: var(--landing-hero-text);
}

/* Decorative Background Glows */
.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

/* 3D Image Container */
.hero-image-container {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background: rgba(255, 255, 255, 0.02);
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Feature Cards */
.feature-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--tblr-primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  color: var(--tblr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.feature-description {
  color: #64748b;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  background: #0f172a;
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  z-index: 0;
}

/* Buttons */
.btn-glow {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Trusted By */
.trusted-by {
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

/* Testimonial */
.testimonial-card {
  padding: 3rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  position: relative;
  /* box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05); */
}

.avatar {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* Price Calculator Styles */
#pricing .form-range::-webkit-slider-thumb {
  background: #206bc4; /* Primary color */
  box-shadow: 0 0 0 4px rgba(32, 107, 196, 0.1);
}

#pricing .form-range::-moz-range-thumb {
  background: #206bc4;
  box-shadow: 0 0 0 4px rgba(32, 107, 196, 0.1);
}

#pricing .card,
#features .card {
  transition: transform 0.2s;
}

#pricing .card:hover,
#features .card:hover {
  transform: translateY(-5px);
}

#pricing .input-group-text {
  background-color: #f8fafc;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .hero-section {
    padding: 6rem 0 3rem;
  }
}
