/* Hot pink SVC promo strip — matches footer CTA band energy */

.svc-promo-hot {
  --svc-promo-hot: #ff2aad;
  --svc-promo-hot-mid: #ff43b6;
  --svc-promo-hot-soft: #ff7ec8;
  background: linear-gradient(120deg, var(--svc-promo-hot) 0%, var(--svc-promo-hot-mid) 42%, var(--svc-promo-hot-soft) 78%, #ffc4e8 100%);
  color: #fff;
  padding: clamp(2rem, 4.5vw, 2.75rem) 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 28px rgba(255, 67, 182, 0.22);
  position: relative;
  overflow: hidden;
}

.svc-promo-hot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.28) 0%, transparent 45%);
  pointer-events: none;
}

.svc-promo-hot__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
}

.svc-promo-hot__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.svc-promo-hot__badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.svc-promo-hot__title {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.svc-promo-hot__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.45;
  font-weight: 500;
}

.svc-promo-hot__actions {
  flex: 0 0 auto;
}

.svc-promo-hot .btn--svc-promo-hot,
.svc-promo-hot .btn.btn--svc-promo-hot {
  background: #ffffff;
  color: var(--color-primary, #e2587e);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.22);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  min-width: 11.5rem;
}

.svc-promo-hot .btn--svc-promo-hot:hover,
.svc-promo-hot .btn--svc-promo-hot:focus-visible,
.svc-promo-hot .btn.btn--svc-promo-hot:hover,
.svc-promo-hot .btn.btn--svc-promo-hot:focus-visible {
  background: var(--color-accent-cream, #fff5f0);
  color: var(--color-primary-hover, #c9446a);
  border-color: var(--color-accent-cream, #fff5f0);
}

@media (max-width: 767px) {
  .svc-promo-hot {
    padding: 1.25rem 0;
    min-height: 0;
  }

  .svc-promo-hot__inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.875rem; /* ~14px: text → button, no half-screen stretch */
    text-align: center;
    min-height: 0;
  }

  /* Desktop uses flex-basis 16rem for horizontal strip; kill it on mobile */
  .svc-promo-hot__copy {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
  }

  .svc-promo-hot__actions {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }

  .svc-promo-hot__badge {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .svc-promo-hot__title {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
    margin-bottom: 0.4rem;
  }

  .svc-promo-hot__sub {
    margin: 0;
  }

  .svc-promo-hot__actions .btn--svc-promo-hot,
  .svc-promo-hot__actions .btn.btn--svc-promo-hot {
    width: 100%;
    min-width: 0;
  }
}
