/* css/hero.css */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 5rem; overflow: hidden; z-index: 1;
}

.hero-content {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 6rem 4rem;
}

.hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,180,76,0.07) 0%, transparent 70%);
  bottom: 0; left: 200px; pointer-events: none;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--teal); }

h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.0; letter-spacing: -0.03em; max-width: 820px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
h1 em { font-style: normal; color: var(--teal); }

.hero-sub {
  margin-top: 1.8rem; font-size: 1.1rem; color: var(--muted);
  max-width: 540px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex; gap: 1.2rem; margin-top: 2.8rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-stats {
  display: flex; gap: 3.5rem; flex-wrap: wrap;
  margin-top: 5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0; animation: fadeUp 0.8s ease forwards 1s;
}
.stat-val { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; }
.stat-val span { color: var(--teal); }
.stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }

@media (max-width: 424px) {
  #hero { padding: 5rem 1rem 3rem; }
  .hero-content { gap: 1rem; margin-top: 1rem; padding: .5rem .5rem;}
  .hero-stats { gap: 2rem; margin-top: 1rem; }
  h1 {font-weight: 700;}
  .stat-val { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; }
}

@media (max-width: 768px) {
  #hero { padding: 7rem 1.5rem 4rem; }
  .hero-content { gap: 1rem; margin-top: 1rem; padding: .5rem .5rem;}
  .hero-stats { gap: 2rem; margin-top: 1rem; }
  .stat-val { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; }
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}
.hero-logo-img {
  height: 110px;
  width: 110px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,0.25);
  background: rgba(0,180,216,0.04);
  padding: 6px;
}

@media (max-width: 768px) {
  .hero-logo-img { height: 80px; width: 80px; }
}
