.nl-a {
  background: var(--teal);
  color: var(--white);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.nl-a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(60% 100%, 100% 100%, 100% 0);
}
.nl-a__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .nl-a__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.nl-a__copy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1;
}
.nl-a__copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 420px;
}
.nl-a__input-wrap {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.nl-a__icon { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.nl-a__input-wrap input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  color: var(--navy);
  background: transparent;
  padding: 14px 0;
  min-width: 0;
}
.nl-a__submit {
  background: var(--navy);
  color: var(--white);
  border: 0;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
.nl-a__submit:hover { background: var(--teal-dark); }
.nl-a__note { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 14px; }
