/* Hero section */
.hero {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0 clamp(80px, 10vw, 128px);
  overflow: hidden;
}

.hero-display {
  font-size: clamp(36px, 4.8vw, 46px);
  max-width: 560px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero-h1-soft {
  color: var(--text-muted);
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ VISUAL ============ */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 0.95;
}

/* Ambient glow */
.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-ambient-1 {
  width: 320px; height: 320px;
  top: -40px; right: -40px;
  background: radial-gradient(circle, rgba(20, 92, 78, 0.22), transparent 70%);
}
.hero-ambient-2 {
  width: 280px; height: 280px;
  bottom: -20px; left: -30px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.14), transparent 70%);
}

.hero-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* LEFT: SMS prompt card (smaller — supporting role) */
.hero-prompt {
  position: absolute;
  top: 8%;
  left: 0;
  width: 44%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow:
    0 1px 2px rgba(20, 30, 25, 0.04),
    0 12px 28px -16px rgba(20, 30, 25, 0.15);
  z-index: 3;
  transform: scale(0.94);
  transform-origin: top left;
  opacity: 0.96;
}
.hero-prompt-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-sms-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-sms-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
}
.hero-sms-time {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
  letter-spacing: 0.04em;
}
.hero-prompt-msg {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.hero-prompt-stars {
  display: flex;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* RIGHT: 5-star review with Google pill (focal point) */
.hero-good-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  z-index: 4;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px 7px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow:
    0 1px 2px rgba(20, 30, 25, 0.04),
    0 8px 20px -10px rgba(20, 30, 25, 0.18);
  white-space: nowrap;
  margin-bottom: 10px;
}
.hero-pill-google {
  /* lives inside .hero-good-wrap, shown above the good review */
}
.hero-pill-private {
  background: rgba(20, 92, 78, 0.06);
  border-color: rgba(20, 92, 78, 0.25);
  color: var(--accent-dark);
  margin-top: 10px;
  margin-bottom: 0;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-pill-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(10, 125, 74, 0.14);
  flex-shrink: 0;
}

.hero-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow:
    0 1px 2px rgba(20, 30, 25, 0.04),
    0 16px 36px -16px rgba(20, 30, 25, 0.18);
}
.hero-review-good {
  padding: 20px 20px 18px;
  border-radius: 16px;
  box-shadow:
    0 2px 4px rgba(20, 30, 25, 0.04),
    0 24px 56px -20px rgba(20, 30, 25, 0.28);
}
.hero-review-good .hero-review-stars svg {
  width: 20px;
  height: 20px;
}
.hero-review-good .hero-review-quote {
  font-size: 15px;
  line-height: 1.5;
}
.hero-review-bad {
  background: var(--surface);
  border-color: rgba(20, 92, 78, 0.25);
  padding: 12px 14px;
  border-radius: 12px;
  transform: scale(0.96);
  transform-origin: top center;
  opacity: 0.94;
}
.hero-review-bad .hero-review-quote {
  font-size: 12px;
  margin-bottom: 6px;
}
.hero-review-bad .hero-review-foot {
  font-size: 10px;
}
.hero-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.hero-review-quote {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 8px;
}
.hero-review-foot {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* BOTTOM: 2-star intercepted review (small, supporting) */
.hero-bad-wrap {
  position: absolute;
  bottom: 8%;
  left: 24%;
  width: 50%;
  z-index: 3;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual-inner { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-visual-inner {
    max-width: 100%;
    aspect-ratio: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .hero-ambient { display: none; }
  .hero-connectors { display: none; }
  .hero-prompt,
  .hero-good-wrap,
  .hero-bad-wrap {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
  }
  .hero-prompt { padding: 14px; }
  .hero-review { padding: 14px; }
  .hero-review-good { padding: 16px; }
  .hero-review-bad {
    transform: none;
    opacity: 1;
  }
  .hero-pill { font-size: 11px; padding: 6px 10px 6px 8px; }
}
