.promo-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}
.promo-backdrop[hidden] { display: none; }
.promo-modal {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  text-align: center;
}
.promo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.promo-close:hover { background: #f1f5f9; color: #475569; }
.promo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.promo-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.promo-brand strong {
  display: block;
  font-size: 1.05rem;
  color: #14242f;
}
.promo-brand small {
  display: block;
  font-size: 0.78rem;
  color: #687783;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff4e5;
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.promo-modal h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #14242f;
}
.promo-subtitle {
  margin: 0 0 16px;
  color: #687783;
  font-size: 0.92rem;
  line-height: 1.5;
}
.promo-benefits {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.promo-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #334155;
  font-size: 0.92rem;
}
.promo-benefits li::before {
  content: "✓";
  color: #008c78;
  font-weight: 700;
}
.promo-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}
.promo-form input {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #dbe7e7;
  border-radius: 10px;
  font: inherit;
}
.promo-form input:focus {
  outline: 2px solid rgba(0, 140, 120, 0.25);
  border-color: #008c78;
}
.promo-form button {
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: #008c78;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.promo-form button:hover { background: #006d62; }
.promo-form button:disabled { opacity: 0.65; cursor: wait; }
.promo-error {
  margin: -6px 0 10px;
  color: #b91c1c;
  font-size: 0.85rem;
  text-align: left;
}
.promo-trust {
  margin-bottom: 10px;
  color: #008c78;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.promo-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 0.85rem;
}
.promo-trustpilot .stars { color: #008c78; letter-spacing: 1px; }
.promo-note {
  margin: 0 0 10px;
  color: #94a3b8;
  font-size: 0.75rem;
}
.promo-dismiss {
  border: 0;
  background: transparent;
  color: #64748b;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.promo-success {
  padding: 10px 0 4px;
  color: #047857;
  font-weight: 600;
}
@media (max-width: 520px) {
  .promo-form { grid-template-columns: 1fr; }
  .promo-modal h2 { font-size: 1.35rem; }
}
