﻿/* ── Newsletter ── */
.dariba-newsletter {
  background: var(--clr-surface);
  padding: var(--section-pad);
  border-top: 0.5px solid #E8E8E4;
}
.nl-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.nl-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.nl-title {
  font-family: var(--font-display);
  font-size: var(--size-section);
  color: var(--clr-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.nl-sub {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.nl-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}
.nl-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4A5568;
  line-height: 1.5;
}
.perk-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.nl-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.nl-input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 0.5px solid #E0E0DC;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  color: var(--clr-primary);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--clr-accent); }
.nl-input.error { border-color: #E24B4A; }
.nl-input::placeholder { color: #bbb; }

.nl-btn {
  height: 44px;
  padding: 0 22px;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nl-btn:hover { background: color-mix(in srgb,var(--clr-accent) 85%,black); }
.nl-btn:active { transform: scale(0.98); }

.nl-disclaimer { font-size: 11px; color: #bbb; margin-bottom: 40px; }

.nl-success {
  padding: 18px 24px;
  background: var(--clr-accent-light);
  border: 0.5px solid var(--clr-accent-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: color-mix(in srgb,var(--clr-accent) 80%,black);
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}
.nl-success[hidden] { display: none; }

.nl-proof {
  border-top: 0.5px solid #E8E8E4;
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.proof-item { text-align: center; }
.proof-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--clr-primary);
  margin-bottom: 3px;
}
.proof-label { font-size: 11px; color: #aaa; white-space: nowrap; }
.proof-divider { width: 0.5px; height: 32px; background: #E0E0DC; }

@media(max-width:600px){
  .nl-form{ flex-direction:column; }
  .nl-btn{ width:100%; height:48px; }
  .nl-proof{ gap:20px; }
}
