:root{
  --gold:#CEAF94;      /* Seitenhintergrund */
  --violett:#681088;   /* Akzent */
  --white:#FFFFFF;     /* Boxen/Buttons */
  --graphit:#121212;   /* Text */
  --muted:#4A4A4A;     /* Sekundärtext */
  --line:#E3D7CB;      /* feine Linien auf Gold */
  --shadow:0 8px 18px rgba(0,0,0,.08);
}

/* Reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  color:var(--graphit);
  background:var(--gold);
  letter-spacing:0.015em;              /* Grund-Letterspacing */
}

/* Container */
.wrap{max-width:1100px;margin:0 auto;padding:28px;padding-bottom:48px}

/* Top Bar Navigation */
.top-bar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  background-color:#681088; /* Violett */
  color:#ffffff;
  z-index:999;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.top-bar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.main-nav{
  display:flex;
  gap:20px;
  flex:1;
  justify-content:flex-start;
}
.main-nav a{
  color:#ffffff;
  text-decoration:none;
  font-size:0.95rem;
  padding:8px 0;
  transition:all .2s ease;
}
.main-nav a:hover{
  text-decoration:underline;
}
.top-bar .menu-toggle{
  display:flex;
  flex-direction:column;
  background:none;
  border:none;
  padding:8px;
  cursor:pointer;
  margin-left:auto;
}
.top-bar .menu-toggle span{
  display:block;
  width:24px;
  height:3px;
  margin:3px 0;
  background-color:#ffffff;
  border-radius:2px;
}
body{padding-top:56px}

/* Responsive: auf kleineren Screens Navigation einklappen */
@media (max-width:768px){
  .main-nav{
    position:absolute;
    top:56px;
    right:0;
    left:0;
    background-color:#681088;
    padding:12px 20px;
    flex-direction:column;
    gap:12px;
    display:none;
  }
  .main-nav.open{
    display:flex;
  }
}

/* Hero Header (unterhalb der Top-Bar) */
.hero-header{
  display:flex;
  align-items:center;
  gap:24px;
  margin-bottom:20px;
}
.hero-logo{
  width:180px;
  height:180px;
  background:url('/static/logo.png') center/contain no-repeat;
  flex-shrink:0;
}
.hero-title{
  font-weight:900;
  font-size:48px;
  color:var(--violett);
  line-height:1;
}
.hero-tagline{
  font-size:18px;
  color:var(--violett);
  font-weight:700;
  margin-top:8px;
}
@media (max-width:600px){
  .hero-header{flex-direction:column;text-align:center}
  .hero-title{font-size:36px}
}

/* Legacy Header (falls noch genutzt) */
header:not(.top-bar){display:flex;align-items:center;justify-content:space-between;margin:16px 0 12px}
.brand:not(.top-bar .brand){display:flex;align-items:center;gap:24px;text-decoration:none;color:var(--graphit)}
.brand .logo{width:200px;height:200px;background:url('/static/logo.png') center/contain no-repeat;flex-shrink:0}
.brand .word{
  font-weight:900; letter-spacing:.015em;
  font-size:64px; line-height:1; color:var(--violett);
  margin-right:24px;
}
.tagline{
  font-size:18px; color:var(--violett); 
  font-weight:700; letter-spacing:.02em; line-height:1;
  margin-top:6px;
}

/* Violette Trennlinie */
.hr{height:2px;background:var(--violett);opacity:.9;margin:12px 0 24px;border-radius:2px}

/* Roter Slogan-Banner */
.red-banner{
  color:#D32F2F;
  text-align:center;
  font-weight:700;
  font-size:21px;
  letter-spacing:.02em;
  line-height:1.3;
  margin:12px 0;
  padding:0;
}

/* Hamburger-Menü (Legacy - nur für Slide-Menu) */

