/* ============================================================
   Contra.expert — Nulmeting landingspagina
   Page-specific components. Inherits all tokens from styles.css
   (navy --ink / cream --bg / gold --accent, Manrope + Instrument Serif).
   ============================================================ */

/* ---------- LANDING HERO (split: copy + lead form) ---------- */
.nl-hero {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0 clamp(56px, 7vw, 96px);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(184,136,74,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.nl-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ink-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-faint) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}
.nl-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 940px) {
  .nl-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.nl-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--step-5);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 18px 0 0;
}
.nl-hero__title em { font-style: italic; color: var(--accent-ink); }
.nl-hero__sub {
  font-size: var(--step-1);
  color: var(--ink-mute);
  max-width: 30ch;
  margin: 20px 0 0;
  line-height: 1.55;
}
.nl-hero__bullets {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.nl-hero__bullets li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: var(--step-0);
}
.nl-hero__bullets svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: #fff; background: var(--accent);
  border-radius: 50%; padding: 3px;
}

/* ---------- LEAD CARD ---------- */
.nl-lead {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.nl-lead::before {
  content: "";
  position: absolute; top: -40%; right: -30%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, rgba(184,136,74,0.28), transparent 70%);
  pointer-events: none;
}
.nl-lead__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent);
}
.nl-lead__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 0 rgba(184,136,74,0.6);
  animation: nlPulse 2s infinite;
}
@keyframes nlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,136,74,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(184,136,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,136,74,0); }
}
.nl-lead__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  line-height: 1.08; margin: 12px 0 4px;
}
.nl-lead__title em { font-style: italic; color: var(--accent); }
.nl-lead__note { font-size: 13.5px; color: rgba(255,255,255,0.62); margin: 0 0 18px; }

.nl-lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .nl-lead__row { grid-template-columns: 1fr; } }
.nl-field { margin-bottom: 10px; }
.nl-field input,
.nl-field select,
.nl-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--bg);
  font-size: 15px; font-family: var(--sans);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.nl-field textarea { resize: vertical; min-height: 84px; }
.nl-field input::placeholder,
.nl-field textarea::placeholder { color: rgba(255,255,255,0.42); }
.nl-field input:focus,
.nl-field select:focus,
.nl-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.nl-field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.nl-field select option { color: var(--ink); }
.nl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.nl-lead__btn {
  width: 100%;
  background: var(--accent); color: #fff;
  padding: 16px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px;
  transition: background .2s ease, transform .2s ease;
}
.nl-lead__btn:hover { background: #a9793c; transform: translateY(-1px); }
.nl-lead__btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.nl-lead__btn .arrow svg { width: 18px; height: 18px; }
.nl-lead__err { color: #ffb4a8; font-size: 13.5px; margin: 10px 0 0; display: none; }
.nl-lead__foot {
  margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.55);
  display: flex; flex-wrap: wrap; gap: 6px 16px;
}
.nl-lead__foot span { display: inline-flex; align-items: center; gap: 6px; }
.nl-lead__foot svg { width: 13px; height: 13px; opacity: 0.75; }

.nl-lead__success { display: none; text-align: center; padding: 26px 8px; }
.nl-lead__success.is-on { display: block; }
.nl-lead__success .ring {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  margin: 0 auto 16px;
}
.nl-lead__success .ring svg { width: 28px; height: 28px; color: #fff; }
.nl-lead__success h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 0 0 6px; }
.nl-lead__success p { color: rgba(255,255,255,0.7); font-size: 14.5px; margin: 0; }
.nl-form.is-hidden { display: none; }

/* ---------- AUDIENCE SPLIT (two paths) ---------- */
.nl-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .nl-paths { grid-template-columns: 1fr; } }
.nl-path {
  background: var(--paper);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nl-path:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(184,136,74,0.4); }
.nl-path__tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-ink); background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.nl-path h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.1; margin-bottom: 8px; }
.nl-path > p { color: var(--ink-mute); margin: 0 0 18px; }
.nl-path ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.nl-path li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--step-0); line-height: 1.45; }
.nl-path li svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }

/* ---------- PROCESS / STEPS ---------- */
.nl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 860px) { .nl-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .nl-steps { grid-template-columns: 1fr; } }
.nl-step { background: var(--paper); padding: clamp(26px, 3vw, 36px) clamp(22px, 2.5vw, 30px); position: relative; }
.nl-step__n {
  font-family: var(--serif); font-style: italic; font-size: 2.4rem;
  line-height: 1; color: var(--accent); opacity: 0.85; margin-bottom: 14px;
}
.nl-step h4 { font-size: var(--step-1); margin-bottom: 8px; letter-spacing: -0.01em; }
.nl-step p { color: var(--ink-mute); font-size: 14.5px; margin: 0; line-height: 1.5; }

/* ---------- DELIVERABLE LIST ---------- */
.nl-deliver {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
@media (max-width: 860px) { .nl-deliver { grid-template-columns: 1fr; } }
.nl-deliver__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.nl-deliver__list li { display: flex; gap: 13px; align-items: flex-start; }
.nl-deliver__list svg { width: 22px; height: 22px; flex-shrink: 0; color: #fff; background: var(--accent); border-radius: 50%; padding: 4px; margin-top: 1px; }
.nl-deliver__list b { display: block; font-weight: 600; margin-bottom: 1px; }
.nl-deliver__list span { color: var(--ink-mute); font-size: 14.5px; }
.nl-deliver__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.nl-deliver__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ---------- TRUST STRIP ---------- */
.nl-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: center; }
.nl-trust span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; color: var(--ink-mute);
}
.nl-trust svg { width: 18px; height: 18px; color: var(--accent); }
