.hero-newsletter-btn {
    margin-top: 1rem;
}
.newsletter-cta {
    display: flex;
    justify-content: center;
    padding-top: 1.4em;
    margin-top: 0.5em;
    border-top: 1px solid rgb(7 19 38);
}
/* --- MODAL BACKDROP --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  padding-top: 80px;
  z-index: 9999;
}

/* --- MODAL CONTAINER --- */
.modal-content {
  background: #0B1D3A;
  color: var(--syrex-white);
  margin: auto;
  padding: 32px;
  width: 90%;
  max-width: 480px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  position: relative;
  animation: fadeIn 0.25s ease-out;
}

/* --- CLOSE BUTTON --- */
.modal-content .close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: var(--syrex-gold);
  transition: 0.2s ease;
}
.modal-content .close:hover {
  color: var(--syrex-blue);
}

/* --- HEADINGS --- */
.modal-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--syrex-gold);
}

/* --- LABELS --- */
.modal-content label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
}

/* --- INPUT FIELDS --- */
.modal-content input {
  width: 100%;
  padding: 12px 14px;
  margin: 6px 0 18px;
  background: #d8d9d9;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--syrex-white);
  font-size: 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.modal-content input:focus {
  outline: none;
  border-color: var(--syrex-gold);
  background: #a1613a;
}

/* --- SUBMIT BUTTON --- */
.modal-content button {
  width: 100%;
  padding: 14px;
  background: #A1613A;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--syrex-white);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.modal-content button:hover {
  background: var(--syrex-gold);
  transform: translateY(-2px);
}

.modal-content button:active {
  transform: translateY(0);
}

/* --- ANIMATION --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* --- ANIMATION --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}