/* ==========================================================
   Repeat Customers Hero
   ========================================================== */

.repeat-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 450px at 50% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #efeaff 16%, #d5cdfd 38%, #b6a9fb 60%, #9a8af8 78%, #7d65fd 100%);
  padding: clamp(44px, 9vw, 120px) 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.rh-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.rh-content {
  text-align: center;
  color: #111827;
}

.rh-kicker {
  color: #7d65fd;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 10px;
}

.rh-title {
  font-weight: 900;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
}

.rh-desc {
  font-size: clamp(15px, 2.6vw, 18px);
  color: #1f2937;
  max-width: 58ch;
  margin: 0 auto;
}

.rh-actions {
  margin-top: clamp(16px, 3.6vw, 28px);
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.rh-btn {
  display: inline-block;
  border-radius: 14px;
  padding: 12px 26px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.rh-btn-primary {
  background: #7d65fd;
  color: #fff;
  border: 3px solid #ffffff;
  box-shadow: 0 12px 28px rgba(125, 101, 253, 0.35);
}

.rh-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.rh-btn-ghost {
  background: #ffffff;
  color: #7d65fd;
  border: 3px solid #8f94fb;
  box-shadow: 0 10px 22px rgba(143, 148, 251, 0.25);
}

.rh-btn-ghost:hover {
  transform: translateY(-1px);
}

.rh-phone {
  position: absolute;
  right: max(3%, 22px);
  top: 50%;
  pointer-events: none;
}

.rh-phone svg {
  width: clamp(220px, 32vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.22));
}

/* ----------------------------------------------------------
   Decoratives
   ---------------------------------------------------------- */
.decor {
  position: absolute;
  pointer-events: none;
}

.rh-sticker {
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  width: clamp(60px, 10vw, 92px);
  height: auto;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.18));
}

.rh-wifi {
  right: max(3%, 22px);
  top: 90px;
  width: clamp(60px, 10vw, 100px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .rh-phone {
    display: none;
  }

  .rh-sticker {
    top: auto;
    bottom: 18px;
    transform: none;
    left: 16px;
  }

  .rh-wifi {
    display: none;
  }
}
