:root{
  --bg: #050608;
  --card: #10121a;
  --text: #f2f3f5;
  --muted: #9ca3af;
  --brand: #22c55e;
  --border: rgba(31,41,55,.85);
  --shadow: 0 22px 44px rgba(0,0,0,.58);
}

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

html, body{ height:100%; }

body{
  margin:0;
  min-height:100dvh;

  /* Sticky Footer */
  display:flex;
  flex-direction:column;

  background: #12141a;
  color:var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-size-adjust:100%;
}

a{ color:inherit; }

/* Layout */
.mw-container{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:0 16px;
}

.mw-main{ flex:1 0 auto; }

/* Topbar */
.mw-topbar{
  position:sticky;
  top:0;
  z-index:20;
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(18px);
  background: #000;
  border-bottom:1px solid rgba(31,41,51,.7);
}

.mw-topbar-inner{
  display:grid;
  grid-template-columns: 64px 1fr 64px; /* links Logo | Mitte Titel | rechts Spacer */
  align-items:center;
  padding: 12px 10px;
}

.mw-topbar-left{ display:flex; align-items:center; justify-content:flex-start; }
.mw-topbar-right{ display:block; }

.mw-topbar-center{
  text-align:center;
  font-size: 20px;
  font-weight: 600;     /* weniger “fett” */
  letter-spacing: .02em;
}

/* Logo (PNG transparent → kein Hintergrund) */
.mw-logo-img{
  width: 46px;          /* größer */
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 0 18px rgba(34,197,94,.45));
}

/* Hero */
.mw-hero{ padding: 44px 0 26px; }

.mw-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:16px;
  align-items:start;
  max-width: 760px;
  margin: 0 auto;
}

.mw-hero-text h1{
  font-size: clamp(26px, 6vw, 44px);
  line-height: 1.08;
  margin: 0 0 40px;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.mw-hero-sub{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 640px;
}

.mw-hero-sub strong{ font-weight: 650;color: var(--brand); }

/* Card */
.mw-hero-card{
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.12), transparent 46%) no-repeat,
    linear-gradient(180deg, rgba(15,23,42,.35), rgba(15,23,42,.12)) ,
    var(--card);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.mw-hero-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(55,65,81,.75);
  font-size: 12px;
  font-weight: 560;      /* weniger dick */
  color: #d1fae5;
}

.mw-dot{ width:8px; height:8px; border-radius:999px; }
.mw-dot-green{ background:#22c55e; box-shadow:0 0 10px rgba(34,197,94,.9); }

/* Bullets */
.mw-bullets{
  margin: 12px 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mw-bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.mw-bullets li::before{
  content:"•";
  color:#bbf7d0;
  margin-top: 1px;
}

/* CTA */
.mw-contact-cta{
  display:grid;
  grid-template-columns:1fr;
  gap: 12px;
  margin-top: 16px;
}

.mw-cta-row{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* Buttons (weniger fett) */
.mw-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;   /* <- fix: nicht mehr “zu dick” */
  border: 1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, filter .12s ease;
  width: 100%;
}

.mw-btn-primary{
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  box-shadow: 0 10px 26px rgba(16,185,129,.38);
}
.mw-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(16,185,129,.50);
  filter: saturate(1.05);
}

.mw-btn-secondary{
  background: rgba(15,23,42,.25);
  border: 1px solid rgba(55,65,81,.90);
  color: #e5e7eb;
}
.mw-btn-secondary:hover{
  transform: translateY(-1px);
  border-color: rgba(34,197,94,.55);
}

/* Kontakt-Details (fix für “zusammengequetscht”) */
.mw-contact-details{
  padding: 12px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(55,65,81,.75);
  background: rgba(2,6,23,.45);
  display:grid;
  gap: 8px;
}

.mw-contact-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  font-size: 13px;
}

.mw-contact-label{
  color: var(--muted);
  font-weight: 540;
}

.mw-contact-value{
  color: #e5e7eb;
  font-weight: 600;
  letter-spacing: .01em;
  word-break: break-word;
}

.mw-contact-note{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
  opacity: .92;
  text-align: center;
}

/* Footer: 1 Zeiler, immer unten */
.mw-footer{
  flex: 0 0 auto;
  margin-top: auto;
  border-top: 1px solid rgba(31,41,55,.90);
  background: #000;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
}

.mw-footer-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  font-size: 12px;
  color: var(--muted);
  padding: 0;
}

/* Responsive */
@media (min-width: 720px){
  .mw-cta-row{ flex-direction: row; }
  .mw-btn{ width: auto; min-width: 220px; }
  .mw-topbar-inner{ grid-template-columns: 72px 1fr 72px; }
  .mw-logo-img{ width: 52px; height: 52px; border-radius: 16px; }
  .mw-topbar-center{ font-size: 22px; }
}

