/* ============================================================
   AQOON TECH  —  Hero Sections  (css/hero.css)
   Home hero, page band hero, dark band hero, stats strip,
   hero badges, floating illustration
   ============================================================ */

/* ════════════════════════════
   HOME HERO
════════════════════════════ */
.home-hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

/* ── Hero eyebrow pill ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--blue-light);
  color: var(--blue-dark);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--blue-mid);
  letter-spacing: 0.5px;
  margin-bottom: var(--s5);
  text-decoration: none;
}
[data-theme="dark"] .hero-eyebrow {
  background: rgba(74,144,217,.10);
  color: var(--blue);
  border-color: rgba(74,144,217,.30);
}

/* ── Main headline ── */
.hero-headline {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--text);
  margin-bottom: var(--s4);
}
.hero-headline .highlight {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero-headline .highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.35;
}

/* ── Hero sub-text ── */
.hero-sub-italic {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-3);
  font-style: italic;
  margin-bottom: var(--s4);
}

.hero-body-text {
  font-size: 15.5px;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: var(--s8);
}

/* ── CTA button row ── */
.hero-ctas {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* ════════════════════════════
   HERO VISUAL (right column)
════════════════════════════ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Floating badge overlays ── */
.hero-badge {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  pointer-events: none;
}
.hero-badge-1 { top: 10%;    left: -16%; }
.hero-badge-2 { bottom: 14%; right: -12%; }

.hero-badge-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
[data-theme="dark"] .hero-badge-icon { background: rgba(74,144,217,.10); }

.hero-badge-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-badge-value {
  font-family: var(--font-brand);
  font-size: 15px;
  color: var(--text);
  line-height: 1.2;
}

/* ════════════════════════════
   PAGE BAND (light gradient)
════════════════════════════ */
.page-band {
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x) clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
[data-theme="dark"] .page-band {
  background: linear-gradient(180deg, rgba(74,144,217,.07) 0%, var(--bg) 100%);
}
.page-band::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-band > * { position: relative; z-index: 1; }

/* ════════════════════════════
   DARK HERO BAND
════════════════════════════ */
.dark-band {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a2040 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
[data-theme="dark"] .dark-band {
  background: linear-gradient(135deg, #0c0e1a 0%, #141830 100%);
}
.dark-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(74,144,217,.18) 0%, transparent 60%);
  pointer-events: none;
}
.dark-band > * { position: relative; z-index: 1; }

/* ── Dark band text colours ── */
.dark-band h1,
.dark-band h2,
.dark-band h3 { color: #fff; }
.dark-band p   { color: rgba(255,255,255,.60); }
.dark-band .label { color: rgba(255,255,255,.55); }
.dark-band .label::before { background: rgba(255,255,255,.4); }

/* ════════════════════════════
   STATS STRIP
════════════════════════════ */
.stats-strip {
  background: var(--charcoal);
  padding: var(--s10) var(--pad-x);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .stats-strip { background: #08090f; }
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,144,217,.06) 0%, transparent 55%);
  pointer-events: none;
}
.stats-inner {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  position: relative; z-index: 1;
}
.stat-item  { text-align: center; }
.stat-num   {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--s2);
  letter-spacing: -0.5px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.50);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
