/* Offer popup – dark Teal/Mint theme, matches site design tokens */
.offer-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 2000;
  padding: 16px;
  font-family: 'Satoshi', system-ui, sans-serif;
  animation: offerPopupFade .25s ease-out;
}

@keyframes offerPopupFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.offer-popup-card {
  width: min(420px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(0,0,0,.6);
  animation: offerPopupUp .32s cubic-bezier(.22,1,.36,1);
}

@keyframes offerPopupUp {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.offer-popup-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 24px;
  background: linear-gradient(135deg, #0b2d30, #01696f 75%);
}

.offer-popup-hero::after {
  content: '25%';
  position: absolute;
  right: -14px;
  bottom: -28px;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255,255,255,.07);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.04em;
}

.offer-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.offer-popup-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3eb489;
  flex-shrink: 0;
}

.offer-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .18s;
  z-index: 1;
}

.offer-popup-close:hover {
  background: rgba(255,255,255,.22);
}

.offer-popup-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}

.offer-popup-hero h2 {
  position: relative;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  max-width: 88%;
}

.offer-popup-hero h2 .accent {
  color: #3eb489;
}

.offer-popup-hero p {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
  max-width: 90%;
}

.offer-popup-body {
  padding: 22px 26px 26px;
}

.offer-popup-body .fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 420px) {
  .offer-popup-body .fg-row { grid-template-columns: 1fr; }
}

.offer-popup-body .fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.offer-popup-body .fg label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(240,240,240,.55);
}

.offer-popup-body .fg input,
.offer-popup-body .fg textarea {
  background: #262626;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #f0f0f0;
  padding: 11px 13px;
  font-size: .88rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
}

.offer-popup-body .fg input:focus,
.offer-popup-body .fg textarea:focus {
  outline: none;
  border-color: #3eb489;
}

.offer-popup-body .fg textarea {
  resize: vertical;
  min-height: 76px;
}

.offer-popup-agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 16px;
  font-size: .78rem;
  color: rgba(240,240,240,.55);
  line-height: 1.5;
}

.offer-popup-agree input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #3eb489;
  flex-shrink: 0;
}

.offer-popup-agree a {
  color: #3eb489;
}

.offer-popup-hp {
  display: none;
}

.offer-popup-submit {
  width: 100%;
  background: #01696f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}

.offer-popup-submit:hover {
  background: #00565b;
}
