.marsico-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 999998;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.marsico-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 53, 0.72);
  backdrop-filter: blur(3px);
  animation: marsicoFadeIn 0.25s ease-out;
}
.marsico-promo-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 16px;
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: marsicoPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.marsico-promo-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: #2c3e35;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 2;
  transition: background 0.15s;
}
.marsico-promo-close:hover { background: #ffffff; }
.marsico-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.marsico-promo-image {
  background: linear-gradient(135deg, #4db8a4 0%, #2d8a79 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
.marsico-promo-image img {
  max-width: 100%;
  max-height: 360px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.marsico-promo-text {
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
}
.marsico-promo-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #2d8a79;
  background: #e8f7f5;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.marsico-promo-title {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #2c3e35;
  margin: 0 0 10px;
  line-height: 1.2;
}
.marsico-promo-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 12px;
}
.marsico-promo-amount .big {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #4db8a4;
  line-height: 1;
}
.marsico-promo-amount .amt-label {
  font-size: 12px;
  color: #5a6b65;
  line-height: 1.3;
}
.marsico-promo-msg {
  font-size: 14px;
  color: #2c3e35;
  line-height: 1.5;
  margin: 0 0 18px;
}
.marsico-promo-msg strong { color: #2d8a79; }
.marsico-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.marsico-promo-cta {
  display: block;
  background: #4db8a4;
  color: #ffffff !important;
  text-decoration: none;
  text-align: center;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}
.marsico-promo-cta:hover { background: #3aa08e; transform: translateY(-1px); }
.marsico-promo-later {
  background: transparent;
  color: #5a6b65;
  border: 0;
  padding: 6px 8px;
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  align-self: center;
}
.marsico-promo-later:hover { color: #2c3e35; }

@keyframes marsicoFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marsicoPopIn {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 600px) {
  .marsico-promo-card { width: calc(100vw - 16px); }
  .marsico-promo-grid { grid-template-columns: 1fr; }
  .marsico-promo-image { border-radius: 16px 16px 0 0; padding: 14px; }
  .marsico-promo-image img { max-height: 240px; }
  .marsico-promo-text { padding: 18px 20px 18px; }
  .marsico-promo-title { font-size: 20px; }
  .marsico-promo-amount .big { font-size: 26px; }
}
