/* AVDraw — Landingpage (start/). Eigenständig, bindet NICHT app.css ein.
   Keine externe Schrift, kein CDN, kein Analyse-Skript. Mobil zuerst. */

:root {
  --bg: #0a0d14;
  --panel: #111722;
  --accent: #3b82f6;
  --text: #e6ecf5;
  --text-muted: #a7b2c4;
  --border: #232b3a;
  --btn-text: #0a0d14;
  --max-width: 760px;
  --gap: 1.25rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Kopfzeile */

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Rechte Seite der Kopfzeile: Anmeldeknopf und Sprachwahl nebeneinander. */
.header-rechts {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.header-anmelden {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.38rem 0.85rem;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  /* **Nicht die Linkfarbe erben.** Der erste Wurf liess den Knopf blau
     (`--accent`) auf dunkelblauem Grund — im Bild kaum zu lesen. In einem
     umrandeten Knopf trägt der Rahmen die Auszeichnung, der Text braucht
     Kontrast. */
  color: var(--text);
}

.header-anmelden:hover,
.header-anmelden:focus-visible {
  border-color: var(--accent);
  color: var(--text);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.lang-switch a,
.lang-current {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.15rem 0.35rem;
}

.lang-switch a {
  border-radius: 0.25rem;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.lang-current {
  color: var(--text);
  font-weight: 600;
}

/* Hero */

.hero {
  padding: 2.75rem 0 2.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0 auto 1.75rem;
}

.trust-line {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 1rem 0 0;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--btn-text);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #5b9bf8;
}

.btn:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Allgemeine Abschnitte */

.page-section {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
}

.page-section h2 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.page-section p {
  margin: 0 0 0.75rem;
}

.section-closing {
  text-align: center;
}

.section-closing h2 {
  margin-bottom: 1.25rem;
}

/* Abwechselnder Panel-Hintergrund fuer die einzelnen Abschnitte,
   damit lange Seiten beim Scrollen eine erkennbare Gliederung behalten. */

.section-problem,
.section-proof,
.section-pricing,
.section-standards {
  background: var(--panel);
}

.section-steps,
.section-objections {
  background: transparent;
}

/* Platzhalter-Bilder */

/* Echte Abbildungen. Ersetzen seit 17.08.2026 die gestrichelten Platzhalter —
   die Seite behauptete „Kein Mockup. Echte Pläne." über vier leeren Kästen. */
.bild-figur {
  margin: 1.25rem 0 0;
}

.bild-figur img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--panel);
}

.bild-figur figcaption {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.proof-figures .bild-figur {
  margin-top: 0;
}

.placeholder-figure {
  margin: 1.25rem 0 0;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--border);
  border-radius: 0.5rem;
  background: var(--panel);
  text-align: center;
}

.placeholder-figure figcaption {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.proof-figures {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.proof-figures /* Echte Abbildungen. Ersetzen seit 17.08.2026 die gestrichelten Platzhalter —
   die Seite behauptete „Kein Mockup. Echte Pläne." über vier leeren Kästen. */
.bild-figur {
  margin: 1.25rem 0 0;
}

.bild-figur img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--panel);
}

.bild-figur figcaption {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.proof-figures .bild-figur {
  margin-top: 0;
}

.placeholder-figure {
  margin-top: 0;
}

/* Drei Schritte */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step-num {
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.step-body p {
  margin: 0;
  color: var(--text-muted);
}

/* Tarife */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.pricing-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  background: var(--panel);
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.pricing-table thead th {
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody th[scope="row"] {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* Ehrlich gesagt */

.objection {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.objection:first-of-type {
  border-top: none;
  padding-top: 0;
}

.objection h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.objection p {
  margin: 0;
  color: var(--text-muted);
}

/* Normen */

.standards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.standards li {
  padding: 0.6rem 0.8rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.standards li strong {
  color: var(--text);
}

/* Fusszeile */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
}

.site-footer .lang-switch {
  justify-content: center;
}

/* Rechtslinks im Fuss. Eigene Klasse statt `.lang-switch`, weil sie umbrechen
   dürfen — auf einem Telefon stehen vier Wörter sonst über den Rand hinaus. */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

/* Ab Tablet-Breite etwas mehr Luft und zweispaltige Beweis-Bilder */

@media (min-width: 640px) {
  .section-inner {
    padding: 0 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .proof-figures {
    grid-template-columns: 1fr 1fr;
  }

  .page-section h2 {
    font-size: 1.6rem;
  }
}

/* Kleiner, zurückhaltender Zusatzhinweis unter einem Knopf. */
.hint-small {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Die Marke im Kopf ist auf den Unterseiten ein Rückweg. */
.brand a {
  color: inherit;
  text-decoration: none;
}