/* Slide-out Menü */
.slide-menu{
  position:fixed;
  top:0;
  right:-300px;
  width:280px;
  height:100%;
  background:var(--white);
  box-shadow:-4px 0 16px rgba(0,0,0,.15);
  z-index:999;
  transition:right .3s ease;
  padding:80px 20px 20px;
  overflow-y:auto;
}
.slide-menu.active{right:0}
.slide-menu a{
  display:block;
  padding:14px 16px;
  color:var(--graphit);
  text-decoration:none;
  font-weight:600;
  border-radius:8px;
  margin-bottom:6px;
  transition:background .2s ease;
}
.slide-menu a:hover{background:var(--gold)}
.slide-menu .logout-btn{
  margin-top:20px;
  padding:12px 16px;
  background:#D32F2F;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  width:100%;
  text-align:center;
}
.slide-menu .logout-btn:hover{background:#B71C1C}

/* Browser-Navigation */
.browser-nav{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  gap:8px;
  z-index:100;
}
.nav-btn{
  width:44px;
  height:44px;
  background:var(--violett);
  border:none;
  border-radius:50%;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(104,16,136,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease;
}
.nav-btn:hover{transform:scale(1.05)}
.nav-btn:active{transform:scale(0.95)}

/* Karten / Panels */
.card,.panel{
  background:var(--white);
  border:2px solid #DCCAB8;
  border-radius:16px;
  padding:20px;
  box-shadow:var(--shadow);
  margin-bottom:18px;
}
.panel.compact{
  padding:16px;
  max-width:400px;
  margin-left:auto;
  margin-right:auto;
}
.panel.record{
  padding:16px;
  max-width:400px;
  margin-left:auto;
  margin-right:auto;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

/* Typo */
.h2{font-size:22px;font-weight:800;margin:0 0 8px;letter-spacing:.02em}
.lead{color:var(--graphit);opacity:.9;margin:0 0 10px}

/* Section Title */
.section-title{color:var(--violett);font-weight:900;margin:10px 0 8px;letter-spacing:.02em}

/* Counter & Rahmen-Optik wie gewünscht */
.counter{
  display:flex; align-items:center; justify-content:center;
  border:3px solid var(--violett);
  border-radius:14px; padding:14px 16px;
  color:var(--violett); font-weight:900; letter-spacing:.03em;
  background:#fff;
  margin-top:14px;
  font-size:16px;
  max-width:400px;
  margin-left:auto;
  margin-right:auto;
}

/* Toggle (Härtegrad) */
.toggle{display:flex;gap:12px}
.toggle .opt{
  flex:1; text-align:center; padding:12px 14px; border-radius:12px;
  border:2px solid #DCCAB8; background:#fff; color:var(--graphit); cursor:pointer;
  font-weight:700; letter-spacing:.02em;
}
.toggle .opt.active{
  border-color:var(--violett); background:var(--violett); color:#fff;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 18px; border-radius:12px; border:2px solid var(--violett);
  background:#fff; color:var(--violett);
  font-weight:900; letter-spacing:.035em; cursor:pointer; user-select:none;
  transition:transform .05s ease, filter .15s ease;
  font-size:16px;
}
.btn:active{transform:translateY(1px)}
.btn:hover{filter:brightness(1.02)}
.btn-primary{background:var(--violett); color:#fff}
.btn-ghost{background:transparent; color:var(--violett)}

/* Stopp-Icon (klassisch rot) */
.stop-icon{
  display:inline-block;
  width:14px;
  height:14px;
  background:#D32F2F;
  border-radius:2px;
}

/* Aufnahmebereich: vertikal, mittig, kompakter Primary */
.record-stack{
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
#btnRecord{
  min-width:240px;
  justify-content:center;
}
#btnStop{
  min-width:220px;
}

/* Inputs */
input,select,textarea{
  width:100%; padding:12px 12px; border-radius:10px;
  border:2px solid #E7DBC9; background:#FFF; color:var(--graphit); outline:none;
  letter-spacing:.02em;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--violett); box-shadow:0 0 0 3px rgba(104,16,136,.18);
}
textarea{
  min-height:140px;
}

/* Grids */
.row{display:grid;gap:16px}
.row.cols-1{grid-template-columns:1fr}
.row.cols-3{grid-template-columns:repeat(3,1fr)}
.row.cols-2{grid-template-columns:repeat(2,1fr)}
@media (max-width:900px){.row.cols-3,.row.cols-2{grid-template-columns:1fr}}

/* Recording indicator */
#recording-indicator{
  display:none;
  margin-top:16px;
  color:#D32F2F;
  font-weight:700;
  text-align:center;
}
.pulse{
  display:inline-block;
  width:10px;
  height:10px;
  background:#D32F2F;
  border-radius:50%;
  margin-right:8px;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.5;transform:scale(1.2)}
}

/* Error and loading */
.error-box{
  display:none;
  background:#D32F2F;
  color:#fff;
  padding:16px;
  border-radius:10px;
  margin-bottom:20px;
  font-weight:700;
  text-align:center;
}
.loading-box{
  display:none;
  background:var(--white);
  border:2px solid var(--violett);
  border-radius:10px;
  padding:20px;
  margin-bottom:20px;
  text-align:center;
}
.loading-box span{color:var(--violett);font-weight:700}
.spinner{
  width:30px;
  height:30px;
  border:4px solid #E3D7CB;
  border-top-color:var(--violett);
  border-radius:50%;
  margin:0 auto 12px;
  animation:spin 1s linear infinite;
}
@keyframes spin{
  to{transform:rotate(360deg)}
}

/* Spacing */
.mt-28{margin-top:28px}
.mt-14{margin-top:14px}
.mt-10{margin-top:10px}

/* Utility */
.hidden{display:none!important}
audio{display:none}

/* Tag / Badge */
.tag{
  display:inline-block;
  padding:6px 12px;
  background:var(--violett);
  color:#fff;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
}

