:root {
  --brand-1: #0d6efd;
  --brand-2: #2563eb;
  --brand-3: #9333ea;
  --brand-4: #ec4899;
  --ink-1: #0f172a;
  --ink-2: #334155;
  --line: #e2e8f0;
}

html,
body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink-1);
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  padding-top: 80px;
}

.nav-shadow {
  box-shadow: 0 6px 26px rgba(15, 23, 42, 0.08);
}

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(13, 110, 253, 0.18), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(147, 51, 234, 0.14), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(236, 72, 153, 0.12), transparent 40%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-title {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brand-2), var(--brand-3), var(--brand-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill {
  border: 1px solid rgba(13, 110, 253, 0.15);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

.section-space {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.08);
}

.feature-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.1);
}

.price-card.popular {
  border: 2px solid #9333ea;
  transform: scale(1.02);
  box-shadow: 0 18px 36px rgba(147, 51, 234, 0.2);
}

.cta-block {
  background: linear-gradient(130deg, #2563eb 0%, #7c3aed 45%, #db2777 100%);
}

.footer-dark {
  background: #0f172a;
}

.text-purple {
  color: var(--brand-3) !important;
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.badge-soft {
  background: #e0e7ff;
  color: #3730a3;
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 991px) {
  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding-top: 3.5rem;
  }

  
}
