/* ===========================
   🌈 GLOBAL DESIGN TOKENS
=========================== */
:root {
  --radius-card: 16px;
  --shadow-soft: 0 2px 6px rgba(0,0,0,0.08);
  --border-light: #f1f5f9;
  --text-muted: #64748b;
}

/* ===========================
   🧱 REUSABLE COMPONENTS
=========================== */

.section-wrapper {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .section-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.pill-badge {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.section-heading {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 1.875rem;
  }
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.feature-card {
  background: white;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  padding: 1rem 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.feature-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}
