/* =========================================================================
   ONE BOOST — hero.css
   Hero section layout + the product mock (score gauge, stat bars).
   ========================================================================= */

.hero { position: relative; padding: 74px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  color: var(--text-2); font-size: 13.5px; font-weight: 700;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 24px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }

h1.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.06; letter-spacing: -.5px; text-wrap: balance; margin-bottom: 22px; }
html[lang="ar"] h1.hero-title { line-height: 1.18; letter-spacing: 0; }
.hero-title .hl { background: linear-gradient(120deg, var(--red-bright), var(--red-ink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18.5px; color: var(--text-2); max-width: 40ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 14px; font-weight: 600; }
.hero-trust .t svg { width: 17px; height: 17px; color: var(--red-ink); flex: none; }

/* Product mock */
.mock {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2); border-radius: 22px; padding: 22px;
  box-shadow: var(--shadow); overflow: hidden;
}
.mock::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 80% -10%, var(--glow-soft), transparent 60%);
}
.mock-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 20px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.mock-bar i:first-child { background: var(--red); }
.mock-bar span { margin-inline-start: 10px; color: var(--text-3); font-size: 12.5px; font-family: var(--font-display); letter-spacing: 1px; }
.mock-body { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; }

.gauge { position: relative; width: 150px; height: 150px; flex: none; }
.gauge .ring {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(var(--red) 0 calc(var(--p, 0) * 1%), var(--surface-3) calc(var(--p, 0) * 1%) 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 70%, #000 71%);
          mask: radial-gradient(closest-side, transparent 70%, #000 71%);
  filter: drop-shadow(0 0 12px var(--glow));
}
.gauge .num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gauge .num b { font-family: var(--font-display); font-size: 42px; font-weight: 800; line-height: 1; }
.gauge .num small { color: var(--text-3); font-size: 11px; letter-spacing: 2px; margin-top: 4px; }

.mock-stats { display: flex; flex-direction: column; gap: 12px; }
.stat-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stat-row .lbl { color: var(--text-2); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.stat-row .lbl i { width: 8px; height: 8px; border-radius: 2px; background: var(--red); display: inline-block; }
.stat-row .bar { flex: 1; height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.stat-row .bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--red-deep), var(--red-bright)); border-radius: 999px; }
.stat-row .val { color: var(--text); font-size: 13px; font-weight: 700; font-family: var(--font-display); min-width: 44px; text-align: end; direction: ltr; }

.mock-btn {
  margin-top: 20px; width: 100%; text-align: center; padding: 13px; border-radius: 12px;
  background: linear-gradient(180deg, var(--red-bright), var(--red)); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
