/* ========== THEME (no JS) ========== */
/* Default Light; respects prefers-color-scheme; Cookie-override via [data-theme] */
:root{
  --bg:#f7f9fd; --panel:#ffffff; --text:#0b1220; --muted:#56607a;
  --pri:#3b7cff; --pri-2:#7ea3ff; --bd:#e3e8f5; --shadow:0 10px 30px rgba(20,40,80,.08);
  --glass:rgba(255,255,255,.7);
  --heading:#16315f;
  --header-h:72px;
}
@media (prefers-color-scheme: dark){
  :root{
    --bg:#0b1220; --panel:#121a2b; --text:#e9eefc; --muted:#a8b2c7;
    --pri:#5b8cff; --pri-2:#82a6ff; --bd:#23304d; --shadow:0 10px 30px rgba(0,0,0,.25);
    --glass:rgba(11,18,32,.55);
    --heading:#e9eefc;
  }
}
html[data-theme="light"]{
  --bg:#f7f9fd; --panel:#ffffff; --text:#0b1220; --muted:#56607a;
  --pri:#3b7cff; --pri-2:#7ea3ff; --bd:#e3e8f5; --shadow:0 10px 30px rgba(20,40,80,.08);
  --glass:rgba(255,255,255,.7);
  --heading:#16315f;
}
html[data-theme="dark"]{
  --bg:#0b1220; --panel:#121a2b; --text:#e9eefc; --muted:#a8b2c7;
  --pri:#5b8cff; --pri-2:#82a6ff; --bd:#23304d; --shadow:0 10px 30px rgba(0,0,0,.25);
  --glass:rgba(11,18,32,.55);
  --heading:#e9eefc;
}

/* ========== RESET ========== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.55;
  background:var(--bg); color:var(--text);
  padding-top:var(--header-h);
  transition: background .25s ease, color .25s ease;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{line-height:1.12;letter-spacing:-.03em;color:var(--heading)}
p{margin:0}

/* ========== BUTTONS ========== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  padding:11px 17px;border-radius:14px;border:1px solid var(--bd);
  box-shadow:var(--shadow);transition:transform .05s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  font-weight:700;
}
.btn:active{transform:translateY(1px)}
.btn.primary{background:var(--pri);border-color:transparent;color:#fff}
.btn.ghost{background:rgba(255,255,255,.58)}
.btn.icon{width:42px;height:42px;padding:0;font-size:18px}
.btn.small{padding:6px 10px;border-radius:12px;font-size:.9rem}
.btn.full{width:100%}
.btn.xl{padding:14px 22px;font-size:1rem}
html[data-theme="dark"] .btn.ghost{
  background:rgba(26,38,61,.96);
  border-color:rgba(103,126,173,.42);
  color:#eef3ff;
}
html[data-theme="dark"] .btn.ghost:hover{
  background:rgba(34,48,77,.98);
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .btn.ghost{
    background:rgba(26,38,61,.96);
    border-color:rgba(103,126,173,.42);
    color:#eef3ff;
  }
  html:not([data-theme]) .btn.ghost:hover{
    background:rgba(34,48,77,.98);
  }
}

/* ========== HEADER ========== */
.nav{
  position:fixed;top:0;z-index:50;
  display:flex;gap:24px;align-items:center;justify-content:space-between;
  left:0;
  right:0;
  width:100%;
  margin:0;
  min-height:var(--header-h);
  padding:0 28px;background:var(--glass);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--bd);
  border-radius:0;
}
.brand{
  font-weight:800;letter-spacing:.2px;display:flex;align-items:center;gap:10px;
  font-size:1.02rem;
}
.logo-emoji{filter:saturate(120%);font-size:1.2rem}
.badge{
  background:var(--pri-2); color:#fff; border-radius:999px; padding:2px 8px;
  font-size:.72rem; margin-left:6px
}
nav{display:flex;gap:24px;align-items:center}
.nav a{opacity:.92;font-weight:650;font-size:1.02rem}
.nav a:hover{opacity:1}
.nav > a{
  padding:8px 2px;
  line-height:1;
}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-actions .btn{
  min-height:50px;
}
.nav-actions .btn.icon,
.nav-actions .btn.small{
  width:50px;
  height:50px;
  min-height:50px;
  padding:0;
}
.theme-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px;
  border:1px solid var(--bd);
  border-radius:999px;
  background:rgba(255,255,255,.58);
  box-shadow:var(--shadow);
}
.theme-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:999px;
  color:var(--text);
  opacity:.78;
  transition:background .2s ease, color .2s ease, opacity .2s ease, transform .05s ease;
}
.theme-pill:hover{opacity:1}
.theme-pill:active{transform:translateY(1px)}
.theme-pill.active{
  background:var(--pri);
  color:#fff;
  opacity:1;
}

