body {
  margin-bottom: 0;
}

/* =====================
   NAVBAR
===================== */
#mainNav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  padding: 0.75rem 0;
  z-index: 1030;
}

#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* =====================
   HERO
===================== */
.hero-section {
  background: linear-gradient(140deg, #0d1b35 0%, #1a3a6e 50%, #0d1b35 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(32, 107, 196, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(32, 107, 196, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.text-gradient {
  background: linear-gradient(130deg, #5ba4f5, #93d5f5, #5ba4f5);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* =====================
   DASHBOARD PREVIEW
===================== */
.dashboard-preview {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.browser-bar {
  flex: 1;
  background: #f4f6fa;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #999;
}

/* =====================
   STATS STRIP
===================== */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}

.stat-item {
  padding: 2rem 1rem;
  border-right: 1px solid #e9ecef;
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

/* =====================
   FEATURES
===================== */
.section-features {
  background: #fff;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.card-feature {
  border: 1px solid #e8edf2;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.card-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
  border-color: #c7d9f0;
}

/* =====================
   HOW IT WORKS
===================== */
.section-how {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf2fb 100%);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #206bc4, #1649a0);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(32, 107, 196, 0.35);
  position: relative;
}

.step-connector {
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, #206bc4, #93b8e5);
  opacity: 0.3;
}

/* =====================
   PRICING
===================== */
.pricing-card {
  border: 1.5px solid #e8edf2;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.pricing-popular {
  border-color: #206bc4 !important;
  box-shadow: 0 12px 50px rgba(32, 107, 196, 0.18) !important;
  transform: scale(1.04);
  position: relative;
  z-index: 1;
}

.pricing-popular:hover {
  transform: scale(1.04) translateY(-4px) !important;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #1a2332;
}

.price-period {
  font-size: 0.9rem;
  color: #6c7a8d;
  margin-top: 4px;
}

.feature-check {
  color: #2fb344;
}

.feature-cross {
  color: #c8cfd8;
}

/* =====================
   FAQ
===================== */
.section-faq {
  background: #f8fafd;
}

.accordion-button {
  font-weight: 600;
  color: #1a2332;
}

.accordion-button:not(.collapsed) {
  color: #206bc4;
  background: #f0f6ff;
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

/* =====================
   CTA SECTION
===================== */
.cta-section {
  background: linear-gradient(135deg, #1649a0 0%, #206bc4 50%, #1a56db 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.btn-white {
  background: #fff;
  color: #206bc4;
  border: none;
  font-weight: 600;
}

.btn-white:hover {
  background: #f0f6ff;
  color: #1649a0;
}

/* =====================
   FOOTER
===================== */
.footer-dark {
  background: #0d1523;
}

.footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* =====================
   UTILITIES
===================== */
.py-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf2ff;
  color: #206bc4;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3.5rem 0 3rem;
  }

  .pricing-popular {
    transform: none;
  }

  .pricing-popular:hover {
    transform: translateY(-4px) !important;
  }

  .py-7 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}
