/* قسم البطل */
.hero {
  padding: 56px 24px 88px;
  background: linear-gradient(180deg, var(--bg-hero), var(--bg-hero-alt));
  color: #f8fafc;
  --text-main: #f8fafc;
  --text-muted: rgba(226, 232, 240, 0.78);
  --text-soft: #e2e8f0;
  --bg-border: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 22px 50px rgba(2, 6, 23, 0.55);
}

.hero-headline {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.hero-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-accent-strong);
}

.hero-badge-text {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: bold;
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.6px;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}

.hero-subtitle, .hero-title {
    text-align: center;
}

.countdown {
  margin: 32px auto 0;
  max-width: 480px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: rgba(250, 204, 21, 0.16);
  display: grid;
  gap: 14px;
  justify-items: center;
  box-shadow: var(--shadow-soft);
}

.countdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-accent-strong);
  color: #111827;
}

.countdown-icon i {
  font-size: 20px;
}

.countdown-cells {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.countdown-cell {
  text-align: center;
  min-width: 64px;
}

.countdown-value {
  display: block;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.countdown-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.countdown-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-actions {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-partners {
  margin: 48px auto 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-partners img {
    width: 350px;
    height: 80px !important;
  object-fit: contain;
}

/* تجاوب قسم البطل */
@media (max-width: 768px) {
  .hero {
    padding: 48px 18px 72px;
  }

  .countdown-cells {
    gap: 12px;
  }

  .countdown-value {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .countdown-cells {
    flex-direction: column;
    gap: 10px;
  }

  .countdown-sep {
    display: none;
  }

  .countdown-cell {
    min-width: auto;
  }
}

