/**
 * Mesada Landing - Card Components
 * Soft cards, feature cards with glow effects
 */

/* ===== Soft Card (Base) ===== */
.soft-card {
  background-color: var(--color-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

/* ===== Feature Card ===== */
.feature-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
  padding-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-slow);
}

/* ===== Card Glow Effect ===== */
.card-glow {
  transition: all var(--transition-slow);
}

.card-glow:hover {
  box-shadow:
    var(--shadow-glow),
    var(--shadow-xl);
}

/* ===== Feature Number Badge ===== */
.feature-number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background-color: var(--mesada-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(142, 125, 255, 0.4);
}

/* ===== Card Title ===== */
.card-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-slate-900);
}

/* ===== Card Description ===== */
.card-desc {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  margin-top: var(--space-2);
  text-align: center;
}

/* ===== Illustration Card ===== */
.illustration-card {
  background-color: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.illustration-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
}
