/* End of Summer Generac promo popup */
.promo-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0; transition: opacity 0.25s ease;
}
.promo-overlay.show { opacity: 1; }

.promo-modal {
  position: relative;
  width: 100%; max-width: 460px;
  background: hsl(0 0% 7%);
  color: #fff;
  border: 1px solid hsl(var(--accent));
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.promo-overlay.show .promo-modal { transform: none; }

.promo-close {
  position: absolute; top: 0.5rem; right: 0.6rem;
  background: none; border: 0; color: rgba(255,255,255,0.6);
  font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.5rem;
}
.promo-close:hover { color: hsl(var(--accent)); }

.promo-kicker {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
  font-size: 1.6rem; line-height: 1.1; color: hsl(var(--accent)); margin-bottom: 0.6rem;
}
.promo-headline {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em;
  font-size: 2.4rem; line-height: 1; margin-bottom: 0.35rem;
}
.promo-headline span { color: hsl(var(--accent)); display: block; font-size: 3.1rem; }
.promo-sub {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em;
  font-size: 1.1rem; margin-bottom: 0.85rem;
}
.promo-body { font-size: 0.95rem; line-height: 1.55; color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.promo-ends {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.12em;
  font-size: 0.95rem; color: hsl(var(--accent)); margin-bottom: 1.25rem;
}
.promo-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.promo-secondary { font-size: 0.9rem; color: rgba(255,255,255,0.7); text-decoration: underline; }
.promo-secondary:hover { color: hsl(var(--accent)); }
.promo-call { margin-top: 0.9rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.promo-call a { color: #fff; text-decoration: none; font-weight: 600; }
.promo-call a:hover { color: hsl(var(--accent)); }

body.promo-open { overflow: hidden; }
body.promo-open .roc-chat-root,
body.promo-open .sticky-call { display: none !important; }

@media (max-width: 480px) {
  .promo-modal { padding: 1.75rem 1.25rem 1.5rem; }
  .promo-kicker { font-size: 1.25rem; }
  .promo-headline { font-size: 2rem; }
  .promo-headline span { font-size: 2.5rem; }
}