/* =========================================================
   ADDITIV: Produktseite (Sections, Pricing, Forms, FAQ)
   ========================================================= */

/* iPhone “random underline” vermeiden */
a{ text-decoration:none; -webkit-tap-highlight-color: transparent; }
a:hover{ text-decoration:none; }

/* Allgemeine Card (für Sections) */
.mw-card{
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.10), transparent 52%) no-repeat,
    linear-gradient(180deg, rgba(15,23,42,.30), rgba(15,23,42,.10)),
    var(--card);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Hero Extras */
.mw-brand{ display:inline-flex; align-items:center; gap:10px; }
.mw-badge-row{ display:flex; flex-wrap:wrap; gap:8px; margin: 0 0 14px; }
.mw-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(55,65,81,.75);
  color: #d1fae5;
  font-size: 12px;
  font-weight: 560;
}
.mw-hero-actions{
  display:flex;
  flex-direction: column;
  gap:10px;
  margin: 10px 0 6px;
}

/* Sections */
.mw-section{ padding: 22px 0; }
.mw-section-head{
  max-width: 760px;
  margin: 0 auto 14px;
}
.mw-section-head h2{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mw-section-head p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mw-grid{
  display:grid;
  gap: 12px;
  max-width: 980px;
}
.mw-grid-2{ grid-template-columns: 1fr; }
.mw-grid-3{ grid-template-columns: 1fr; }

/* Feature cards */
.mw-feature h3{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}
.mw-feature p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Lists */
.mw-list{
  margin: 12px 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.mw-list li{ margin: 6px 0; }

/* Pricing */
.mw-pricing-grid{ max-width: 980px; margin: 0 auto; }
.mw-pricing-card.is-active{
  border-color: rgba(34,197,94,.75);
  box-shadow: 0 22px 54px rgba(34,197,94,.10), var(--shadow);
}
.mw-pricing-highlight{
  border-color: rgba(34,197,94,.35);
}
.mw-price{ margin-bottom: 8px; }
.mw-price-title{
  font-size: 13px;
  color: #d1fae5;
  font-weight: 650;
}
.mw-price-value{
  font-size: 30px;
  font-weight: 760;
  letter-spacing: -0.02em;
  margin: 2px 0 6px;
}
.mw-price-sub{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Note */
.mw-note{
  max-width: 980px;
  margin: 12px auto 0;
  padding: 12px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(55,65,81,.75);
  background: rgba(2,6,23,.45);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Forms */
.mw-form-card h3{ margin: 0 0 6px; font-size: 15px; font-weight: 750; }
.mw-muted{ margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.mw-form{ display:grid; gap: 10px; }
.mw-field{ display:grid; gap: 6px; }
.mw-field > span{
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.mw-field input,
.mw-field textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(55,65,81,.85);
  background: rgba(2,6,23,.55);
  color: var(--text);
  outline: none;
}
.mw-field input:focus,
.mw-field textarea:focus{
  border-color: rgba(34,197,94,.65);
  box-shadow: 0 0 0 3px rgba(34,197,94,.14);
}
.mw-row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.mw-btn-block{ width:100%; }
.mw-form-hint{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align:center;
}
.mw-form-hint a{ color:#bbf7d0; }

/* FAQ */
.mw-faq{ max-width: 980px; margin: 0 auto; display:grid; gap: 10px; }
.mw-faq-item{
  border-radius: 18px;
  border: 1px solid rgba(55,65,81,.75);
  background: rgba(2,6,23,.45);
  padding: 0;
  overflow:hidden;
}
.mw-faq-item summary{
  cursor:pointer;
  list-style:none;
  padding: 12px 12px;
  font-size: 13px;
  font-weight: 650;
}
.mw-faq-item summary::-webkit-details-marker{ display:none; }
.mw-faq-body{
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Responsive Erweiterungen */
@media (min-width: 720px){
  .mw-hero-actions{ flex-direction: row; }
  .mw-grid-2{ grid-template-columns: 1fr 1fr; }
  .mw-grid-3{ grid-template-columns: 1fr 1fr 1fr; }
  .mw-row{ grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   HERO: Mini-Feature-Kacheln (Titel + Beschreibung)
   ========================================================= */

.mw-mini-features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0 0;
}

.mw-mini{
  border-radius: 18px;
  border: 1px solid var(--brand);
  background: rgba(2,6,23,.45);
  padding: 12px 12px 11px;
}

.mw-mini-title{
  font-size: 13px;
  font-weight: 720;
  color: #eafff2;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.mw-mini-text{
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

@media (min-width: 720px){
  .mw-mini-features{
    gap: 12px;
    margin-top: 16px;
  }
}

.mw-br { display: inline; }

@media (min-width: 520px){
  .mw-br { display: none; }
}

.mw-mini-text strong{
  color: #bbf7d0;
  font-weight: 750;
  text-shadow: 0 0 14px rgba(34,197,94,.22);
}

