/* fragdieseite.de — Marketingseite. Reines CSS, keine externen Abhängigkeiten. */

:root{
  --petrol:#09564e;
  --akzent:#0b7268;
  --akzent-hover:#09564e;
  --mint:#dff0ed;
  --dark-top:#0a4f47;
  --dark-bot:#0f6b60;
  --ink:#171633;
  --muted:#63637d;
  --line:#e6e6f0;
  --bg:#f5f5fa;
  --white:#ffffff;
  --radius:14px;
  --maxw:1120px;
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
/* Kein seitliches Wackeln: Raster- und Flex-Kinder dürfen unter ihre
   Mindestbreite schrumpfen, sonst sprengt ein langer Code-Schnipsel die Spalte. */
.steps>*,.feat-grid>*,.price-grid>*,.problem-grid>*,.trust-grid>*,
.price-notes>*,.hero .wrap>*,.footer-top>*,.footer-cols>*{min-width:0}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001s!important;transition-duration:.001s!important}
}

img{max-width:100%;display:block}
a{color:var(--akzent);text-decoration:none}
a:hover{color:var(--akzent-hover);text-decoration:underline}
h1,h2,h3{line-height:1.15;letter-spacing:-.01em;margin:0}
p{margin:0}
ul{margin:0;padding:0;list-style:none}

