/* ═══════════════════════════════════════════
   Homepage — Page Styles
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d4bef0;
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #7c4dba;
  margin-bottom: 20px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: #f0c040;
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  color: #3a1a5e;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient {
  color: #7c4dba;
  -webkit-text-fill-color: #7c4dba;
}

.hero p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Stats Bar ── */
.stats-bar {
  background: #fff;
  border-top: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #eee;
}

.stat-item {
  background: #fff;
  text-align: center;
  padding: 28px 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #7c4dba;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #888;
}

/* ── About Preview ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.about-card {
  padding: 24px;
}

.about-card .icon {
  width: 44px;
  height: 44px;
  background: #f3edf9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #3a1a5e;
}

.about-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
