.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74,63,107,0.85) 0%, rgba(26,22,37,0.55) 60%, rgba(46,39,65,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 100px;
  max-width: 1000px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: var(--sp-5);
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-heading {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--sp-5);
  max-width: 14ch;
}
.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-rose);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-7);
  max-width: 52ch;
}
.hero-sub strong {
  color: var(--c-rose);
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.trust-stars {
  color: var(--c-yellow);
  letter-spacing: 0.12em;
  font-size: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: #fff;
  border-radius: 1px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 640px) {
  .hero { min-height: 100vh; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
}
