/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 50%, #f8f9ff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(65,117,252,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-eyebrow .lucide { width: 13px; height: 13px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; color: var(--dark);
  letter-spacing: -.02em; margin-bottom: 20px;
}
.hero-title .accent { color: var(--blue); }
.hero-sub { font-size: 1.08rem; color: var(--gray-mid); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-safety { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--gray-mid); }
.hero-safety .lucide { width: 14px; height: 14px; color: var(--blue); }
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--gray-line); }
.hero-stat-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.hero-stat-val span { color: var(--blue); }
.hero-stat-label { font-size: .78rem; color: var(--gray-mid); margin-top: 2px; }

/* Right visual — funnel mockup */
.hero-visual { position: relative; }
.funnel-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(65,117,252,.14), 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden; border: 1px solid var(--gray-line);
}
.funnel-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 28px 28px 20px; color: #fff;
}
.funnel-header-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; }
.funnel-header-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.funnel-header-sub { font-size: .78rem; opacity: .75; }
.funnel-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.funnel-step {
  display: flex; align-items: center; gap: 12px;
  background: var(--gray-bg); border-radius: 10px; padding: 12px 14px;
}
.funnel-step-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.funnel-step-icon.blue { background: var(--blue-light); color: var(--blue); }
.funnel-step-icon.green { background: #d1fae5; color: #059669; }
.funnel-step-icon.orange { background: #fef3c7; color: #d97706; }
.funnel-step-icon .lucide { width: 16px; height: 16px; }
.funnel-step-label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.funnel-step-sub { font-size: .72rem; color: var(--gray-mid); }
.funnel-step-val { margin-left: auto; font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: var(--dark); white-space: nowrap; }
.funnel-step-val.green { color: #059669; }
.funnel-footer { padding: 14px 24px 20px; display: flex; gap: 10px; }
.funnel-metric {
  flex: 1; background: var(--blue); border-radius: 10px;
  padding: 12px 14px; text-align: center; color: #fff;
}
.funnel-metric.light { background: var(--blue-light); }
.funnel-metric-val { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; }
.funnel-metric.light .funnel-metric-val { color: var(--blue); }
.funnel-metric-label { font-size: .68rem; opacity: .8; margin-top: 2px; }
.funnel-metric.light .funnel-metric-label { color: var(--blue); opacity: .7; }
/* Floating badges */
.fv-badge {
  position: absolute; background: var(--white);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; border: 1px solid var(--gray-line);
}
.fv-badge-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fv-badge-val { font-family: var(--font-head); font-size: .88rem; font-weight: 800; color: var(--dark); }
.fv-badge-label { font-size: .68rem; color: var(--gray-mid); }
.fv-badge-1 { top: -18px; right: 16px; }
.fv-badge-2 { bottom: -16px; left: 12px; }

