/* ── HYPNO-FIT Newsletter Widget ─────────────────────────────── */
.nl-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #12121e 100%);
  padding: 64px 24px;
  text-align: center;
}
.nl-inner {
  max-width: 540px;
  margin: 0 auto;
}
.nl-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}
.nl-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: #f0f0f0;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.nl-section .nl-sub {
  color: rgba(240,240,240,.68);
  font-size: .97rem;
  line-height: 1.65;
  margin: 0 0 28px;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.nl-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nl-fields input {
  flex: 1;
  min-width: 130px;
  padding: 13px 16px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #f0f0f0;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .18s;
}
.nl-fields input:focus {
  border-color: #E8580A;
}
.nl-fields input::placeholder {
  color: rgba(240,240,240,.32);
}
.nl-dsgvo {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: .8rem;
  color: rgba(240,240,240,.55);
  line-height: 1.55;
}
.nl-dsgvo input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #E8580A;
  cursor: pointer;
}
.nl-dsgvo a {
  color: #E8580A;
  text-decoration: underline;
}
.nl-btn {
  padding: 14px 28px;
  background: #E8580A;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, transform .1s;
  align-self: flex-start;
  width: 100%;
}
.nl-btn:hover { background: #d04e09; }
.nl-btn:active { transform: scale(.98); }
.nl-hint {
  font-size: .78rem;
  color: rgba(240,240,240,.38);
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  text-align: center;
}
/* Success / error messages */
.nl-msg {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  margin-top: 16px;
}
.nl-msg.ok  { background: rgba(0,184,148,.12); color: #00b894; border: 1px solid rgba(0,184,148,.3); }
.nl-msg.err { background: rgba(225,112,85,.1);  color: #e17055; border: 1px solid rgba(225,112,85,.3); }
