/* ─── Home Page Specific Styles ──────────────────────────────────────────────── */

.hero-preview-img {
  background: linear-gradient(135deg,#f8f6f0 0%,#f0ebe0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-preview-cert {
  background: white;
  border: 8px solid transparent;
  border-image: linear-gradient(135deg, #d97706, #f59e0b, #d97706) 1;
  padding: 3rem 4rem;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  position: relative;
}

.preview-cert-label {
  font-size: .65rem;
  letter-spacing: .2em;
  color: #92400e;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.preview-cert-title {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  color: #6b7280;
  margin-bottom: .5rem;
}

.preview-cert-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  border-bottom: 2px solid #d97706;
  display: inline-block;
  padding-bottom: .5rem;
  margin-bottom: .75rem;
}

.preview-cert-body {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: .5rem;
}

.preview-cert-course {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1d4ed8;
}

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-proof-text {
  font-size: .875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.social-proof-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-logo {
  font-size: .85rem;
  font-weight: 600;
  color: var(--neutral-400);
  opacity: .7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: .75rem;
}

.step-desc {
  font-size: .9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-preview-cert { padding: 1.5rem 2rem; }
  .preview-cert-name { font-size: 1.5rem; }
}
