/* VenturaLeads – statische Produktseite. Keine Abhängigkeiten, kein Build.
   Farbwelt: Teal (wie das CRM) auf hellem Grund, ein Blau für Tiefe,
   Amber nur für den Gratis-Hinweis. */
:root {
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f6f8fb;
  --card: #ffffff;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #e6f7f4;
  --blue: #1e40af;
  --amber: #f59e0b;
  --amber-soft: #fff4dc;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px rgba(15, 23, 42, .06);
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 17px/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-dark); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0; text-wrap: balance; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0; }
.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }
.eyebrow { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--teal-dark); }
.lede { color: var(--ink-2); font-size: 1.15rem; max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.section { padding: 84px 0; }
.section-head { display: grid; gap: 12px; margin-bottom: 40px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px;
  font: 600 1rem var(--font-body); text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-2); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn-ghost:hover { border-color: #fff; }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* Header */
.header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.brand svg { width: 30px; height: 30px; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

/* Hero */
.hero {
  color: #fff; padding: 92px 0 72px;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(700px 380px at 90% 90%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(120deg, var(--teal-dark) 0%, #0e7490 55%, var(--blue) 100%);
}
.hero .wrap { display: grid; gap: 28px; justify-items: center; text-align: center; }
.hero .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 6px 14px; font-weight: 600; font-size: .95rem; }
.hero .badge b { color: #ffd889; }
.hero h1 { max-width: 24ch; }
.hero .lede { color: rgba(255,255,255,.9); }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .trust { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center; font-size: .95rem; color: rgba(255,255,255,.85); }
.hero .trust span::before { content: "✓"; margin-right: 7px; color: #ffd889; font-weight: 700; }

/* Zahlen-Band */
.numbers { margin-top: -34px; }
.numbers .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.num { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.num b { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal-dark); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.num span { color: var(--muted); font-size: .95rem; }

/* Ergebnisse */
.results { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.res { background: linear-gradient(160deg, var(--teal-dark), var(--blue)); color: #fff; border-radius: var(--radius); padding: 22px 22px 20px; box-shadow: var(--shadow); }
.res b { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.05; margin-bottom: 6px; }
.res span { color: rgba(255,255,255,.88); font-size: .95rem; }

/* Schritte */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; counter-reset: schritt; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: grid; gap: 10px; position: relative; }
.step::before { counter-increment: schritt; content: counter(schritt); width: 38px; height: 38px; border-radius: 10px; background: var(--teal-soft); color: var(--teal-dark); font: 800 1.1rem var(--font-display); display: grid; place-items: center; }
.step p { color: var(--ink-2); }

/* Beispiel-Lead */
.sample { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.lead-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.lead-card header { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #fbfcfe; }
.lead-card header .tag { font-size: .8rem; font-weight: 700; color: var(--teal-dark); background: var(--teal-soft); border-radius: 999px; padding: 3px 10px; }
.lead-card header time { font-size: .85rem; color: var(--muted); }
.lead-card dl { margin: 0; padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.lead-card dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.lead-card dd { margin: 2px 0 0; font-weight: 600; }
.lead-card dd.tel { font-variant-numeric: tabular-nums; color: var(--teal-dark); }
.lead-card .full { grid-column: 1 / -1; }
.lead-card footer { padding: 12px 18px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.sample ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.sample li { padding-left: 30px; position: relative; color: var(--ink-2); }
.sample li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); font-weight: 800; display: grid; place-items: center; font-size: .85rem; }

/* CRM-Funktionen */
.crm { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.feat { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 12px; align-content: start; }
.feat ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; color: var(--ink-2); }
.feat li { padding-left: 26px; position: relative; }
.feat li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); font-weight: 800; display: grid; place-items: center; font-size: .75rem; }

/* Zielgruppen */
.audience { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.aud { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: grid; gap: 8px; }
.aud .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal-dark); margin-bottom: 6px; }
.aud p { color: var(--ink-2); }

/* Preise */
.pricing { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; align-items: stretch; }
.tier { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; gap: 14px; align-content: start; background: var(--bg); }
.tier.featured { border-color: var(--teal); background: var(--card); box-shadow: var(--shadow); position: relative; }
.tier.featured::after { content: "Beliebt"; position: absolute; top: -12px; right: 20px; background: var(--teal); color: #fff; font: 700 .75rem var(--font-display); letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tier .price { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; letter-spacing: -.02em; }
.tier .price small { font: 400 1rem var(--font-body); color: var(--muted); }
.tier .free { color: var(--teal-dark); }
.tier ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--ink-2); }
.tier li::before { content: "✓"; color: var(--teal-dark); font-weight: 800; margin-right: 8px; }
.tier .btn { justify-self: start; }
.pricing .note { color: var(--muted); font-size: .95rem; margin-top: 18px; }
.tiers { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.guarantee { margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; background: var(--teal-soft); border: 1px solid #b9e8df; border-radius: var(--radius); padding: 20px 22px; }
.guarantee b { font-family: var(--font-display); color: var(--teal-dark); display: block; margin-bottom: 4px; }
.guarantee p { color: var(--ink-2); font-size: .98rem; }

/* Vergleich */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cmp { border-radius: var(--radius); padding: 26px; display: grid; gap: 10px; border: 1px solid var(--line); background: var(--card); }
.cmp.us { border-color: var(--teal); background: var(--teal-soft); }
.cmp h3 { display: flex; align-items: center; gap: 10px; }
.cmp ul { margin: 0; padding: 0 0 0 18px; color: var(--ink-2); display: grid; gap: 6px; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 800px; margin-inline: auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 600; font-family: var(--font-display); list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal-dark); font-weight: 800; font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 18px; color: var(--ink-2); }

/* Kontakt */
.contact { background: linear-gradient(120deg, var(--teal-dark), var(--blue)); color: #fff; }
.contact .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.contact .lede { color: rgba(255,255,255,.9); }
.form { background: var(--card); color: var(--ink); border-radius: var(--radius); padding: 26px; display: grid; gap: 14px; box-shadow: var(--shadow); }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: .95rem; }
.form input, .form select, .form textarea { font: 1rem var(--font-body); padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); width: 100%; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .hint { font-size: .85rem; color: var(--muted); font-weight: 400; }
.form .btn { justify-self: start; }

/* Footer */
.footer { padding: 34px 0; color: var(--muted); font-size: .95rem; }
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; align-items: center; }
.footer nav { display: flex; gap: 18px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--ink); }

/* Rechtstexte */
.legal { padding: 60px 0; max-width: 760px; }
.legal h1 { font-size: 2.2rem; margin-bottom: 10px; }
.legal h2 { font-size: 1.3rem; margin: 30px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal .todo { background: var(--amber-soft); border-left: 4px solid var(--amber); padding: 10px 14px; border-radius: 8px; color: #7c4a03; }

@media (max-width: 860px) {
  .section { padding: 60px 0; }
  .nav { display: none; position: absolute; top: 66px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 12px 20px 18px; gap: 14px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .sample, .compare, .contact .wrap { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
