:root {
  --purple: #6c5ce7; /* Royal Purple (Primary) */
  --lime: #a3e635; /* Neon Lime (Accent) */
  --teal: #0f766e; /* Deep Teal (Accent 2) */
  --warm: #f5e9da; /* Warm Sand (BG) */
  --graphite: #111827; /* Graphite (Text) */

  --radius-2xl: 1.25rem;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --shadow-hero: 0 22px 44px rgba(0, 0, 0, 0.12);
}

html,
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--graphite);
}

.text-purple {
  color: var(--purple) !important;
}
.text-teal {
  color: var(--teal) !important;
}
.text-lime {
  color: var(--lime) !important;
}
.text-graphite {
  color: var(--graphite) !important;
}
.text-graphite-70 {
  color: rgba(17, 24, 39, 0.7) !important;
}
.link-graphite {
  color: var(--graphite);
  text-decoration: underline;
}
.link-graphite:hover {
  color: var(--purple);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
  border: 0;
}
.btn-purple:hover {
  filter: brightness(0.92);
  color: #fff;
}
.btn-outline-graphite {
  color: var(--graphite);
  border-color: var(--graphite);
}
.btn-outline-graphite:hover {
  background: var(--graphite);
  color: #fff;
}

.logo-spark {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lime), var(--purple));
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-gradient {
  background: radial-gradient(1000px 500px at -10% -20%, #eae7ff 0%, #fff 40%),
    radial-gradient(1200px 600px at 110% 120%, #eaffea 0%, #fff 40%);
}
.shadow-hero {
  box-shadow: var(--shadow-hero);
}
.shadow-soft {
  box-shadow: var(--shadow-soft);
}
.rounded-4 {
  border-radius: var(--radius-2xl);
}
.object-fit-cover {
  object-fit: cover;
}
.lh-tight {
  line-height: 1.1;
}
.fw-extrabold {
  font-weight: 800;
}
.bg-warm {
  background: var(--warm);
}

.card,
.svc,
.pricing-card,
.step,
.faq-item {
  border-radius: var(--radius-2xl);
}
.svc {
  background: #fff;
}
.pricing-card {
  background: #fff;
}
.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #efeefe 100%);
}
.pricing-card .badge-top {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--lime);
  color: #111;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.step {
  position: relative;
  background: #fff;
}
.step .step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  background: var(--purple);
  color: #fff;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-item[open] summary {
  color: var(--purple);
}

#cta .cta-box {
  background: linear-gradient(135deg, var(--purple), var(--teal));
}

.nav-link.active {
  font-weight: 700;
  color: var(--purple) !important;
}
