/* ═══ Newsletter Landing Page ═══ */
.nl_landing {
  padding: 60px 0 80px;
}

/* ── Hero ── */
.nl_landing_hero {
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #111 0%, #0d1a00 100%);
  border-radius: 16px;
  border: 1px solid #1a2a0a;
}
.nl_landing_hero_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(120, 247, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.nl_landing_hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.nl_landing_hero .nl_landing_subtitle {
  font-size: 17px;
  color: #888;
  margin: 0 0 8px;
  line-height: 1.6;
}
.nl_landing_hero .nl_landing_free {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(120, 247, 1, 0.1);
  color: var(--mc);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

/* ── Section Titles ── */
.nl_landing_section_title {
  text-align: center;
  margin-bottom: 32px;
}
.nl_landing_section_title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.nl_landing_section_title p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* ── Feature Cards ── */
.nl_landing_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.nl_landing_card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.nl_landing_card:hover {
  border-color: #333;
}
.nl_landing_card_icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.nl_landing_card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
.nl_landing_card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ── How It Works ── */
.nl_landing_steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.nl_landing_step {
  text-align: center;
  padding: 24px;
  position: relative;
}
.nl_landing_step_number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mc);
  color: #050505;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.nl_landing_step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.nl_landing_step p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ── Sample Preview ── */
.nl_landing_sample {
  text-align: center;
  margin-bottom: 60px;
  padding: 32px 24px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
}
.nl_landing_sample p {
  font-size: 15px;
  color: #888;
  margin: 0 0 16px;
}
.nl_landing_sample a {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--mc);
  color: var(--mc);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nl_landing_sample a:hover {
  background: rgba(120, 247, 1, 0.08);
}

/* ── Bottom CTA ── */
.nl_landing_cta {
  text-align: center;
  padding: 48px 24px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
}
.nl_landing_cta h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.nl_landing_cta p {
  font-size: 15px;
  color: #888;
  margin: 0 0 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nl_landing_hero h1 {
    font-size: 28px;
  }
  .nl_landing_features,
  .nl_landing_steps {
    grid-template-columns: 1fr;
  }
  .nl_landing_hero,
  .nl_landing_cta {
    padding: 32px 16px;
  }
}
