:root {
  --sm-gradient: linear-gradient(135deg, #206bc4 0%, #4c6ef5 35%, #9775fa 100%);
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f8f9fb;
  color: #1b1f23;
}

.navbar-brand .brand-icon {
  font-size: 1.75rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(76, 110, 245, 0.15), transparent 60%),
              radial-gradient(circle at 80% 10%, rgba(33, 150, 243, 0.2), transparent 55%),
              radial-gradient(circle at 50% 90%, rgba(151, 117, 250, 0.2), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.dashboard-preview img {
  object-fit: cover;
  height: 340px;
  width: 100%;
}

.module-icon {
  font-size: 1.75rem;
}

.feature-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.module-list p {
  font-size: 0.95rem;
}

.pricing-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.12);
}

.cta-accent {
  position: absolute;
  inset: 0;
  background: var(--sm-gradient);
  opacity: 0.35;
  z-index: 0;
}

#cta .container {
  position: relative;
  z-index: 1;
}

#features .card {
  border: none;
  transition: transform 0.25s ease;
}

#features .card:hover {
  transform: translateY(-6px);
}

footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 767.98px) {
  .dashboard-preview img {
    height: 260px;
  }
}
