/* DE Stock Lead LP — institutional German landing page
   Navy #0F172A · Trust Green #15803D */

:root {
  --navy: #0F172A;
  --navy-2: #1a2744;
  --green: #15803D;
  --green-hover: #166534;
  --paper: #f3f4f6;
  --card: #f8f7f4;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #d8d4cc;
  --radius: 2px;
  --max: 1080px;
  --serif: "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.lp-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--green-hover); }
a:focus-visible { outline: 3px solid #86efac; outline-offset: 2px; }

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--navy);
  color: #f8fafc;
  padding: 8px 14px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { top: 0; color: #f8fafc; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.site-header {
  background: var(--navy);
  color: #e2e8f0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8fafc;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.brand:hover { color: #f8fafc; }
.nav-cta,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  background: #059669;
  color: #f8fafc;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.01em;
  text-align: center;
}
.nav-cta:hover,
.btn-cta:hover { background: #047857; color: #f8fafc; }
.wa-ico { flex-shrink: 0; }
.btn-pulse {
  animation: ctaBreath 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.55);
}
@keyframes ctaBreath {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 14px rgba(5, 150, 105, 0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
}

.hero {
  background: var(--navy);
  color: #e2e8f0;
  padding: clamp(48px, 8vw, 96px) 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.hero-center { text-align: center; }
.hero-center-inner { max-width: 820px; margin-inline: auto; }
.hero-center h1 {
  max-width: 22ch;
  margin-inline: auto  auto;
  margin-bottom: 16px;
}
.hero-center .hero-sub {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #cbd5e1;
  max-width: 42ch;
  margin: 0 auto 22px;
  line-height: 1.45;
  text-align: center;
}
.hero-center .trust-badges { justify-content: center; }
.hero-center .lead-box {
  margin: 0 auto;
  text-align: center;
  max-width: 520px;
  background: transparent;
  padding: 8px 0 0;
}
.lead-box-center .btn-cta { width: 100%; max-width: 520px; }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #86efac;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #f8fafc;
  font-weight: 600;
  max-width: 16ch;
  margin-bottom: 20px;
}
.hero.hero-center h1 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 44ch;
  margin-bottom: 24px;
}
.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}
.lead-box {
  background: var(--card);
  color: var(--ink);
  padding: 22px;
  max-width: 440px;
}
.lead-box .btn-cta { width: 100%; min-height: 52px; }
.pdf-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  font: inherit;
  font-size: 16px;
  background: #fff;
  margin-bottom: 12px;
}
.gdpr-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #334155;
  margin-bottom: 12px;
  cursor: pointer;
}
.gdpr-box input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.pdf-submit { width: 100%; border: 0; cursor: pointer; font: inherit; }
.form-status { font-size: 0.9rem; padding: 10px 12px; margin-bottom: 12px; }
.form-ok { background: #dcfce7; color: #14532d; }
.form-err { background: #fee2e2; color: #991b1b; }
.hero-alt { margin-top: 12px; font-size: 0.85rem; text-align: center; }
.hero-alt a { color: var(--green); }
.gdpr-line, .risk-line {
  margin-top: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #94a3b8;
  text-align: center;
}
.hero-center .gdpr-line a { color: #86efac; }

.mid-cta {
  padding: 56px 0;
  text-align: center;
  background: var(--navy);
  color: #e2e8f0;
}
.mid-cta-inner { max-width: 640px; margin-inline: auto; }
.mid-cta h2 { color: #f8fafc; }
.mid-cta p { margin-bottom: 22px; color: #cbd5e1; }
.mid-cta .btn-cta { max-width: 520px; width: 100%; }
.mid-form {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  background: #f8f7f4;
  color: #1e293b;
  padding: 22px;
  border-radius: 4px;
}
.mid-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  font: inherit;
  font-size: 16px;
  margin-bottom: 12px;
}
.gdpr-box-dark { color: #334155; }
.gdpr-box-dark a { color: #047857; }
.mid-risk { color: #94a3b8; max-width: 52ch; margin: 16px auto 0; }

.quiet-form {
  padding: 36px 0;
  background: #eceae4;
  border-top: 1px solid var(--line);
  text-align: center;
}
.quiet-inner { max-width: 640px; margin-inline: auto; }
.quiet-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}
.quiet-pdf-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.quiet-pdf-form input[type="email"] {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #c5c1b8;
  font: inherit;
  font-size: 14px;
  background: #f4f3ef;
  color: #475569;
  min-width: 200px;
  flex: 1;
}
.quiet-pdf-form button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #c5c1b8;
  background: #ddd9d0;
  color: #475569;
  font-size: 13px;
  cursor: pointer;
}
.quiet-gdpr { font-size: 0.75rem; color: #94a3b8; }
.quiet-risk { margin-top: 8px; font-size: 0.7rem; color: #9ca3af; }
.blotter {
  background: #0b1220;
  border: 1px solid #243044;
  padding: 18px 16px 12px;
}
.blotter-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}
.chart { width: 100%; height: auto; }
.blotter-cap { margin-top: 10px; font-size: 0.75rem; color: #94a3b8; }

.sources {
  background: #e8e6e0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.sources-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 28px;
}
.sources-row p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.sources-row ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}

.about, .benefits, .steps, .audience, .voices, .faq { padding: 64px 0 8px; }
.about { padding-bottom: 24px; }
.about-grid, .audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-weight: 600;
}
.about p, .steps p, .risk-block p { margin-bottom: 12px; color: #334155; }
.plain-list { padding-left: 1.1em; color: #334155; }
.plain-list li { margin-bottom: 6px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-top: 8px;
}
.benefit-num {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit p { color: #475569; font-size: 0.95rem; }

.step-list {
  list-style: none;
  counter-reset: st;
  display: grid;
  gap: 16px;
  max-width: 68ch;
}
.step-list li {
  counter-increment: st;
  padding-left: 2.6rem;
  position: relative;
  color: #334155;
}
.step-list li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
}

.aud-card {
  background: var(--card);
  padding: 28px 26px;
  border: 1px solid var(--line);
}
.aud-card-alt { background: var(--navy); color: #e2e8f0; border-color: var(--navy); }
.aud-card-alt h2 { color: #f8fafc; }
.aud-card ul { padding-left: 1.1em; }
.aud-card li { margin-bottom: 8px; }

.voices-note {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 24px;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 12px;
}
.quote figcaption { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.risk-block {
  margin: 56px 0 8px;
  padding: 36px 0;
  background: #efece6;
}
.risk-block .shell { max-width: 760px; }

.faq { padding-bottom: 48px; }
.faq-wrap { max-width: 760px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 8px; color: #334155; font-size: 0.95rem; }

.final-cta {
  background: var(--navy);
  color: #e2e8f0;
  padding: 72px 0;
}
.final-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.final-cta .btn-cta { max-width: 520px; width: 100%; }
.final-cta h2 { color: #f8fafc; margin-bottom: 12px; }
.final-cta p { margin-bottom: 20px; color: #cbd5e1; }
.btn-cta-on-dark { min-height: 52px; }
.final-contact { font-size: 0.9rem; }
.final-contact a { color: #86efac; }
.final-risk { margin-top: 18px; font-size: 0.8rem; color: #94a3b8; }

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #0b1220;
}
.sticky-cta.is-on { display: block; }
.sticky-cta .btn-cta { width: 100%; }
body.lp-body .cs-float-wrap { display: none !important; }

.site-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 0 0 32px;
  font-size: 0.9rem;
}
.footer-legal-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 18px 0;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 28px;
}
.footer-legal-link {
  color: #f8fafc;
  font-weight: 700;
  font-size: 1rem;
}
.footer-legal-link:hover { color: #86efac; }
.footer-dot { color: #475569; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.footer-brand { color: #f8fafc; font-weight: 700; margin-bottom: 8px; }
.footer-note, .footer-address { font-style: normal; margin-bottom: 10px; }
.footer-label { color: #e2e8f0; font-weight: 600; margin-bottom: 6px; }
.site-footer a { color: #86efac; }
.footer-risk {
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 14px 0;
  border-top: 1px solid #1e293b;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  font-size: 0.8rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: #f8fafc; font-weight: 600; }

.legal-main { padding: 36px 0 72px; }
.legal-back { margin-bottom: 18px; font-weight: 600; }
.legal-back a { color: var(--navy); text-decoration: none; }
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 40px);
  max-width: 760px;
}
.legal-card h1 {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.legal-body p, .legal-body li { margin-bottom: 12px; }
.legal-body h2, .legal-body h3 { margin: 24px 0 8px; color: var(--navy); }

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .audience-grid,
  .benefit-grid,
  .quotes,
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  body.lp-body { padding-bottom: 76px; }
}

@media (max-width: 540px) {
  .shell { width: calc(100% - 28px); }
  .hero { padding: 32px 0 40px; }
  .lead-box { padding: 16px; }
}
