/* ================================
   GLOBAL
================================ */
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111827;
}

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

.text-primary.text-decoration-underline:hover {
    color: #2a3749; /* Bootstrap primary */
}
/* ================================
   NAVBAR
================================ */
.navbar {
  background-color: #0f172a;
  padding: 20px 0;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #cbd5e1 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #ffffff !important;
}

  .navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar .navbar-brand img {
    height: 35px;
    display: inline-block;
  }

.btn-primary-custom {
  background-color: #6C63FF;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #4F46E5;
  transform: translateY(-2px);
}

/* ================================
   HERO
================================ */
.hero {
  padding: 50px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.badge-beta {
  background-color: #e0e7ff;
  color: #3730a3;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* ================================
   WHY SECTION
================================ */
#why {
  background-color: #f3f4f6;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  padding-bottom: 120px; /* space for overlapping image */
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.why-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-image-wrapper {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}

.why-image-wrapper img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ================================
   FAQ
================================ */
.accordion-button {
  font-weight: 600;
}

/* ================================
   PRICING
================================ */
#pricing {
  background-color: #ffffff;
}

/* ================================
   FOOTER
================================ */
footer {
  padding: 40px 0;
  background-color: #0f172a;
  color: #cbd5e1;
  text-align: center;
  font-size: 0.9rem;
}

/* ================================
   RESPONSIVE FIX
================================ */
@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .why-card {
    padding-bottom: 40px;
  }

  .why-image-wrapper {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }
}
