/* BLOG CTA FORM */
.cta-form {
  display: flex; gap: 10px; max-width: 420px; margin: 0 auto;
}
.cta-input {
  flex: 1; padding: 14px 18px; border-radius: 10px;
  border: 1.5px solid rgba(26,24,20,0.18);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  background: #fff; color: var(--text);
  outline: none; transition: border-color .2s;
}
.cta-input::placeholder { color: #9a9590; }
.cta-input:focus { border-color: var(--gold); }
.cta-btn {
  background: var(--gold); color: var(--bg-dark); border: none;
  padding: 14px 24px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.cta-btn:hover { background: var(--gold-light); }
.cta-btn:disabled { opacity: .6; cursor: not-allowed; }
.cta-legal { font-size: 12px; color: var(--text-3); margin-top: 12px; }
.cta-msg { font-size: 14px; margin-top: 12px; display: none; }
.cta-msg.ok { color: #4ade80; display: block; }
.cta-msg.dup { color: var(--gold-light); display: block; }
.cta-msg.err { color: #f87171; display: block; }

/* MODAL OVERLAY */
.ob-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center; padding: 1rem;
}
.ob-overlay.show { display: flex; }
.ob-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}
.ob-card {
  position: relative; background: #fff; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  width: 100%; max-width: 420px; padding: 2rem;
  animation: obPop .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes obPop {
  0% { opacity: 0; transform: scale(.85) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.ob-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--text-3); cursor: pointer; transition: color .2s;
}
.ob-close:hover { color: var(--text); }
.ob-success {
  background: var(--gold-glow); border-radius: 16px;
  text-align: center; padding: 2rem 1rem;
}
.ob-success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.ob-btn {
  width: 100%; background: var(--text); color: #fff; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem;
  padding: .875rem; border-radius: 12px; cursor: pointer; transition: background .2s;
  margin-top: 1.5rem;
}
.ob-btn:hover { background: #000; }
.ob-skip {
  width: 100%; background: none; border: none; color: var(--text-3);
  font-family: 'DM Sans', sans-serif; font-size: .875rem;
  padding: .5rem; cursor: pointer; transition: color .2s; margin-top: .5rem;
}
.ob-skip:hover { color: var(--text-2); }
.ob-option {
  display: flex; align-items: center; gap: .75rem; cursor: pointer;
  padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .15s, background .15s;
  font-size: .9375rem; color: var(--text-2); user-select: none; margin-bottom: 8px;
}
.ob-option:hover { border-color: var(--gold); background: #fffbeb; }
.ob-option input { accent-color: var(--gold); width: 17px; height: 17px; flex-shrink: 0; cursor: pointer; }

@media (max-width: 768px) {
  .cta-form { flex-direction: column; }
  .cta-btn { width: 100%; text-align: center; }
  .ob-card { max-width: 100%; padding: 1.5rem; border-radius: 16px; }
}