/* ========== LANG DROPDOWN (CSS-only) ========== */
.lang-menu{position:relative}
.lang-menu .lang-list{
  position:absolute; right:0; top:120%;
  display:none; min-width:200px; background:var(--panel);
  border:1px solid var(--bd); border-radius:12px; padding:6px; box-shadow:var(--shadow)
}
.lang-menu:hover .lang-list, .lang-menu:focus-within .lang-list{display:block}
.lang-list a{
  display:block; padding:8px 10px; border-radius:8px; color:var(--text)
}
.lang-list a:hover{background:rgba(127,143,255,.12)}
.lang-list a.active{font-weight:700}

/* ========== LAYOUT ========== */
main{max-width:1180px;margin:0 auto;padding:0 24px 64px}
.footer-content{max-width:1180px;margin:0 auto;padding:0 24px 64px}
#pricing,
#how-translate-title{
  scroll-margin-top:calc(var(--header-h) + 18px);
}

/* PROMO BANNER */
.promo-banner{
  padding:24px 0 10px;
}
.promo-banner img{
  width:100%;
  height:auto;
  border:1px solid rgba(111,136,191,.18);
  border-radius:22px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
  background:var(--panel);
}
.promo-banner-plans{
  padding:18px 0 24px;
}

/* HERO */
.hero{
  display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:44px;align-items:center;padding:56px 0 42px
}
.hero h1{
  font-size:clamp(2.15rem, 3.6vw, 3.35rem);
  margin:0 0 14px;
  max-width:13ch;
}
.hero .sub{
  color:var(--muted);
  margin:0 0 20px;
  max-width:60ch;
  font-size:1.1rem;
}
.hero .hero-note{
  margin-top:-8px;
  margin-bottom:18px;
  max-width:64ch;
  font-size:1.03rem;
}
.hero .bullets{
  list-style:none;padding:0;margin:18px 0 0;display:grid;gap:8px;color:var(--muted);
  font-size:1rem;
}
.hero-ctas{display:flex;flex-direction:column;align-items:flex-start}
.hero-shot{
  border:1px solid rgba(255,255,255,.7);background:rgba(255,255,255,.55);padding:8px;
  border-radius:22px;box-shadow:0 20px 50px rgba(31,54,110,.14)
}
.hero-shot img{width:100%;display:block;border-radius:12px}
.why-use-block{
  margin:8px 0 12px;
  padding:22px 24px 24px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,249,255,.82));
  border:1px solid rgba(111,136,191,.18);
  border-radius:28px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.why-use-head{
  margin:0 0 12px;
}
.why-use-head h2{
  margin:0 0 10px;
  font-size:clamp(1.58rem, 2.45vw, 2.12rem);
}
.pricing-example-block,
.testimonials-block{
  margin-top:22px;
  padding:22px 24px 24px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,249,255,.82));
  border:1px solid rgba(111,136,191,.18);
  border-radius:28px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.pricing-example-head,
