:root {
  --electric-blue: #3b82f6;
  --emerald: #10b981;
  --coral: #ff6b6b;
  --charcoal: #1f2937;
  --soft-bg: #f6f9ff;
  --radius-2xl: 1.25rem;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-hero: 0 20px 40px 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(--charcoal);
}

.navbar-brand .logo-dot {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), var(--emerald));
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-bg) 100%);
}
.hero .display-5 {
  letter-spacing: 0.2px;
}
.hero .hero-media img {
  filter: saturate(1.1) contrast(1.05);
}
.lh-tight {
  line-height: 1.1;
}
.fw-extrabold {
  font-weight: 800;
}

.bg-gradient-subtle {
  background: radial-gradient(1200px 600px at 10% -20%, #e8f0ff 0%, #fff 40%),
    radial-gradient(1400px 700px at 100% 120%, #ecfff7 0%, #fff 40%);
}

.card,
.service-card,
.pricing-card,
.step {
  border-radius: var(--radius-2xl);
}
.card {
  box-shadow: var(--shadow-soft);
}

.step {
  background: #fff;
  position: relative;
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-weight: 700;
  background: var(--electric-blue);
  color: #fff;
}

.pricing-card {
  background: #fff;
}
.pricing-card .display-6 {
  color: var(--charcoal);
}
.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: var(--shadow-hero);
}
.pricing-card .badge-top {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--coral);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

#cta .cta-box {
  background: linear-gradient(135deg, var(--electric-blue), var(--emerald));
  box-shadow: var(--shadow-hero);
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-2xl);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-item[open] summary {
  color: var(--electric-blue);
}

.text-coral {
  color: var(--coral) !important;
}
.object-fit-cover {
  object-fit: cover;
}

.nav-link.active {
  font-weight: 700;
  color: var(--electric-blue) !important;
}
