/* ============================================================================
   #Inside — Landingpage
   ----------------------------------------------------------------------------
   Eigenes Stylesheet, NICHT die style.css des Portals. Eine Verkaufsseite
   braucht mehr Weißraum, größere Schrift und weniger Dichte als ein Fachportal.

   Ausdrücklich nicht übernommen: der Selektor * { color; font-size } aus dem
   Portal. Er hebelt die Vererbung aus und war dort schon zweimal teuer.

   Farben und Schriften: Markenblatt vom 2026-08-02.
   ========================================================================== */

/* --- Schriften. Lokal eingebunden, kein Font-CDN: die Seite wirbt mit
       Serverstandort Deutschland, ein US-Abruf bei jedem Aufruf wäre ein
       Selbstwiderspruch. ----------------------------------------------------*/
@font-face {
  font-family: 'Archivo';
  src: url('schriften/archivo-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('schriften/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('schriften/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --tinte:        #101418;
  --tinte-flaeche:#171C22;
  --tinte-linie:  #222933;
  --papier:       #F4F1EA;
  --signal:       #E9A13B;
  --signal-tief:  #C9832A;
  --grau:         #8A94A1;
  --grau-hell:    #5C6672;

  --schrift-kopf: 'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
  --schrift-text: 'InterVar', 'Segoe UI', Helvetica, Arial, sans-serif;

  --breite: 1120px;
  --luft:   clamp(56px, 9vw, 112px);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--schrift-text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--schrift-kopf);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6vw, 62px); }
h2 { font-size: clamp(27px, 3.6vw, 34px); }
h3 { font-size: clamp(21px, 2.6vw, 25px); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.zahl { font-variant-numeric: tabular-nums; }

/* --- Grundgerüst ----------------------------------------------------------*/
.bahn { padding: var(--luft) 22px; }
.mitte { max-width: var(--breite); margin: 0 auto; }
.eng   { max-width: 760px; }

.dunkel { background: var(--tinte); color: var(--papier); }
.dunkel .grau { color: var(--grau); }
.hell .grau   { color: var(--grau-hell); }

.kicker {
  font-family: var(--schrift-text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 14px;
}

/* --- Kopfleiste -----------------------------------------------------------*/
.kopf {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 20, 24, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tinte-linie);
}
.kopf-inner {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.kopf img { display: block; height: 30px; width: auto; }
.kopf nav { margin-left: auto; display: flex; gap: 26px; }
.kopf nav a {
  color: var(--papier);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.82;
}
.kopf nav a:hover { opacity: 1; color: var(--signal); }
@media (max-width: 800px) { .kopf nav { display: none; } .kopf nav + .knopf { margin-left: auto; } }

/* --- Knöpfe. Signalfarbe genau EINMAL pro Bildschirm. ----------------------*/
.knopf {
  display: inline-block;
  font-family: var(--schrift-kopf);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.knopf-haupt {
  background: var(--signal);
  color: var(--tinte);
}
.knopf-haupt:hover { background: var(--signal-tief); }
.knopf-umriss {
  border-color: currentColor;
  color: inherit;
  background: none;
}
.knopf-umriss:hover { background: rgba(233, 161, 59, 0.14); border-color: var(--signal); color: var(--signal); }
.kopf .knopf { padding: 10px 18px; font-size: 15px; }

/* --- Hero -----------------------------------------------------------------*/
.hero { padding-top: clamp(48px, 7vw, 88px); padding-bottom: 0; overflow: hidden; }
.hero h1 { max-width: 15ch; }
.hero-text { max-width: 620px; font-size: clamp(18px, 2.1vw, 21px); color: var(--grau); }
.hero-knoepfe { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 20px; }
.hero-vertrauen {
  font-size: 14.5px;
  color: var(--grau);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}
.hero-bild {
  margin: clamp(38px, 5vw, 62px) auto -6px;
  max-width: 940px;
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid var(--tinte-linie);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(0, 0, 0, 0.5);
}
.hero-bild img { display: block; width: 100%; height: auto; }

/* --- Platzhalter für noch fehlende Bilder ---------------------------------*/
.platzhalter {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  padding: 30px;
  border: 2px dashed var(--grau);
  border-radius: var(--radius);
  color: var(--grau);
  font-size: 15px;
  background: rgba(138, 148, 161, 0.07);
}
.hero-bild .platzhalter { border: none; min-height: 300px; }

/* --- Problemliste ---------------------------------------------------------*/
.problem-liste { list-style: none; padding: 0; margin: 0 0 28px; }
.problem-liste li {
  position: relative;
  padding: 0 0 0 34px;
  margin-bottom: 15px;
  font-size: 18.5px;
}
.problem-liste li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 11px;
  height: 3px;
  background: var(--signal);
}
.pointe {
  font-family: var(--schrift-kopf);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 25px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* --- Kernfunktionen: Text und Bild im Wechsel -----------------------------*/
.funktion { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 900px) {
  .funktion { grid-template-columns: 1fr 1.15fr; }
  .funktion.gedreht .funktion-text { order: 2; }
}
.funktion + .funktion { margin-top: var(--luft); }
.funktion-bild img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 20, 24, 0.14);
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.13);
}
.funktion ul { padding-left: 20px; margin: 0 0 1.1em; }
.funktion li { margin-bottom: 9px; }

