/* ─────────────────────────────────────────────
   WeDefineApps — hero.css
───────────────────────────────────────────── */

/* ── Hero Section ── */
.hero-section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--bg);
}

/* Background blob */
.hero-bg-blob {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(248,130,46,0.09) 0%, rgba(248,130,46,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-ultra-light);
  border: 1px solid rgba(248,130,46,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248,130,46,0.5); }
  50%       { box-shadow: 0 0 0 4px rgba(248,130,46,0); }
}

/* ── Heading ── */
.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #E06A18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subheading ── */
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.175rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2.25rem;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ── Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .hero-bg-blob { width: 300px; height: 300px; top: -80px; right: -80px; }
}
