/* ============================================
   Hero — Premium Professional
   ============================================ */

.hero {
  position: relative;
  padding: calc(var(--space-3xl) + var(--nav-height)) 0 var(--space-3xl);
  background: var(--grad-hero);
  overflow: hidden;
}

/* ── Radial accent glow ── */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 140%;
  background: radial-gradient(ellipse at center top, rgba(var(--accent-rgb), 0.06) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Subtle grid pattern overlay ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.06);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ── Headline ── */
.hero h1 {
  max-width: 800px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 .text-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Trust Bar Mount ── */
.hero-trust {
  margin-top: var(--space-xl);
  width: 100%;
  max-width: 700px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    padding: calc(var(--space-2xl) + var(--nav-height)) 0 var(--space-2xl);
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .hero-ctas .btn, .hero-ctas .btn-cta {
    width: 100%;
    justify-content: center;
  }
}