/* --- Kachelraster ---------------------------------------------------------*/
.kacheln {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  margin-top: 40px;
}
.kachel {
  background: var(--tinte-flaeche);
  border: 1px solid var(--tinte-linie);
  border-radius: var(--radius);
  padding: 24px;
}
.kachel h3 { font-size: 18.5px; margin-bottom: 8px; }
.kachel p { font-size: 16px; color: var(--grau); }

.kacheln-hell .kachel {
  background: #fff;
  border-color: rgba(16, 20, 24, 0.12);
}
.kacheln-hell .kachel p { color: var(--grau-hell); }

/* --- Roadmap: sichtbar abgesetzt, damit nichts wie fertig aussieht --------*/
.roadmap {
  border: 2px dashed var(--grau);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  background: rgba(138, 148, 161, 0.06);
}
.roadmap ul { list-style: none; padding: 0; margin: 22px 0 22px; }
.roadmap li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(138, 148, 161, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
}
.roadmap li:last-child { border-bottom: none; }
.marke-geplant {
  font-family: var(--schrift-text);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grau-hell);
  border: 1px solid var(--grau);
  border-radius: 999px;
  padding: 3px 11px;
}

/* --- Ablauf in vier Schritten ---------------------------------------------*/
.schritte { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 40px; }
.schritt { border-top: 3px solid var(--signal); padding-top: 18px; }
.schritt-nr {
  font-family: var(--schrift-kopf);
  font-weight: 800;
  font-size: 15px;
  color: var(--signal);
  display: block;
  margin-bottom: 6px;
}
.schritt h3 { font-size: 19px; }
.schritt p { font-size: 16px; }

/* --- Preis ----------------------------------------------------------------*/
.preis-karte {
  background: var(--tinte-flaeche);
  border: 1px solid var(--tinte-linie);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.preis-zahl {
  font-family: var(--schrift-kopf);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.03em;
  color: var(--signal);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: 10px;
}

/* --- FAQ ------------------------------------------------------------------*/
.faq { margin-top: 34px; }
.faq details {
  border-bottom: 1px solid rgba(16, 20, 24, 0.14);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 40px 19px 0;
  position: relative;
  font-family: var(--schrift-kopf);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--signal);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 20px; margin: 0; max-width: 74ch; }

/* --- Formular -------------------------------------------------------------*/
.formular { margin-top: 38px; }
.feld-paar { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.feld { margin-bottom: 18px; }
.feld label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 7px;
}
.feld input, .feld textarea, .feld select {
  width: 100%;
  font-family: var(--schrift-text);
  font-size: 16.5px;
  color: var(--papier);
  background: rgba(244, 241, 234, 0.06);
  border: 1px solid var(--tinte-linie);
  border-radius: 10px;
  padding: 13px 14px;
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: 2px solid var(--signal);
  outline-offset: 1px;
  border-color: transparent;
}
.feld textarea { min-height: 116px; resize: vertical; }
.einwilligung { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 24px; }
.einwilligung input { width: 20px; height: 20px; flex: none; margin-top: 3px; accent-color: var(--signal); }
.einwilligung label { font-size: 15px; font-weight: 400; color: var(--grau); margin: 0; }
.einwilligung a { color: var(--signal); }
.pflicht { color: var(--signal); }
.nach-knopf { font-size: 14.5px; color: var(--grau); margin-top: 14px; }

/* Honigtopf: für Menschen unsichtbar, für einfache Bots verlockend.
   Bewusst kein Captcha — das wäre eine Hürde für die echten Interessenten. */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hinweis {
  border-left: 3px solid var(--signal);
  background: rgba(233, 161, 59, 0.1);
  padding: 15px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  margin-bottom: 26px;
}

/* --- Fußzeile -------------------------------------------------------------*/
.fuss { border-top: 1px solid var(--tinte-linie); font-size: 15px; }
.fuss-inner {
  max-width: var(--breite);
  margin: 0 auto;
  padding: 40px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
}
.fuss a { color: var(--papier); text-decoration: none; opacity: 0.8; }
.fuss a:hover { opacity: 1; color: var(--signal); }
.fuss-rechts { margin-left: auto; color: var(--grau); }
@media (max-width: 640px) { .fuss-rechts { margin-left: 0; } }

/* --- Sprungmarke für Tastaturbedienung ------------------------------------*/
.sprung {
  position: absolute;
  left: -9999px;
  background: var(--signal);
  color: var(--tinte);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.sprung:focus { left: 12px; top: 12px; z-index: 40; }
