/* Esmond landing pages — shared styles (mirrors auth.css brand tokens) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1D1D1F;
  line-height: 1.6;
  background: #FFFFFF;
}

/* ── Header (matches pc-auth-header) ── */
.lp-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(16px, 2.6vw, 34px) 16px;
  border-bottom: 1px solid #d2d2d7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lp-brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
  color: #0F4C3A;
}

.lp-brand-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0F4C3A;
}

.lp-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #0C4738;
  color: #ffffff;
  border: 1px solid #165242;
  border-radius: 999px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(28, 90, 70, 0.2);
  transition: background 0.15s, box-shadow 0.15s;
}

.lp-header-cta:hover {
  background: #0A3026;
  box-shadow: 0 4px 14px rgba(28, 90, 70, 0.3);
}

/* ── Hero ── */
.lp-hero {
  background: #0C4738;
  color: #fff;
  padding: 80px 24px 64px;
  text-align: center;
}

.lp-hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.lp-hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.lp-hero .lp-cta {
  background: #fff;
  color: #0C4738;
}

.lp-hero .lp-cta:hover {
  background: #f0f0f0;
}

/* ── CTA button (matches .auth-page .primary) ── */
.lp-cta {
  display: inline-block;
  background: #0C4738;
  color: #ffffff;
  border: 1px solid #165242;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(28, 90, 70, 0.3);
  transition: background 0.15s, box-shadow 0.15s;
}

.lp-cta:hover {
  background: #0A3026;
  box-shadow: 0 6px 20px rgba(28, 90, 70, 0.35);
}

/* ── Bewijsblok onder de hero (20/8/2026) ── papierregister, haarlijn, 8px */
.lp-proof {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.lp-proof + .lp-content {
  padding-top: 40px;
}

.lp-proof-card {
  background: #FDFCF9;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  padding: 20px 24px 18px;
}

.lp-proof-kicker {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F4C3A;
  margin-bottom: 12px;
}

.lp-proof-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1D1D1F;
  margin-bottom: 12px;
}

.lp-proof-fragment {
  background: #FFFFFF;
  border: 1px solid #e5e5ea;
  border-radius: 4px;
  padding: 14px 16px;
  margin: 0 0 14px;
}

.lp-proof-fragment p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
  margin: 0;
}

.lp-proof-fragment-label,
.lp-proof-fragment p.lp-proof-fragment-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 6px;
}

.lp-proof-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0F4C3A;
  line-height: 1.5;
}

.lp-proof-label--suggest {
  color: #9A6B00;
}

.lp-proof-before,
.lp-proof-after {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 4px 16px;
  padding: 10px 14px;
  margin: 0 0 8px;
  background: #FFFFFF;
  border: 1px solid #e5e5ea;
  border-radius: 4px;
}

.lp-proof-before {
  border-left: 3px solid #A3532E;
}

.lp-proof-before .lp-proof-label {
  color: #A3532E;
}

.lp-proof-after {
  border-left: 3px solid #0F4C3A;
}

.lp-proof-before p,
.lp-proof-after p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
  overflow-wrap: anywhere;
}

.lp-proof-rows {
  margin-top: 4px;
}

.lp-proof-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 4px 16px;
  padding: 10px 0;
  border-top: 1px solid #e5e5ea;
}

.lp-proof-row:first-child {
  border-top: 0;
}

.lp-proof-row p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
  margin: 0;
}

.lp-proof-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e5ea;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #6e6e73;
}

/* ── Content ── */
.lp-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px;
}

.lp-content h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0F4C3A;
  margin: 40px 0 16px;
}

.lp-content h2:first-child {
  margin-top: 0;
}

.lp-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0F4C3A;
  margin: 24px 0 8px;
}

.lp-content p {
  margin-bottom: 16px;
  color: #333;
  max-width: 740px;
}

.lp-content ul,
.lp-content ol {
  margin: 0 0 16px 20px;
  color: #333;
}

.lp-content li {
  margin-bottom: 8px;
}

/* ── Cards ── */
.lp-tip {
  background: #f7faf9;
  border-left: 3px solid #0F4C3A;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.lp-tip p {
  margin-bottom: 0;
}

.lp-example {
  background: #fafafa;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 8px;
  font-style: italic;
  color: #555;
}

.lp-disclaimer {
  background: #f7faf9;
  padding: 16px 20px;
  margin: 32px 0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #6e6e73;
}

/* ── Bottom CTA ── */
.lp-bottom-cta {
  text-align: center;
  padding: 48px 24px 64px;
}

.lp-bottom-cta p {
  margin-bottom: 16px;
  color: #333;
}

/* ── Footer ── */
.lp-footer {
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  color: #86868b;
  border-top: 1px solid #d2d2d7;
}

.lp-footer a {
  color: #0F4C3A;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lp-hero { padding: 56px 20px 48px; }
  .lp-proof { padding: 28px 16px 0; }
  .lp-proof-card { padding: 16px 16px 14px; }
  .lp-proof-before, .lp-proof-after, .lp-proof-row { grid-template-columns: 1fr; gap: 2px; }
  .lp-hero h1 { font-size: 1.8rem; }
  .lp-header { padding: 14px 16px 12px; }
  .lp-brand-mark { width: 28px; height: 28px; }
  .lp-brand-text { font-size: 24px; }
  .lp-header-cta { padding: 8px 18px; font-size: 13px; }
}

/* ── Interne links (NL, 6/9/2026): pad voor Google naar de 53 NL-pagina's ── */
.lp-related {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 32px;
  border-top: 1px solid #d2d2d7;
  font-size: 0.9rem;
}
.lp-related-title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #86868b;
}
.lp-related ul { list-style: none; margin: 0; padding: 0; }
.lp-related li { margin: 0 0 6px; }
.lp-related a { color: #0F4C3A; text-decoration: none; }
.lp-related a:hover { text-decoration: underline; }
