:root {
  --bs-primary: #0d6efd;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar-brand {
  letter-spacing: -0.02em;
}

.hero-section {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.hero-title {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
}

.how-card {
  border-radius: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.how-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.how-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: rgba(13,110,253,0.08);
}

.feature-card {
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(13,110,253,0.08);
}

.featured-card {
  border: 2px solid var(--bs-primary) !important;
  transform: scale(1.03);
}

.cta-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
}

.site-footer a:hover {
  color: #fff !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 64px 0 48px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .featured-card {
    transform: none;
  }
}