.testimonials-head{
  margin:0 0 12px;
}
.pricing-example-head h2,
.testimonials-head h2{
  margin:0;
  font-size:clamp(1.58rem, 2.45vw, 2.12rem);
}

/* PRICING */
.pricing{padding:8px 0 18px}
.pricing h2{
  font-size:clamp(1.68rem, 2.6vw, 2.24rem);
  margin:0 0 12px;
}
.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px}
.card.price,
.how-it-works figure,
.pricing-example,
.how-intro p{
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,250,255,.86));
  border:1px solid rgba(111,136,191,.18);
  border-radius:24px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.card.price{
  padding:24px;
  max-width:none;
}
.card.price h3{margin:0 0 14px;font-size:1.8rem;line-height:1.2}
.card.price .muted{color:var(--muted);margin:0 0 18px;font-size:1.28rem;line-height:1.58}
.card.price .muted strong{color:var(--heading)}
.tagline{display:flex;align-items:flex-end;gap:8px;margin:8px 0 20px}
.price{font-size:2.25rem;font-weight:800;line-height:1}
.per{color:var(--muted);margin-bottom:4px;font-size:1.15rem;font-weight:700}
.fine{
  color:var(--muted);
  font-size:1rem;
  line-height:1.55;
}
.card.price .btn{
  min-height:58px;
  font-size:1.12rem;
  font-weight:800;
  border-radius:14px;
}
.price-note{
  margin:8px 2px 0;
  font-size:.76rem;
  line-height:1.35;
  color:var(--muted);
  opacity:.9;
  font-weight:400;
}
html[data-theme="dark"] .price-note{
  color:#c7d2e6;
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .price-note{
    color:#c7d2e6;
  }
}
.pricing-example{
  margin-top:0;
  padding:0;
  background:none;
  border:none;
  border-left:0;
  border-radius:0;
  box-shadow:none;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.76;
}
.pricing-example strong{
  color:var(--heading);
}
html[data-theme="dark"] .fine{
  color:#c7d2e6;
}
html[data-theme="dark"] .pricing-example{
  background:none;
  border:none;
  box-shadow:none;
}
html[data-theme="dark"] .pricing-example-block,
html[data-theme="dark"] .testimonials-block{
  background:linear-gradient(180deg, rgba(20,30,49,.96), rgba(16,24,41,.94));
  border-color:rgba(96,133,214,.28);
  color:#d8e2f3;
  box-shadow:0 24px 46px rgba(0,0,0,.28);
}
html[data-theme="dark"] .pricing-example strong{
  color:#f4f7ff;
}
html[data-theme="dark"] .pricing-example-head h2,
html[data-theme="dark"] .testimonials-head h2{
  color:#f3f6ff;
}
html[data-theme="dark"] .home-page main h1,
html[data-theme="dark"] .home-page main h2,
html[data-theme="dark"] .home-page main h3,
html[data-theme="dark"] .faq-page main h1,
html[data-theme="dark"] .faq-page main h2,
html[data-theme="dark"] .faq-page main h3,
html[data-theme="dark"] .imprint-page main h1,
html[data-theme="dark"] .imprint-page main h2,
html[data-theme="dark"] .imprint-page main h3,
html[data-theme="dark"] .footer-content h2,
html[data-theme="dark"] .foot .brandline strong{
  background:linear-gradient(180deg, #f4f8ff 0%, #d8e8ff 52%, #bfd6ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .fine{
    color:#c7d2e6;
  }
  html:not([data-theme]) .pricing-example{
    background:none;
    border:none;
    box-shadow:none;
  }
  html:not([data-theme]) .pricing-example-block,
  html:not([data-theme]) .testimonials-block{
    background:linear-gradient(180deg, rgba(20,30,49,.96), rgba(16,24,41,.94));
    border-color:rgba(96,133,214,.28);
    color:#d8e2f3;
    box-shadow:0 24px 46px rgba(0,0,0,.28);
  }
  html:not([data-theme]) .pricing-example strong{
    color:#f4f7ff;
  }
  html:not([data-theme]) .pricing-example-head h2,
  html:not([data-theme]) .testimonials-head h2{
    color:#f3f6ff;
  }
  html:not([data-theme]) .home-page main h1,
  html:not([data-theme]) .home-page main h2,
  html:not([data-theme]) .home-page main h3,
  html:not([data-theme]) .faq-page main h1,
  html:not([data-theme]) .faq-page main h2,
  html:not([data-theme]) .faq-page main h3,
  html:not([data-theme]) .imprint-page main h1,
  html:not([data-theme]) .imprint-page main h2,
  html:not([data-theme]) .imprint-page main h3,
  html:not([data-theme]) .footer-content h2,
  html:not([data-theme]) .foot .brandline strong{
    background:linear-gradient(180deg, #f4f8ff 0%, #d8e8ff 52%, #bfd6ff 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
}

/* HOW */
.how{padding:28px 0 60px}
.how h2{
  font-size:clamp(1.55rem, 2.2vw, 2rem);
  margin:0 0 14px;
}
.steps{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;list-style:none;padding:0;margin:10px 0 18px
}
.steps li{
  background:var(--panel);border:1px solid var(--bd);border-radius:16px;
  padding:12px;text-align:center;box-shadow:var(--shadow)
}
.steps img{width:100%;height:180px;object-fit:cover;border-radius:10px;margin-bottom:8px}
.steps p{font-size:.98rem;color:var(--muted)}
.center{text-align:center}

/* ========== FOOTER (stylish, centered) ========== */
.foot{
  border-top:1px solid var(--bd);
  padding:28px 16px 36px;
  text-align:center;
  display:grid;
  gap:10px;
  color:var(--muted);
}
.foot .links a{
  color:var(--text);
  opacity:.85;
  padding:6px 10px;
  border-radius:10px;
  transition:opacity .2s, background .2s, transform .05s;
}
.foot .links a:hover{
  opacity:1;
  background:rgba(127,143,255,.12);
}
.foot .links a:active{ transform: translateY(1px); }
.foot .dot{ color:var(--muted); opacity:.7; }
.foot .brandline{
  display:inline-flex; align-items:center; gap:8px;
  justify-content:center;
  color:var(--text);
  opacity:.9;
}
.foot .legal{ display:block; margin-top:2px; }
/* Fix: Footer-Links wirklich zentrieren */
.foot .links{
  display:flex;         /* statt inline-flex */
  justify-content:center;
  align-items:center;
  width:100%;
  margin:0 auto;        /* Safety */
  text-align:center;
}
.foot .links a{ text-align:center; }
@media (max-width:520px){
  .foot .links{ flex-wrap:wrap; justify-content:center; }
}
/* ========== RESPONSIVE ========== */
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  nav{display:none} /* optional: Navigation bei Mobile vereinfachen */
  .steps{grid-template-columns:1fr}
  main{padding:0 18px 48px}
  .footer-content{padding:0 18px 48px}
  .promo-banner{padding:16px 0 8px}
  .promo-banner img{border-radius:16px}
  .hero{padding:34px 0 22px;gap:28px}
  .hero h1{max-width:none}
}
@media (max-width:680px){
  :root{
    --header-h:64px;
  }
  :root{
    --muted:#45597f;
  }
  .nav{
    gap:12px;
    min-height:52px;
    padding:0 14px;
    align-items:center;
  }
  .brand{
    font-size:1rem;
  }
  .nav-actions{
    gap:8px;
  }
  .nav-actions .btn{
    min-height:42px;
    height:42px;
    padding:8px 11px;
    font-size:.92rem;
  }
  .nav-actions .btn.small,
  .nav-actions .btn.icon{
    width:42px;
    height:42px;
    min-height:42px;
    padding:0;
  }
  .theme-switch{
    min-height:42px;
    height:42px;
    padding:3px;
  }
  .theme-pill{
    width:34px;
    height:34px;
    font-size:.95rem;
  }
  .hero h1{
    font-size:clamp(2.05rem, 7.4vw, 2.85rem);
    line-height:1.06;
    margin-bottom:16px;
  }
  .hero .sub{
    font-size:1.12rem;
    line-height:1.55;
    color:#4d6187;
  }
  .hero .bullets{
    gap:10px;
    font-size:1.1rem;
    color:#4d6187;
  }
  .hero .bullets li{
    line-height:1.45;
  }
  .imprint-grid{
    grid-template-columns:1fr !important;
  }
  html[data-theme="dark"] .hero .sub,
  html[data-theme="dark"] .hero .hero-note,
  html[data-theme="dark"] .hero .bullets,
  html[data-theme="dark"] .hero .bullets li{
    color:#dbe6fb;
  }
  @media (prefers-color-scheme: dark){
    html:not([data-theme]) .hero .sub,
    html:not([data-theme]) .hero .hero-note,
    html:not([data-theme]) .hero .bullets,
    html:not([data-theme]) .hero .bullets li{
      color:#dbe6fb;
    }
  }
  .btn.xl{
    font-size:1.06rem;
    min-height:56px;
  }
  .fine{
    font-size:1.02rem;
  }
}
@media (max-width:520px){
  .foot .links{ flex-wrap:wrap; gap:8px; }
  .foot .dot{ display:none; }
}
:root{
  /* Light Defaults */
  --bg:#f7f9fd; --panel:#ffffff; --text:#0b1220; --muted:#56607a;
  --pri:#3b7cff; --pri-2:#7ea3ff; --bd:#e3e8f5; --shadow:0 10px 30px rgba(20,40,80,.08);
  --glass:rgba(255,255,255,.7);
}
@media (prefers-color-scheme: dark){
  :root{
    /* Dark Auto (ohne Cookie) */
    --bg:#0b1220; --panel:#121a2b; --text:#e9eefc; --muted:#a8b2c7;
    --pri:#5b8cff; --pri-2:#82a6ff; --bd:#23304d; --shadow:0 10px 30px rgba(0,0,0,.25);
    --glass:rgba(11,18,32,.55);
  }
}


.hero.compact {padding: 32px 0}
.imprint-shell{
  padding:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,249,255,.82));
  border:1px solid rgba(111,136,191,.18);
  border-radius:28px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.faq-shell{
  max-width:1180px;
  margin:0 auto;
  padding:22px 24px 24px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,249,255,.82));
  border:1px solid rgba(111,136,191,.18);
  border-radius:28px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.contact-shell{
  max-width:1180px;
  margin:0 auto;
  padding:22px 24px 24px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,249,255,.82));
  border:1px solid rgba(111,136,191,.18);
  border-radius:28px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.pp-shell{
  max-width:1180px;
  margin:0 auto;
  padding:22px 24px 24px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,249,255,.82));
  border:1px solid rgba(111,136,191,.18);
  border-radius:28px;
  box-shadow:0 20px 44px rgba(31,54,110,.10);
}
.content-grid .card h3 {margin: 0 0 8px}
.kv p {margin: 0 0 8px}
.stack .muted {color: var(--muted)}
.faq-list {margin-top: 8px}
.faq-list details.faq summary,
.faq-grid summary{
  font-size:1.14rem;
  line-height:1.4;
}
.faq-list details.faq summary::marker,
.faq-grid summary::marker{
  color:var(--heading);
}


