/* Global Styles */
:root {
  --bg-gradient-start: #050816;
  --bg-gradient-end: #050816;
  --primary: #4f8df5;
  --primary-soft: rgba(79, 141, 245, 0.16);
  --accent: #6e7dfb;
  --card-bg: #0c1020;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text-muted: #E8EAFF;
   --bs-secondary-color: #E8EAFF !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f3f4ff;
  background: radial-gradient(circle at top left, #18214a 0, #050816 45%, #020413 100%);
  min-height: 100vh;
}

/* Navbar */
.blurred-nav {
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar-brand .logo {
  height: 32px;
  width: auto;
}

.navbar .nav-link {
  color: #d6ddff;
  font-size: 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero-section .badge {
  background: linear-gradient(90deg, rgba(79, 141, 245, 0.15), rgba(110, 125, 251, 0.15));
  border-radius: 999px;
  color: #c7d2fe;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section h1 {
  line-height: 1.1;
}

.hero-section .highlight {
  background: linear-gradient(120deg, #4f8df5, #8c7dfd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section .lead {
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(79, 141, 245, 0.8);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #4f8df5, #6e7dfb);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #366fdb, #5361e8);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #e5e7ff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Hero Card */
.hero-card {
  border-radius: 24px;
  padding: 1.75rem;
  background: radial-gradient(circle at top left, #18214a 0, #050816 40%);
  border: 1px solid var(--border-subtle);
}

.hero-card-header .hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #f87171 0, #b91c1c 60%);
}

.hero-card-body {
  background: radial-gradient(circle at top left, rgba(79, 141, 245, 0.09), transparent 60%);
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-response {
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.bg-soft-primary {
  background: rgba(79, 141, 245, 0.15);
  color: #dbeafe;
}

.bg-soft-success {
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
}

/* Sections */
.section-padding {
  padding: 4.5rem 0;
}

.section-padding.bg-soft {
  background: radial-gradient(circle at top, #0b1024 0, #020413 60%);
}

/* Feature Cards */
.feature-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  border-color: rgba(79, 141, 245, 0.7);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 141, 245, 0.15), rgba(110, 125, 251, 0.25));
}

/* Demo Section */
.demo-video-wrapper {
  border-radius: 24px;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.93);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* Pricing */
.pricing-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card .price {
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.pricing-card .currency {
  font-size: 1.25rem;
}

.pricing-card .amount {
  font-size: 2.1rem;
}

.pricing-card .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card.featured {
  background: radial-gradient(circle at top left, rgba(79, 141, 245, 0.3), #020617 55%);
  border-color: rgba(79, 141, 245, 0.9);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
  position: relative;
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, #4f8df5, #6e7dfb);
  color: white;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
}

/* CTA Section */
.bg-soft-dark {
  background: radial-gradient(circle at top, #020617 0, #02010b 60%);
}

.text-light-muted {
  color: rgba(226, 232, 240, 0.85);
}

.demo-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.demo-card .form-control,
.demo-card .form-select {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.demo-card .form-control::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.waitlist-box {
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.98);
}

.footer .logo-sm {
  height: 22px;
  width: auto;
}

/* Utilities */
.bg-soft {
  background: rgba(15, 23, 42, 0.9);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 6.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }

  .hero-card {
    padding: 1.25rem;
  }

  .section-padding {
    padding: 3.25rem 0;
  }
}


.hero-section p.lead {
  color: var(--text-muted) !important;
}