/* Breadcrumb */
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  margin:12px 0 20px;
  font-size:14px;
  color:var(--muted);
}
.breadcrumb a{
  color:var(--violett);
  text-decoration:none;
  font-weight:600;
}
.breadcrumb a:hover{
  text-decoration:underline;
}
.breadcrumb span.current{
  color:var(--graphit);
  font-weight:700;
}

/* Sticky CTA (nur Demo) */
.sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:var(--white);
  border-top:3px solid var(--violett);
  box-shadow:0 -4px 12px rgba(0,0,0,.15);
  padding:12px 20px;
  z-index:999;
}
.sticky-cta-content{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.sticky-cta-text{
  font-weight:700;
  color:var(--violett);
  font-size:15px;
  letter-spacing:.02em;
}
.sticky-cta .btn{
  padding:10px 16px;
  font-size:14px;
}

/* Footer */
footer{
  margin-top:48px;
  padding:20px 0;
  text-align:center;
  color:var(--graphit);
  font-size:14px;
  opacity:.85;
}
.footer-nav{
  margin-bottom:12px;
}
.footer-nav a{
  color:var(--violett);
  text-decoration:none;
  font-weight:600;
}
.footer-nav a:hover{
  text-decoration:underline;
}
.footer-nav span{
  margin:0 8px;
  color:var(--graphit);
  opacity:.5;
}
.footer-info{
  font-size:13px;
  line-height:1.6;
}
.footer-info p{
  margin:0;
}

/* — Hero Karte gross & klar — */
.hero { padding:28px 28px 22px; border-radius:18px; box-shadow:0 12px 28px rgba(0,0,0,.12) }
.hero .h1 { font-size:34px; font-weight:900; margin:0 0 8px; letter-spacing:.015em; color:var(--graphit) }
.hero .lead { font-size:16px; opacity:.95 }

/* — Nutzen-Karten enger & lesbar — */
.benefit { display:flex; align-items:flex-start; gap:12px }
.benefit .icon { font-size:18px; line-height:1.2 }

/* — CTA-Zeile — */
.cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap }
.cta-row .btn { min-width:240px }

/* — Schritte — */
.step { display:flex; gap:12px; align-items:flex-start }
.step .badge { width:28px; height:28px; border-radius:999px; background:var(--violett); color:#fff; font-weight:900; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0 }

/* — Sektionen — */
.section-title { font-weight:900; font-size:22px; margin:6px 0 10px; color:var(--graphit) }

/* — Preisblock (neutral bis final) — */
.price-box .amount { font-size:36px; font-weight:900; color:var(--violett); margin:0 }
.price-box .note { opacity:.9 }

/* — Buttons breiter & konsistent — */
.btn.wfull { width:100% }
.h1{font-size:32px;font-weight:900;margin:0 0 12px;letter-spacing:.015em}

/* Mobile Feinschnitt */
@media (max-width:720px){
  .wrap{padding:16px;padding-bottom:32px}
  header{margin:8px 0 12px}
  .brand{gap:12px}
  .brand .logo{width:60px;height:60px}
  .brand .word{font-size:28px;margin-right:0}
  .tagline{font-size:13px;margin-top:3px}
  .hr{margin:8px 0 16px}
  .card,.panel{padding:14px;margin-bottom:14px}
  .panel.record,.panel.compact{padding:12px}
  .h1{font-size:24px !important}
  .hero .h1{font-size:26px !important}
  .h2{font-size:18px}
  .section-title{font-size:16px;margin:8px 0 6px}
  .lead{font-size:14px}
  .btn{padding:10px 14px;font-size:14px}
  #btnRecord{min-width:180px}
  .cta-row{flex-direction:column;align-items:center}
  .cta-row .btn{width:100%;max-width:320px}
  .counter{font-size:14px;padding:10px 12px}
  .toggle .opt{padding:10px 12px;font-size:14px}
  .price-box .amount{font-size:28px}
}

/* FAQ */
.faq-hero { padding:24px; border-radius:18px; box-shadow:0 12px 28px rgba(0,0,0,.12) }
.faq-search { display:flex; gap:10px; margin-top:12px }
.faq-search input{ flex:1 }
.faq-list{ display:grid; gap:12px; margin-top:18px }
.faq-item{ background:var(--white); border:2px solid #DCCAB8; border-radius:14px; }
.faq-q{ width:100%; text-align:left; padding:14px 16px; font-weight:800; color:var(--graphit);
        border:none; background:transparent; cursor:pointer; display:flex; justify-content:space-between; align-items:center }
.faq-q .chev{ transition:transform .15s ease }
.faq-a{ padding:0 16px 16px; display:none }
.faq-item.open .faq-a{ display:block }
.faq-item.open .chev{ transform:rotate(90deg) }
.faq-kicker{ font-size:14px; opacity:.9; margin-top:6px }
.badge-mini{ display:inline-block; padding:3px 8px; border-radius:999px; background:#eee; margin-left:8px; font-weight:700 }
/* SEO Intro Text */
.seo-text {
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Updated 1762531062 */
