/* ── Exit intent popup ───────────────────────────────────────────────────── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.exit-popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.exit-popup-card {
  position: relative;
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 820px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.08) transparent;
}
.exit-popup-card::-webkit-scrollbar { width: 4px; }
.exit-popup-card::-webkit-scrollbar-track { background: transparent; }
.exit-popup-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 4px; }
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.25);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color .15s;
}
.exit-popup-close:hover { color: rgba(255,255,255,.65); }
.exit-popup-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #e03d1e;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}
.exit-popup-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.45rem;
  padding-right: 2rem;
  color: #fff;
}
.exit-popup-subhead {
  font-size: 15px;
  color: rgba(255,255,255,.40);
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.exit-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 1.25rem;
}
.exit-popup-feat-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.exit-popup-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exit-popup-feat-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 0.3rem;
}
.exit-popup-feat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin: 0;
}
.exit-popup-insight {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 32px rgba(224,61,30,0.15);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.exit-popup-insight p:first-child {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}
.exit-popup-insight p + p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0.5rem 0 0;
}
.exit-popup-testimonial {
  margin-bottom: 1.25rem;
}
.exit-popup-test-stars {
  font-size: 13px;
  color: #e03d1e;
  letter-spacing: 1px;
  margin: 0 0 0.5rem;
}
.exit-popup-test-quote {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 0.3rem;
}
.exit-popup-test-quote-sub {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0 0 0.6rem;
}
.exit-popup-test-attrib {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.exit-popup-closing {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.exit-popup-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #e03d1e;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 1.1rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
  box-sizing: border-box;
  margin-bottom: 0.9rem;
}
.exit-popup-cta:hover { background: #c93518; }
.exit-popup-speed {
  font-size: 13px;
  color: rgba(255,255,255,.40);
  text-align: center;
  margin: 0.75rem 0 0;
}
.exit-popup-speed-red { color: #e03d1e; }
@media(max-width:600px) {
  .exit-popup-card { padding: 1.5rem; }
  .exit-popup-heading { font-size: 26px; }
}
@media(max-width:480px) {
  .exit-popup-grid { grid-template-columns: 1fr; }
}