/* sichtbarer Tastatur-Fokus auf allen bedienbaren Elementen */
a:focus-visible,button:focus-visible,summary:focus-visible,
input:focus-visible,textarea:focus-visible{
  outline:3px solid var(--akzent);outline-offset:3px;border-radius:6px;
}
.hero a:focus-visible,.trust a:focus-visible,.site-footer a:focus-visible{outline-color:#8fe3d3}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.skip{
  position:absolute;left:-9999px;top:8px;z-index:100;
  background:#fff;color:var(--petrol);font-weight:700;padding:12px 18px;border-radius:10px;
  box-shadow:0 6px 20px -8px rgba(0,0,0,.4);
}
.skip:focus{left:16px}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.eyebrow{
  font-size:.8rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--akzent);margin-bottom:14px;
}
.eyebrow-hell{color:#8fe3d3}
.section{padding:72px 0}
.section h2{font-size:clamp(1.7rem,4.6vw,2.5rem);font-weight:800;max-width:20ch}
.section .lead{font-size:1.12rem;color:var(--muted);max-width:60ch;margin-top:16px}
.center{text-align:center}
.center .lead{margin-left:auto;margin-right:auto}
.center .eyebrow,.center h2{margin-left:auto;margin-right:auto}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:1rem;font-weight:700;font-family:inherit;line-height:1;
  padding:15px 26px;border-radius:11px;border:1.5px solid transparent;
  cursor:pointer;transition:background .15s,border-color .15s,color .15s,transform .05s;
  min-height:52px;white-space:nowrap;
}
.btn:hover{text-decoration:none}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--akzent);color:#fff}
.btn-primary:hover{background:var(--akzent-hover);color:#fff}
.btn-ghost{background:transparent;color:var(--petrol);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--akzent);color:var(--akzent)}
.btn-on-dark{background:#fff;color:var(--petrol)}
.btn-on-dark:hover{background:var(--mint);color:var(--petrol)}
.btn-ghost-dark{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.btn-ghost-dark:hover{border-color:#fff;color:#fff}
.btn-lg{padding:17px 32px;font-size:1.05rem;min-height:56px}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(245,245,250,.86);backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:66px;gap:16px}
.site-header .logo img{height:30px;width:auto}
/* Ab Desktop-Breite 20 % größer (30px → 36px); auf dem Handy bleibt es klein,
   damit im Kopfbereich Platz für den Knopf bleibt. */
@media (min-width:900px){
  .site-header .logo img{height:36px}
}
.nav-actions{display:flex;align-items:center;gap:8px}
.nav-actions .nav-link,.nav-actions .login{
  color:var(--ink);font-weight:600;font-size:.98rem;padding:10px 12px;border-radius:9px;
}
.nav-actions .nav-link:hover,.nav-actions .login:hover{
  color:var(--akzent);text-decoration:none;background:var(--mint);
}
.header-cta{padding:11px 18px;min-height:44px}
@media (max-width:900px){.nav-actions .nav-link{display:none}}
@media (max-width:520px){.nav-actions .login{display:none}}

/* ---------- Hero ---------- */
.hero{
  background:linear-gradient(160deg,var(--dark-top),var(--dark-bot));
  color:#fff;padding:64px 0 76px;position:relative;overflow:hidden;
}
.hero .wrap{position:relative;display:grid;grid-template-columns:1fr;gap:44px;align-items:center}
.hero h1{font-size:clamp(2.1rem,6.2vw,3.4rem);font-weight:800;letter-spacing:-.02em;max-width:16ch}
.hero .sub{font-size:1.18rem;color:rgba(255,255,255,.9);max-width:52ch;margin-top:20px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.hero-note{display:flex;align-items:center;gap:9px;margin-top:22px;color:rgba(255,255,255,.82);font-size:.98rem}
.hero-note svg{flex:none;width:19px;height:19px}
.hero-badges{display:flex;flex-wrap:wrap;gap:8px 22px;margin-top:26px}
.hero-badges li{display:flex;align-items:center;gap:8px;font-size:.94rem;color:rgba(255,255,255,.86)}
.hero-badges svg{width:17px;height:17px;flex:none;color:#8fe3d3}
@media (min-width:900px){
  .hero{padding:84px 0 92px}
  .hero .wrap{grid-template-columns:1.05fr .95fr;gap:56px}
}

/* ---------- Demo-Feld im Hero ---------- */
.demo-form{
  display:flex;gap:10px;margin-top:30px;max-width:520px;flex-wrap:wrap;
}
.demo-form input{
  flex:1 1 240px;min-width:0;font-family:inherit;font-size:1.05rem;
  padding:15px 18px;border-radius:11px;border:1.5px solid rgba(255,255,255,.32);
  background:rgba(255,255,255,.1);color:#fff;min-height:56px;
}
.demo-form input::placeholder{color:rgba(255,255,255,.62)}
.demo-form input:focus{
  outline:3px solid #8fe3d3;outline-offset:2px;
  background:rgba(255,255,255,.16);border-color:transparent;
}
.demo-form .btn{flex:0 0 auto;min-height:56px;padding:15px 26px}
.hero-zweitlink{margin-top:16px;font-size:.98rem}
.hero-zweitlink a{color:rgba(255,255,255,.82);text-decoration:underline}
.hero-zweitlink a:hover{color:#fff}
@media (max-width:520px){.demo-form .btn{width:100%}}

/* ---------- Vertrauens- und Herkunftszeile ---------- */
.vertrauensband{
  background:var(--white);border-bottom:1px solid var(--line);padding:18px 0 20px;text-align:center;
}
.vb-punkte{
  display:flex;flex-wrap:wrap;justify-content:center;gap:6px 0;
  color:var(--muted);font-size:.95rem;font-weight:600;
}
.vb-punkte span{padding:0 16px;position:relative}
.vb-punkte span+span::before{
  content:"·";position:absolute;left:-2px;color:var(--line);
}
.vb-herkunft{margin-top:8px;color:var(--muted);font-size:.88rem}
@media (max-width:560px){
  .vb-punkte{flex-direction:column}
  .vb-punkte span+span::before{content:none}
}

/* ---------- Chat mock ---------- */
.chatmock{
  background:#fff;border-radius:20px;overflow:hidden;color:var(--ink);
  box-shadow:0 30px 70px -24px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.06);
  max-width:400px;width:100%;margin:0 auto;
}
.cm-head{
  background:linear-gradient(160deg,var(--dark-top),var(--dark-bot));color:#fff;
  padding:16px 18px;display:flex;align-items:center;gap:12px;
}
.cm-avatar{
  width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.16);
  display:grid;place-items:center;flex:none;
}
.cm-avatar img{width:26px;height:26px}
.cm-head b{font-size:1rem;display:block;line-height:1.2}
.cm-head span{font-size:.8rem;color:rgba(255,255,255,.75);display:flex;align-items:center;gap:6px}
.cm-dot{width:7px;height:7px;border-radius:50%;background:#7be0cf;display:inline-block}
.cm-body{padding:18px 16px;display:flex;flex-direction:column;gap:12px;background:#fbfbfd}
.bubble{max-width:82%;padding:11px 14px;border-radius:15px;font-size:.94rem;line-height:1.5}
.bubble.bot{background:var(--mint);color:#0c3b35;border-bottom-left-radius:5px;align-self:flex-start}
.bubble.user{background:var(--akzent);color:#fff;border-bottom-right-radius:5px;align-self:flex-end}
.cm-input{
  display:flex;align-items:center;gap:8px;padding:12px 14px;border-top:1px solid var(--line);background:#fff;
}
.cm-input .field{
  flex:1;color:var(--muted);font-size:.92rem;background:var(--bg);
  border:1px solid var(--line);border-radius:10px;padding:10px 12px;
}
.cm-send{width:38px;height:38px;border-radius:10px;background:var(--akzent);display:grid;place-items:center;flex:none}
.cm-send svg{width:18px;height:18px;color:#fff}
.cm-teaser{margin:0 auto 12px;max-width:400px;display:flex;justify-content:flex-end}
.cm-teaser span{
  background:#fff;color:var(--ink);font-size:.9rem;font-weight:600;padding:9px 14px;border-radius:14px;
  box-shadow:0 8px 24px -10px rgba(0,0,0,.4);position:relative;
}

/* ---------- Code line ---------- */
.codeline{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:.82rem;
  background:#0c332e;color:#c9efe6;border-radius:10px;padding:13px 15px;overflow-x:auto;
  border:1px solid rgba(255,255,255,.08);
}
.codeline .tok{color:#7bd0c1}
.codeline .str{color:#ffd9a8}

/* ---------- Problem ---------- */
.problem{background:var(--white);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.problem-grid{display:grid;gap:22px;margin-top:36px}
.problem-card{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.problem-card .q{font-size:1.05rem;font-weight:700;color:var(--ink)}
.problem-card .qmark{color:var(--muted);font-size:.92rem;margin-top:6px}
.problem-card .time{
  display:inline-flex;align-items:center;gap:7px;margin-top:14px;font-size:.85rem;font-weight:600;
  color:var(--akzent);background:var(--mint);padding:5px 11px;border-radius:20px;
}
@media (min-width:760px){.problem-grid{grid-template-columns:repeat(3,1fr)}}

/* ---------- Steps ---------- */
.steps{display:grid;gap:22px;margin-top:44px;counter-reset:step}
.step{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:28px 26px;position:relative}
.step .num{
  width:42px;height:42px;border-radius:12px;background:var(--petrol);color:#fff;
  font-weight:800;font-size:1.2rem;display:grid;place-items:center;margin-bottom:18px;
}
.step h3{font-size:1.2rem;font-weight:700}
.step p{color:var(--muted);margin-top:9px;font-size:1rem}
.step .codeline{margin-top:16px}
@media (min-width:820px){.steps{grid-template-columns:repeat(3,1fr)}}

/* ---------- Features ---------- */
.features{background:var(--white);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.feat-grid{display:grid;gap:20px;margin-top:44px}
.feat{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:26px 24px}
.feat .ic{
  width:46px;height:46px;border-radius:12px;background:var(--mint);color:var(--petrol);
  display:grid;place-items:center;margin-bottom:16px;
}
.feat .ic svg{width:24px;height:24px}
.feat h3{font-size:1.14rem;font-weight:700}
.feat p{color:var(--muted);margin-top:8px;font-size:.98rem}
@media (min-width:680px){.feat-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.feat-grid{grid-template-columns:repeat(3,1fr)}}

/* ---------- Illustration: Chat auf einer Website (reines CSS) ---------- */
.shot{margin:44px 0 0}
.shot figcaption{margin-top:14px;color:var(--muted);font-size:.92rem;max-width:62ch}
.browser{
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;
  box-shadow:0 24px 60px -34px rgba(12,51,46,.55);
}
.browser-bar{
  display:flex;align-items:center;gap:7px;padding:11px 14px;
  background:#eef0f6;border-bottom:1px solid var(--line);
}
.browser-bar .dot{width:10px;height:10px;border-radius:50%;background:#cfd3e2}
.browser-bar .d1{background:#f2b8b5}
.browser-bar .d2{background:#f7dda0}
.browser-bar .d3{background:#b8dfc9}
.browser-bar .url{
  margin-left:10px;background:#fff;border:1px solid var(--line);border-radius:20px;
  padding:4px 14px;font-size:.78rem;color:var(--muted);
  font-family:ui-monospace,Menlo,Consolas,monospace;
}
.browser-page{position:relative;padding:22px;min-height:330px;background:linear-gradient(#fff,#fbfbfd)}
.skel-nav{display:flex;align-items:center;gap:14px;padding-bottom:18px;border-bottom:1px solid var(--line)}
.skel-logo{width:112px;height:16px;border-radius:5px;background:var(--mint)}
.skel-link{width:64px;height:9px;border-radius:5px;background:#e9ebf3}
.skel-link.short{width:40px}
.skel-hero{display:flex;flex-direction:column;gap:11px;padding:26px 0 22px;max-width:60%}
.skel-h1{height:24px;border-radius:6px;background:#dcdfeb;width:90%}
.skel-line{height:10px;border-radius:5px;background:#e9ebf3}
.skel-line.w80{width:78%}
.skel-btn{margin-top:8px;width:132px;height:34px;border-radius:9px;background:var(--petrol);opacity:.22}
.skel-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.skel-card{height:74px;border-radius:10px;background:#eef0f6;border:1px solid var(--line)}
.widget-corner{position:absolute;right:20px;bottom:20px;display:flex;align-items:center;gap:10px}
.widget-teaser{
  background:#fff;border:1px solid var(--line);border-radius:14px;padding:9px 14px;
  font-size:.86rem;font-weight:600;color:var(--ink);
  box-shadow:0 10px 26px -14px rgba(0,0,0,.5);
}
.widget-bubble{
  width:56px;height:56px;border-radius:50%;flex:none;display:grid;place-items:center;
  background:linear-gradient(160deg,var(--dark-top),var(--dark-bot));
  box-shadow:0 12px 28px -10px rgba(10,79,71,.7);
}
.widget-bubble img{width:30px;height:30px}
@media (max-width:640px){
  .skel-hero{max-width:100%}
  .skel-cards{grid-template-columns:1fr 1fr}
  .widget-teaser{display:none}
}

/* ---------- Branchen ---------- */
.branchen-list{display:flex;flex-wrap:wrap;gap:12px;margin-top:36px}
.branchen-list li{
  background:var(--white);border:1px solid var(--line);border-radius:30px;
  padding:11px 20px;font-weight:600;font-size:1rem;display:flex;align-items:center;gap:9px;
}
.branchen-list .dot{width:9px;height:9px;border-radius:50%;background:var(--akzent);flex:none}

/* ---------- Preise ---------- */
.preise{background:var(--white);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
/* Umschalter monatlich / jährlich */
.preis-schalter{margin-top:30px}
.preis-schalter fieldset{
  border:1px solid var(--line);background:var(--white);border-radius:30px;
  padding:6px;margin:0;display:inline-flex;flex-wrap:wrap;gap:4px;
}
.preis-schalter label{
  display:inline-flex;align-items:center;gap:9px;cursor:pointer;
  padding:10px 18px;border-radius:24px;font-weight:600;font-size:.98rem;
  transition:background .15s,color .15s;
}
.preis-schalter label:hover{background:var(--bg)}
.preis-schalter input{accent-color:var(--akzent);width:17px;height:17px;margin:0}
.preis-schalter label:has(input:checked){background:var(--mint);color:var(--petrol)}
.preis-schalter input:focus-visible{outline:3px solid var(--akzent);outline-offset:3px}
.preis-schalter .spar{
  font-size:.82rem;font-weight:700;color:var(--akzent);
  background:var(--mint);border-radius:6px;padding:3px 9px;
}
.preis-schalter label:has(input:checked) .spar{background:var(--white)}
.zahlweise-hinweis{
  margin-top:22px;background:var(--mint);border-radius:var(--radius);
  padding:16px 20px;color:#0c3b35;font-size:.96rem;max-width:78ch;
}

/* Einrichtungsservice */
.service-block{
  margin-top:34px;background:var(--bg);border:1px solid var(--line);
  border-left:5px solid var(--akzent);border-radius:var(--radius);padding:28px 26px;
}
.service-block h3{font-size:1.3rem;font-weight:800;max-width:26ch}
.service-preis{margin-top:12px;font-size:1.05rem;color:var(--ink)}
.service-preis strong{font-size:1.25rem;color:var(--petrol)}
.service-preis span{color:var(--muted);font-size:.95rem}
.service-block p+p{margin-top:12px;color:var(--muted);font-size:.98rem;max-width:70ch}
.service-block .btn{margin-top:20px}

.price-grid{display:grid;gap:20px;margin-top:44px}
.plan{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px 24px;display:flex;flex-direction:column;
}
.plan.featured{border-color:var(--akzent);box-shadow:0 0 0 1px var(--akzent)}
.plan .flag{
  align-self:flex-start;font-size:.76rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  color:var(--akzent);background:var(--mint);padding:4px 10px;border-radius:6px;margin-bottom:14px;
}
.plan h3{font-size:1.35rem;font-weight:800}
/* Betrag und Zusatz dürfen jeweils NICHT in sich umbrechen — sonst landet in
   schmalen Karten das €-Zeichen allein auf der nächsten Zeile. Umbrochen wird
   nur zwischen beiden. */
.plan .price{margin-top:12px;display:flex;align-items:baseline;gap:2px 6px;flex-wrap:wrap}
.plan .price .amt{font-size:2.1rem;font-weight:800;letter-spacing:-.02em;white-space:nowrap}
.plan .price .per{color:var(--muted);font-size:.95rem;white-space:nowrap}
.plan .brutto{color:var(--muted);font-size:.9rem;margin-top:2px}
.plan .forwho{font-size:.95rem;color:var(--ink);font-weight:600;margin-top:14px;min-height:2.6em}
.plan ul.inc{margin-top:16px;display:flex;flex-direction:column;gap:10px;flex:1}
/* Der Text jedes Punktes gehört in EIN Element (span). Steht dort loser Text
   mit Auszeichnungen wie <em>, macht Flex daraus mehrere Spalten. */
.plan ul.inc li{display:flex;gap:10px;font-size:.95rem;color:#33324a}
.plan ul.inc li>span{min-width:0}
.plan ul.inc li em{font-style:italic}
.plan ul.inc li svg{width:18px;height:18px;color:var(--akzent);flex:none;margin-top:3px}
.plan ul.inc li .from{color:var(--muted);font-size:.86rem}
.plan .btn{margin-top:22px;width:100%}
@media (min-width:680px){.price-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1080px){.price-grid{grid-template-columns:repeat(4,1fr)}}

.price-notes{margin-top:34px;display:grid;gap:16px}
.note-card{background:var(--mint);border-radius:var(--radius);padding:22px 24px}
.note-card h3{font-size:1.1rem;font-weight:700;color:var(--petrol);display:flex;align-items:center;gap:9px}
.note-card p{color:#0c3b35;margin-top:8px;font-size:.98rem}
@media (min-width:760px){.price-notes{grid-template-columns:1fr 1fr}}
.price-fine{margin-top:20px;color:var(--muted);font-size:.88rem;max-width:78ch}

/* ---------- Vertrauen ---------- */
.trust{background:linear-gradient(160deg,var(--dark-top),var(--dark-bot));color:#fff}
.trust h2{color:#fff}
.trust .lead{color:rgba(255,255,255,.82)}
.live-hinweis{
  margin-top:22px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius);padding:18px 22px;color:rgba(255,255,255,.9);
  font-size:1rem;max-width:70ch;
}
.live-hinweis strong{color:#8fe3d3}
.trust-grid{display:grid;gap:20px;margin-top:44px}
.trust-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);padding:24px;
}
.trust-card .ic{color:#8fe3d3;margin-bottom:14px}
.trust-card .ic svg{width:26px;height:26px}
.trust-card h3{font-size:1.1rem;font-weight:700;color:#fff}
.trust-card p{color:rgba(255,255,255,.8);margin-top:8px;font-size:.96rem}
@media (min-width:680px){.trust-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1040px){.trust-grid{grid-template-columns:repeat(3,1fr)}}

/* ---------- FAQ ---------- */
.faq-list{margin-top:40px;max-width:820px;margin-left:auto;margin-right:auto}
details.faq{
  background:var(--white);border:1px solid var(--line);border-radius:12px;
  padding:0;margin-bottom:12px;overflow:hidden;
}
details.faq summary{
  list-style:none;cursor:pointer;padding:20px 22px;font-weight:700;font-size:1.05rem;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
}
details.faq summary::-webkit-details-marker{display:none}
details.faq summary .chev{flex:none;transition:transform .2s;color:var(--akzent)}
details.faq[open] summary .chev{transform:rotate(180deg)}
details.faq .ans{padding:0 22px 20px;color:var(--muted);font-size:1rem}
details.faq .ans p+p{margin-top:10px}

/* ---------- Final CTA ---------- */
.final{background:var(--white);text-align:center;border-top:1px solid var(--line)}
.final h2{font-size:clamp(1.8rem,5vw,2.7rem);font-weight:800;max-width:22ch;margin:0 auto}
.final .lead{margin:18px auto 0}
.final .btns{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:32px}

/* ---------- Footer ---------- */
.site-footer{background:#0c332e;color:rgba(255,255,255,.72);padding:56px 0 40px}
.footer-top{display:grid;gap:32px}
.footer-brand img{height:30px;width:auto;margin-bottom:16px}
.footer-brand p{color:rgba(255,255,255,.6);font-size:.94rem;max-width:34ch}
.footer-cols{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.footer-cols h4{color:#fff;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;margin:0 0 14px}
.footer-cols ul li{margin-bottom:9px}
.footer-cols a{color:rgba(255,255,255,.72);font-size:.95rem}
.footer-cols a:hover{color:#fff}
.footer-bottom{
  margin-top:40px;padding-top:22px;border-top:1px solid rgba(255,255,255,.12);
  display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;
  font-size:.86rem;color:rgba(255,255,255,.5);
}
.site-footer .footer-bottom a{color:rgba(255,255,255,.7)}
@media (min-width:820px){
  .footer-top{grid-template-columns:1.3fr 2fr}
  .footer-cols{grid-template-columns:repeat(4,1fr)}
}

/* ---------- Rechtstexte ---------- */
.legal{background:var(--white);min-height:60vh}
.legal .wrap{max-width:760px;padding-top:56px;padding-bottom:64px}
.legal h1{font-size:2rem;font-weight:800;margin-bottom:8px}
.legal .back{display:inline-flex;align-items:center;gap:7px;margin-bottom:26px;font-weight:600}
.legal h2{font-size:1.25rem;font-weight:700;margin:32px 0 10px}
.legal h3{font-size:1.05rem;font-weight:700;margin:20px 0 6px}
.legal p,.legal li{color:#33324a;font-size:1rem}
.legal p+p{margin-top:10px}
.legal ul{list-style:disc;padding-left:22px;margin:10px 0}
.legal ul li{margin-bottom:6px}
.legal .muted{color:var(--muted)}
.legal .klein{font-size:.9rem}
.legal .placeholder{
  background:var(--mint);border-radius:10px;padding:16px 18px;color:#0c3b35;font-size:.95rem;margin:18px 0;
}
.legal .box{
  background:var(--bg);border:1px solid var(--line);border-radius:10px;padding:18px 20px;margin:16px 0;
}
.legal address{font-style:normal;line-height:1.7}
.legal code{
  font-family:ui-monospace,Menlo,Consolas,monospace;font-size:.9em;
  background:var(--bg);border:1px solid var(--line);border-radius:5px;padding:1px 6px;
}

/* ---------- Kontaktformular ---------- */
.form-card{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:26px;margin-top:8px}
.form-row{margin-bottom:16px}
.form-row label{display:block;font-weight:600;font-size:.95rem;margin-bottom:6px}
.form-row input,.form-row textarea{
  width:100%;font-family:inherit;font-size:1rem;padding:12px 14px;border:1px solid var(--line);
  border-radius:10px;background:#fff;color:var(--ink);
}
.form-row textarea{min-height:130px;resize:vertical}
.form-row input:focus,.form-row textarea:focus{outline:2px solid var(--akzent);border-color:var(--akzent)}
.form-hinweis{color:var(--muted);font-size:.88rem;margin-top:14px}
.form-fehler{
  background:#fdeceb;border:1px solid #f2b8b5;color:#8a1c14;
  border-radius:10px;padding:14px 16px;margin:18px 0;font-size:.95rem;
}
.form-ok{
  background:var(--mint);border-radius:10px;padding:16px 18px;color:#0c3b35;margin:18px 0;
}

/* --- Hinweisleiste zur Reichweitenmessung ---------------------------------
   Erscheint einmal, blockiert nichts, dunkelt nichts ab. Wer sie ignoriert,
   liest einfach weiter — es gibt hier nichts zu erzwingen. */
/* Die Chat-Blase sitzt unten rechts (60 px, 20 px Abstand) und die
   Begrüßungsblase daneben. Eine Leiste über die ganze Breite läge darunter —
   deshalb: auf großen Bildschirmen eine Karte unten LINKS, auf kleinen die
   volle Breite, aber über die Blase gehoben. */
#fds-messung{
  position:fixed;left:16px;right:16px;bottom:96px;z-index:9999;
  background:#fff;border:1px solid var(--line);border-radius:14px;
  box-shadow:0 14px 44px rgba(15,15,40,.20);
  animation:fds-messung-auf .28s cubic-bezier(.16,1,.3,1) both;
}
@media (min-width:900px){
  #fds-messung{left:20px;right:auto;bottom:20px;max-width:540px}
}
@keyframes fds-messung-auf{from{transform:translateY(100%)}to{transform:none}}
@media (prefers-reduced-motion:reduce){#fds-messung{animation:none}}
.fds-messung-inner{
  max-width:none;margin:0;padding:16px 18px;
  display:flex;align-items:center;gap:14px 18px;flex-wrap:wrap;
}
.fds-messung-inner p{flex:1 1 100%;min-width:0;margin:0;font-size:14px;line-height:1.5;color:var(--muted)}
.fds-messung-inner a{color:var(--akzent)}
.fds-messung-knoepfe{display:flex;gap:10px;flex-shrink:0}
.fds-messung-knoepfe .btn{padding:9px 16px;font-size:14.5px}
@media (max-width:620px){
  .fds-messung-inner{padding:13px 16px;gap:12px}
  .fds-messung-knoepfe{width:100%}
  .fds-messung-knoepfe .btn{flex:1;text-align:center}
}
