/* ══════════════════════════════════
   NEWSLETTER HERO (split layout)
   ══════════════════════════════════ */
.nl-hero {
  background: var(--navy);
  padding: 80px 32px 0;
  overflow: hidden;
}

.nl-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: end;
}

.nl-hero-left h1 {
  font-size: 36px;
  color: var(--text-on-dark-bright);
  line-height: 1.25;
  margin-bottom: 16px;
}

.nl-hero-left h1 em {
  color: var(--gold);
  font-style: italic;
}

.nl-hero-desc {
  font-size: 15px;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 32px;
}

.nl-hero-note {
  font-size: 12px;
  color: rgba(168, 176, 204, 0.6);
  margin-top: 4px;
}

/* Left column needs bottom padding since hero has none */
.nl-hero-left {
  padding-bottom: 80px;
}

/* Phone image — flush to bottom of hero */
.nl-hero-right {
  text-align: center;
  align-self: end;
}

.nl-hero-right img {
  max-width: 540px;
  width: 100%;
  height: auto;
  display: block;
}

/* ── CONVERTKIT OVERRIDES (dark bg) ── */
.nl-hero-form .formkit-form[data-uid="6cf6871501"] {
  max-width: 100% !important;
  font-family: var(--font) !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] [data-style="clean"] {
  padding: 0 !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-input {
  font-family: var(--font) !important;
  font-size: 14px !important;
  padding: 14px 16px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-on-dark-bright) !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-input:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-input::placeholder {
  color: var(--text-on-dark) !important;
  opacity: 1 !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-submit {
  background: var(--gold) !important;
  border-radius: 8px !important;
  font-family: var(--font) !important;
  transition: background 0.2s !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-submit:hover {
  background: var(--gold-hover) !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-submit > span {
  padding: 14px 28px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-fields {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-field {
  flex: 1 1 auto !important;
  margin-bottom: 0 !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-submit {
  flex: 0 0 auto !important;
  margin-bottom: 0 !important;
}

.nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-alert-success {
  background: rgba(16, 191, 122, 0.15) !important;
  border-color: rgba(16, 191, 122, 0.4) !important;
  color: #7be8b8 !important;
  border-radius: 8px !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
}

/* ══════════════════════════════════
   WHAT YOU GET
   ══════════════════════════════════ */
.what-you-get {
  background: var(--parchment);
  padding: 80px 32px;
}

.what-you-get-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.what-you-get h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 32px;
}

.get-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.get-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.get-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.get-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ══════════════════════════════════
   SOCIAL PROOF
   ══════════════════════════════════ */
.social-proof {
  background: var(--navy);
  padding: 48px 32px;
  text-align: center;
}

.social-proof p {
  font-size: 15px;
  color: var(--text-on-dark);
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
}

.social-proof .stat {
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .nl-hero {
    padding-bottom: 40px;
  }
  .nl-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  .nl-hero-left {
    padding-bottom: 0;
  }
  .nl-hero-left h1 {
    font-size: 28px;
  }
  .social-proof-inline {
    justify-content: center;
  }
  .nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-fields {
    flex-wrap: wrap !important;
  }
  .nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-field,
  .nl-hero-form .formkit-form[data-uid="6cf6871501"] .formkit-submit {
    flex: 1 0 100% !important;
  }
  .nl-hero-right img {
    max-width: 220px;
  }
  .get-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
