/* ============================================================
   BENSIS — home.css
   Hero · Pain Band · Social Proof Strip
   ============================================================ */

/* ── HERO ── */

.hero {
  background: var(--navy);
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Grid texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Left orange rule */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--orange);
  z-index: 2;
}

.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Trust bar below hero CTAs */
.hero-trust {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Hero image placeholder */
.hero-visual {
  position: relative;
}

.hero-img-placeholder {
  aspect-ratio: 16 / 10;
}

/* ── PAIN BAND ── */

.pain-band {
  background: var(--off-white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.pain-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.pain-item {
  padding: 0 36px;
  border-right: 1px solid var(--border);
}

.pain-item:first-child { padding-left: 0; }
.pain-item:last-child  { border-right: none; padding-right: 0; }

.pain-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 8px;
  display: block;
}

.pain-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pain-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SOCIAL PROOF STRIP (home) ── */

.proof-strip {
  background: var(--navy);
  padding: 64px 0;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.proof-quote-block {
  border-left: 4px solid var(--orange);
  padding-left: 28px;
}

.proof-quote {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.proof-attr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.proof-stat-item {}

.proof-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}

.proof-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

/* ── HOMEPAGE CTA BAND ── */

.cta-band {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text {}

.cta-band-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.cta-band-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 440px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .hero { padding: 110px 0 64px; }
  .hero h1 { font-size: 36px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .pain-band-inner { grid-template-columns: 1fr; gap: 0; }
  .pain-item {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .pain-item:last-child { border-bottom: none; }

  .proof-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-stats { grid-template-columns: 1fr 1fr; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