/* Cookie-Override -> html[data-theme="light"|"dark"] */
html[data-theme="light"]{ /* gleiche Werte wie :root (light) */ }
html[data-theme="dark"]{  /* gleiche Werte wie @media dark */   }

.how-it-works .steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
  list-style:none;
  margin:0 0 10px;
  padding:0;
}
.how-intro{
  margin:0 0 14px;
}
.how-it-works > h2{
  margin:0 0 18px;
  font-size:clamp(1.72rem, 2.7vw, 2.34rem);
}
.how-intro p{
  max-width:none;
  padding:0;
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
  color:var(--muted);
  font-size:1.1rem;
  line-height:1.8;
}
.how-it-works .steps li{
  background:transparent;
  border:none;
  padding:0;
  box-shadow:none;
}
.how-it-works figure{
  margin:0;
  min-height:260px;
  height:100%;
  padding:24px;
}
.how-it-works img{
  display:none;
}
.how-it-works figcaption{
  padding:0;
}
.how-it-works h3{
  margin:0 0 12px;
  font-size:1.56rem;
  line-height:1.22;
  text-align:left;
}
.how-it-works figcaption p{
  font-size:1.14rem;
  line-height:1.8;
  color:var(--muted);
  text-align:left;
}
html[data-theme="dark"] .how-it-works figure{
  background:linear-gradient(180deg, rgba(20,30,49,.96), rgba(16,24,41,.94));
}
html[data-theme="dark"] .how-it-works h3{
  color:#f3f6ff;
}
html[data-theme="dark"] .how-it-works figcaption p{
  color:#c8d4e8;
}
html[data-theme="dark"] .card.price,
html[data-theme="dark"] .how-it-works figure,
html[data-theme="dark"] .pricing-example,
html[data-theme="dark"] .why-use-block,
html[data-theme="dark"] .imprint-shell,
html[data-theme="dark"] .faq-shell,
html[data-theme="dark"] .contact-shell,
html[data-theme="dark"] .pp-shell{
  background:linear-gradient(180deg, rgba(20,30,49,.96), rgba(16,24,41,.94));
  border-color:rgba(77,101,152,.45);
  box-shadow:0 24px 46px rgba(0,0,0,.28);
}
html[data-theme="dark"] .why-use-head h2{
  color:#f3f6ff;
}
html[data-theme="dark"] .faq-list details.faq summary,
html[data-theme="dark"] .faq-grid summary{
  background:linear-gradient(180deg, #f4f8ff 0%, #d8e8ff 52%, #bfd6ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
html[data-theme="dark"] .faq-list details.faq summary::marker,
html[data-theme="dark"] .faq-grid summary::marker{
  color:#d8e8ff;
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .card.price,
  html:not([data-theme]) .how-it-works figure,
  html:not([data-theme]) .pricing-example,
  html:not([data-theme]) .why-use-block,
  html:not([data-theme]) .imprint-shell,
  html:not([data-theme]) .faq-shell,
  html:not([data-theme]) .contact-shell,
  html:not([data-theme]) .pp-shell{
    background:linear-gradient(180deg, rgba(20,30,49,.96), rgba(16,24,41,.94));
    border-color:rgba(77,101,152,.45);
    box-shadow:0 24px 46px rgba(0,0,0,.28);
  }
  html:not([data-theme]) .why-use-head h2{
    color:#f3f6ff;
  }
  html:not([data-theme]) .faq-list details.faq summary,
  html:not([data-theme]) .faq-grid summary{
    background:linear-gradient(180deg, #f4f8ff 0%, #d8e8ff 52%, #bfd6ff 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  html:not([data-theme]) .faq-list details.faq summary::marker,
  html:not([data-theme]) .faq-grid summary::marker{
    color:#d8e8ff;
  }
  html:not([data-theme]) .how-it-works h3{
    color:#f3f6ff;
  }
  html:not([data-theme]) .how-it-works figcaption p{
    color:#c8d4e8;
  }
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card.quote blockquote { margin: 0 0 8px; line-height: 1.45; }
.card.quote p { margin: 0; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* Speech-bubble cards */
.card.quote.bubble {
  position: relative;
  background: color-mix(in srgb, var(--panel) 88%, #fff 12%);
  border: 1px solid color-mix(in srgb, var(--bd) 70%, #fff 30%);
  border-radius: 16px;
  padding: 16px 16px 18px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* bubble tail */
.card.quote.bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 16px; height: 16px;
  background: inherit;
  border-left: inherit; border-bottom: inherit;
  transform: rotate(45deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.02);
}

/* content styling */
.card.quote blockquote { margin: 0 0 8px; line-height: 1.5; }
.card.quote p { margin: 0; font-size: .98rem; }
.card.quote footer { font-size: .85rem; }

/* subtle quote mark */
.card.quote.bubble blockquote p::before {
  content: "“";
  margin-right: 2px;
  opacity: .6;
}
.card.quote.bubble blockquote p::after {
  content: "”";
  margin-left: 2px;
  opacity: .6;
}

/* hover */
.card.quote.bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  border-color: color-mix(in srgb, var(--bd) 50%, var(--accent, #6c5ce7) 50%);
}

/* dark mode tweak (if your theme uses data-theme) */
html[data-theme="dark"] .card.quote.bubble {
  background: color-mix(in srgb, var(--panel) 92%, #000 8%);
  border-color: color-mix(in srgb, var(--bd) 80%, #000 20%);
}
html[data-theme="dark"] .card.quote blockquote p{
  color:#edf2ff;
}
html[data-theme="dark"] .card.quote footer,
html[data-theme="dark"] .card.quote .muted{
  color:#c8d4e8;
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .card.quote blockquote p{
    color:#edf2ff;
  }
  html:not([data-theme]) .card.quote footer,
  html:not([data-theme]) .card.quote .muted{
    color:#c8d4e8;
  }
}
html[data-theme="dark"] .contact-shell .input,
html[data-theme="dark"] .contact-shell textarea.input{
  color:#eef3ff;
  background:#182338;
  border-color:#314468;
}
html[data-theme="dark"] .contact-shell .input::placeholder,
html[data-theme="dark"] .contact-shell textarea.input::placeholder{
  color:#b9c7e3;
  opacity:1;
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .contact-shell .input,
  html:not([data-theme]) .contact-shell textarea.input{
    color:#eef3ff;
    background:#182338;
    border-color:#314468;
  }
  html:not([data-theme]) .contact-shell .input::placeholder,
  html:not([data-theme]) .contact-shell textarea.input::placeholder{
    color:#b9c7e3;
    opacity:1;
  }
}

/* === SITE GRADIENT (bullet-proof, last in file) ======================= */
/* === FINAL GRADIENT PATCH (must be last) =============================== */
body{ background:transparent !important; }
/* LIGHT */
.site-bg{
  position:fixed; inset:0; z-index:-1; pointer-events:none;
  background:
    /* Center burst */
    radial-gradient(1000px 600px at 50% 50%, rgba(99,102,241,.32) 0%, rgba(99,102,241,.18) 28%, rgba(99,102,241,0) 60%),
    /* Left push */
    radial-gradient(1000px 600px at 0% 50%, rgba(14,165,233,.26) 12%, rgba(14,165,233,.12) 34%, rgba(14,165,233,0) 62%),
    /* Right push */
    radial-gradient(1000px 600px at 100% 50%, rgba(253,224,71,.22) 12%, rgba(253,224,71,.10) 34%, rgba(253,224,71,0) 62%),
    linear-gradient(#f7f9fd,#f7f9fd) !important;
  background-attachment:fixed; background-repeat:no-repeat; background-size:cover;
}

/* DARK (data-theme) */
html[data-theme="dark"] .site-bg{
  background:
    radial-gradient(1000px 600px at 50% 50%, rgba(59,130,246,.34) 0%, rgba(59,130,246,.20) 28%, rgba(59,130,246,0) 60%),
    radial-gradient(1000px 600px at 0% 50%, rgba(20,184,166,.28) 12%, rgba(20,184,166,.14) 34%, rgba(20,184,166,0) 62%),
    radial-gradient(1000px 600px at 100% 50%, rgba(234,179,8,.22) 12%, rgba(234,179,8,.10) 34%, rgba(234,179,8,0) 62%),
    linear-gradient(#0b1220,#0b1220) !important;
}

/* DARK (System) */
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .site-bg{
    background:
      radial-gradient(1000px 600px at 50% 50%, rgba(59,130,246,.34) 0%, rgba(59,130,246,.20) 28%, rgba(59,130,246,0) 60%),
      radial-gradient(1000px 600px at 0% 50%, rgba(20,184,166,.28) 12%, rgba(20,184,166,.14) 34%, rgba(20,184,166,0) 62%),
      radial-gradient(1000px 600px at 100% 50%, rgba(234,179,8,.22) 12%, rgba(234,179,8,.10) 34%, rgba(234,179,8,0) 62%),
      linear-gradient(#0b1220,#0b1220) !important;
  }
}
/* Scrollbare Sprachliste */
/* === LANGUAGE MENU (scrollable + theming) =============================== */
/* Container */
.lang-menu{ position:relative; }
.lang-menu .lang-list{
  position:absolute; right:0; top:120%;
  display:none; min-width:220px;
  background: var(--panel); /* fallback - wird unten von --lang-bg ueberschrieben */
  border:1px solid var(--bd); border-radius:12px; padding:6px; box-shadow:var(--shadow);
  /* Scroll */
  max-height: min(60vh, 28rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  /* Theme vars (Light default) */
  --lang-bg: #ffffff;
  --lang-fg: #0b1220;
  --lang-hover: rgba(0,0,0,.06);
  --lang-active: #3b82f6;
  --lang-scroll: #c7c7c7;

  background: var(--lang-bg);
  color: var(--lang-fg);
}
.lang-menu:hover .lang-list,
.lang-menu:focus-within .lang-list{ display:block; }

/* Items (explizit inkl. visited, um Browser-Defaults zu brechen) */
.lang-list a,
.lang-list a:link,
.lang-list a:visited{
  display:block;
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
  color: var(--lang-fg) !important;   /* ueberstimmt globale a-Farben */
}
.lang-list a:hover,
.lang-list a:focus-visible{
  background: var(--lang-hover);
  outline: none;
}
.lang-list a.active{
  background: var(--lang-active);
  color:#fff !important;
  -webkit-text-fill-color:#fff;
  font-weight:700;
}

/* dezente Scrollbar */
.lang-list{ scrollbar-width: thin; scrollbar-color: var(--lang-scroll) transparent; }
.lang-list::-webkit-scrollbar{ width:8px; }
.lang-list::-webkit-scrollbar-thumb{ background: var(--lang-scroll); border-radius:8px; }
.lang-list::-webkit-scrollbar-track{ background: transparent; }

/* DARK MODE - System */
@media (prefers-color-scheme: dark){
  /* nur greifen, wenn kein data-theme gesetzt ist */
  html:not([data-theme]) .lang-list{
    --lang-bg: #121a2b;
    --lang-fg: #e9eefc;
    --lang-hover: rgba(255,255,255,.08);
    --lang-active: #5b8cff;
    --lang-scroll: #5b6b7a;
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
  }
}

/* DARK MODE - Cookie-Override via data-theme */
html[data-theme="dark"] .lang-list{
  --lang-bg: #121a2b;
  --lang-fg: #e9eefc;
  --lang-hover: rgba(255,255,255,.08);
  --lang-active: #5b8cff;
  --lang-scroll: #5b6b7a;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
html[data-theme="dark"] .theme-switch{
  background:rgba(18,26,43,.9);
  border-color:rgba(103,126,173,.38);
}
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .theme-switch{
    background:rgba(18,26,43,.9);
    border-color:rgba(103,126,173,.38);
  }
}

/* Notfall: falls eine sehr spezifische Regel a-Farbe ueberschreibt */
.lang-list.lang-list a{ color: var(--lang-fg) !important; }
