/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: grid; place-items: center;
  position: relative; overflow: hidden; background: var(--black);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 48px,
    rgba(245,200,0,0.025) 48px, rgba(245,200,0,0.025) 50px);
  pointer-events: none;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -55%); pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 60px;
  max-width: 1200px; padding: 100px 5% 60px; width: 100%;
}
.hero-text { flex: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
}
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--yellow); }
.hero-title {
  font-family: 'Barlow', sans-serif; font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 900; line-height: 0.9; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--white); margin-bottom: 24px;
}
.hero-title .accent { color: var(--yellow); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: #aaa; max-width: 440px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-logo-wrap { flex: 0 0 380px; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-logo-ring {
  position: absolute; width: 420px; height: 420px;
  border: 1px solid rgba(245,200,0,0.15); border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero-logo-ring2 {
  width: 360px; height: 360px; border-color: rgba(245,200,0,0.08);
  animation-duration: 20s; animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo {
  width: 320px; height: 320px; position: relative; z-index: 1;
  filter: drop-shadow(0 0 24px rgba(245,200,0,0.5));
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(245,200,0,0.4)); }
  50% { filter: drop-shadow(0 0 36px rgba(245,200,0,0.7)); }
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: 'Barlow', sans-serif; font-size: 2.4rem; font-weight: 900;
  color: var(--yellow); line-height: 1; letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--grey); margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-content { flex-direction: column-reverse; gap: 40px; padding-top: 120px; }
  .hero-logo-wrap { flex: none; width: 220px; }
  .hero-logo { width: 220px; height: 220px; }
  .hero-logo-ring { width: 260px; height: 260px; }
  .hero-logo-ring2 { width: 230px; height: 230px; }
}
@media (max-width: 600px) {
  /* Tighten the hero's vertical rhythm so its two CTA buttons clear the fixed
     corner FABs (accessibility + WhatsApp) instead of sitting under them. */
  .hero-content { padding-top: 100px; gap: 26px; }
  .hero-logo-wrap { width: 150px; }
  .hero-logo { width: 150px; height: 150px; }
  .hero-logo-ring { width: 180px; height: 180px; }
  .hero-logo-ring2 { width: 160px; height: 160px; }
  .hero-title { margin-bottom: 18px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 26px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { flex: 1; text-align: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
  .stat-num { font-size: 1.9rem; }
}
