:root{
  --bg:#0b0c10;
  --text:#f7f8fb;
  --muted:#b6bed0;

  --brand:#ffd000;
  --brand2:#ffea6a;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow2: 0 10px 28px rgba(0,0,0,.35);

  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;

  --max: 1500px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --glass-solid: rgba(11,12,16,.92);
  --glass-solid-strong: rgba(11,12,16,.96);
  --glass-border: rgba(255,255,255,.16);

  /* ✅ FIX: du nutzt unten --glass / --glass-strong → hier sauber definieren */
  --glass: rgba(11,12,16,.62);
  --glass-strong: rgba(11,12,16,.78);
}

/* =========================
   PERFORMANCE: Backdrop-Fix (Safari/Chrome)
   -> sorgt dafür, dass Blur "sofort" gerendert wird
   ========================= */
.card,
.priceCard,
.faq details,
#kontakt .grid > form,
.calConsentCard,
.reviewCard4,
.benefitCard,
.casePanel,
.statHeroCard,
.heroCenterBadge{
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: backdrop-filter;
  contain: paint;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }

html, body{ font-weight: 700; }
*{ font-weight: inherit; }
input, textarea, select, button{ font-weight: inherit; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  position:relative;
  background: var(--bg);
}

/* Background Layer */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-image:
    linear-gradient(
      90deg,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.18) 18%,
      rgba(0,0,0,.12) 42%,
      rgba(0,0,0,0) 62%
    ),
    url("underhero.png");

  background-repeat:no-repeat;
  background-size:cover;
  background-position:center top;

  transform: translateZ(0);
  will-change: transform;
}

/* Overlay / Vignette */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.75) 0%,
      rgba(0,0,0,.45) 16%,
      rgba(0,0,0,.18) 36%,
      rgba(0,0,0,0) 58%
    ),
    linear-gradient(
      180deg,
      rgba(8,10,14,.18) 0%,
      rgba(8,10,14,.26) 22%,
      rgba(8,10,14,.48) 42%,
      rgba(8,10,14,.70) 58%,
      rgba(8,10,14,.70) 100%
    );
  transform: translateZ(0);
  will-change: transform;
}

/* Alles über Overlay */
body > *{
  position:relative;
  z-index:2;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
}

a{ color:inherit; text-decoration:none; }
.container{ max-width: var(--max); margin:0 auto; padding: 0 20px; }

/* ================= NAV ================= */
.navWrap{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #00000080;   /* 80 = ca. 50% */
}

/* ✅ LEISTUNGEN: Button-Wrapper nach unten drücken (überschreibt inline margin-top:14px) */
#leistungen .card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Das einzige direkte <div> in jeder Leistungs-Card ist dein Button-Wrapper */
#leistungen .card > div{
  margin-top: auto !important;   /* drückt nach unten (auch gegen inline style) */
  padding-top: 14px;             /* ersetzt deinen Abstand nach oben */
  align-self: flex-start;        /* links */
  width: 100%;
}

/* optional: falls der Button selbst links bleiben soll */
#leistungen .card > div .btn{
  align-self: flex-start;
}

.navInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 180px;
}
.logo img{
  height: 20px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(247,248,251,.90);
  border: 1px solid transparent;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
  font-weight: 650;
}
.nav a:hover{
  background: rgba(124, 108, 6, 0.845);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  transition: transform .18s var(--ease), opacity .18s var(--ease), box-shadow .18s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); opacity:.98; }
.btn:active{ transform: translateY(0px) scale(.99); }

.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#0b0c10;
  box-shadow: 0 16px 36px rgba(255,208,0,.16);
}
.btn.ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}

.hamburger{
  display:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
}

@media (max-width: 860px){
  .hamburger{ display:block; }
  .nav{
    position:absolute;
    right: 20px;
    top: 64px;
    width: 240px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,12,16,.92);
    box-shadow: var(--shadow);
    
  }
  .nav.show{ display:flex; }
  .nav a{ width:100%; }
  .logo{ min-width: 0; }
}

/* ================= HANG TAG (oben links) ================= */
.hangTag{
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
}
.hangPanel{
  background: rgba(255,255,255,.92);
  color:#0b0c10;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  overflow:hidden;
}
.hangPanelInner{ padding: 10px 12px 12px; min-width: 260px; }
.hangClose{
  position:absolute;
  top: 6px;
  right: 8px;
  border:0;
  background: rgba(0,0,0,.08);
  color:#0b0c10;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  cursor:pointer;
  font-weight:900;
}
.hangTop{ display:flex; align-items:center; justify-content:flex-start; gap:8px; padding-right: 32px; }
.hangBadge{ font-weight: 900; font-size: .92rem; opacity: .92; }
.hangText{ margin-top: 8px; font-weight: 650; line-height: 1.25; }
.hangString, .hangPin{ display:none; }

/* ================= HERO ================= */
.heroSplit{ padding: 100px 0 20px; }
.heroSplitWrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 24px;
  padding-top: 60px;
}

.heroSplitLeft{ max-width: 720px; }

.heroSplitTitle{
  margin: 0 0 10px;
  font-size: clamp(2.6rem, 5.0vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 980;
}
.heroSplitTitle .brand{ color: var(--brand); font-weight: 980; }

.heroSplitLead{
  margin: 0 0 18px;
  color: rgba(182,190,208,.90);
  line-height: 1.7;
  font-size: 1.04rem;
  font-weight: 650;
  max-width: 62ch;
}

.heroActions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  justify-content:flex-start;
  margin-top: 8px;
}

.heroCenterBadges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-start;
  margin-top: 14px;
}
.heroCenterBadge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.86);
  font-weight: 850;

 
}


.heroSplitSubline{
  gap: 12px;
  flex-wrap:wrap;
  justify-content:flex-start;
  margin-top: 12px;
  color: rgba(182,190,208,.82);
  font-weight: 750;
  font-size: .98rem;
}
.heroSplitSubline b{ color: rgba(255,255,255,.92); }
.dotSep{ opacity:.6; }

.heroSplitRight, .heroPhoto{ display:none; }

@media (max-width: 980px){
  .heroSplit{ padding: 34px 0 14px; }
  .heroSplitWrap{ flex-direction:column; }
  .heroSplitLeft{ max-width: 100%; margin-top: 10%; }
}

/* ================= SECTIONS / TYPO ================= */
.section{ padding: 40px 0; }

.head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

h2{
  margin:0;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  letter-spacing: -0.02em;
  color: var(--brand);
}

.sub{
  margin: 8px 0 0;
  color: rgba(182,190,208,.82);
  line-height: 1.7;
  max-width: 76ch;
}

p{ color: inherit; }
.sub2{ color: rgba(205,215,235,.92); }

/* GRID */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.span-4{ grid-column: span 4; justify-self: center; }
.span-6{ grid-column: span 6; }
.span-12{ grid-column: span 12; }
@media (max-width: 980px){
  .span-4,.span-6{ grid-column: span 12; }
}

/* CARDS */
.card{
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.852);
  background: rgba(0,0,0,.30);

  

  box-shadow: var(--shadow2);
  padding: 18px;
  position:relative;
  overflow:hidden;
}


.card h3{ margin:0 0 6px; font-size: 1.12rem; letter-spacing:-0.01em; color:#fff; }
.card p{ margin:0; color: rgba(255, 255, 255, 0.9); line-height: 1.7; }

.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}
.list li{ margin: 8px 0; }

.card.readable{
  background: linear-gradient(180deg, rgba(8,10,14,.85), rgba(8,10,14,.75));
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 20px 50px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.card.highlight{
  background: linear-gradient(180deg, rgba(20,22,28,.90), rgba(12,14,18,.85));
  border: 1px solid rgba(255,208,0,.25);
  box-shadow:
    0 30px 80px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,208,0,.06);
}
.card.highlight::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.card.soft{
  background: rgba(0,0,0,.45);
  
  border-color: rgba(255,255,255,.16);
}

/* MEDIA STRIP */
.mediaStrip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 900px){
  .mediaStrip{ grid-template-columns: 1fr; }
}
.mediaStrip img{
  width:100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  filter: saturate(1.02) contrast(1.02);
}

/* PRICING */
.pricing{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}
.pricing .priceCard:not(.featured){ align-self: start; }

@media (max-width: 980px){
  .pricing{ grid-template-columns: 1fr; }
}
.priceCard{
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.32);

  

  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}


.priceCard.featured{
  border-color: rgba(255,208,0,.28);
  box-shadow: 0 24px 70px rgba(255,208,0,.10), var(--shadow);
}
.priceTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.priceTag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  font-weight: 900;
}
.amount{
  font-size: 2.15rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  margin: 10px 0 8px;
}
.amount span{ color: var(--brand); }
.smallNote{ color: rgba(182,190,208,.80); margin:0; line-height:1.6; }


form input:focus, form textarea:focus{
  border-color: rgba(255,208,0,.35);
  box-shadow: 0 0 0 6px rgba(255,208,0,.12);
  background: rgba(0,0,0,.34);
}
form input::placeholder, form textarea::placeholder{ color: rgba(142,154,179,.95); }

/* FAQ */
.faq details{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.28);



  padding: 14px 16px;
  margin-top: 12px;
}

.faq summary{
  cursor:pointer;
  font-weight: 900;
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq p{ margin: 10px 0 0; color: rgba(182,190,208,.90); line-height: 1.7; }

/* FOOTER */
footer{
  margin-top: 28px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(182,190,208,.85);
  text-align:center;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* ===============================
   KUNDENSTIMMEN – PREMIUM CLEAN (2026)
   =============================== */

   
   

.reviewRow4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}

.reviewCard4{
  position: relative;
  border-radius: 22px;
  padding: 20px 18px 20px 58px;

  background:
    radial-gradient(900px 260px at 20% 0%,
      rgba(255,208,0,.10) 0%,
      rgba(255,208,0,.04) 34%,
      rgba(255,208,0,0) 70%
    ),
    linear-gradient(180deg,
      rgba(15,18,24,.55) 0%,
      rgba(10,12,16,.45) 100%
    );

  border: 1px solid rgba(255,255,255,.14);
  min-height: 220px;

 

  box-shadow:
    0 28px 80px rgba(0,0,0,.60),
    inset 0 1px 0 rgba(255,255,255,.08);

  overflow: hidden;
  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    border-color .18s var(--ease);
}


/* kein gelber Streifen */
.reviewCard4::before{ content:none !important; }

/* subtiler Glow-Rand */
.reviewCard4::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius: 22px;
  background:
    radial-gradient(700px 260px at 10% 0%,
      rgba(255,208,0,.10),
      rgba(255,208,0,0) 60%
    );
  opacity:.75;
  mix-blend-mode: screen;
}

.reviewCard4:hover{
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.20);
  box-shadow:
    0 34px 90px rgba(0,0,0,.68),
    0 0 0 1px rgba(255,208,0,.08),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.reviewInner{
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.reviewIcon{
  position:absolute;
  left: 14px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 30% 25%,
      rgba(255,255,255,.18),
      rgba(255,255,255,.06) 60%,
      rgba(0,0,0,.25) 100%
    );
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 16px 44px rgba(0,0,0,.50),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.reviewIcon img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 999px;
  display:block;
}

.reviewHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  margin-left: 5%;
}

.reviewName{
  font-weight: 950;
  color: rgba(255,255,255,.96);
  line-height: 1.15;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.reviewRole{
  margin-top: 4px;
  color: rgba(182,190,208,.88);
  font-weight: 650;
  font-size: .92rem;
}

.reviewText{
  margin: 14px 0 0;
  color: rgba(215,225,245,.92);
  line-height: 1.72;
  font-weight: 650;
  font-size: .98rem;
  position: relative;
  padding-left: 14px;
  overflow: visible;
}

.reviewText::before{
  content:"";
  position:absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,208,0,.95), rgba(255,208,0,0));
  opacity: .85;
}

.reviewAuthor{
  margin-top: auto;
  padding-top: 14px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(182,190,208,.86);
  font-weight: 850;
  font-size: .92rem;
}
.reviewAuthor::before{
  letter-spacing: .12em;
  font-size: .86rem;
  color: rgba(255,208,0,.92);
  opacity: .95;
}

@media (max-width: 1100px){
  .reviewRow4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .reviewRow4{ grid-template-columns: 1fr; }
  .reviewCard4{ padding-left: 56px; }
  .reviewIcon{ left: 14px; top: 18px; }
}

/* Accent-Klassen neutralisieren */
.accent-1, .accent-2, .accent-3, .accent-4{
  --accent: rgba(255,255,255,.18);
}
.accent-1{ --accent: #ffb000; }
.accent-2{ --accent: #ff3b6b; }
.accent-3{ --accent: #b84bff; }
.accent-4{ --accent: #ffd000; }

/* BOOKING */
.calWrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.calConsentCard{
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.32);

 

  box-shadow: var(--shadow2);
  padding: 18px;
}


.calConsentInner{ text-align: center; }
.calConsentInner .calBadge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  margin: 0 auto 10px;
}
.calConsentInner h3{
  margin: 8px 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 950;
  letter-spacing: -0.02em;
}
.calConsentInner p{
  margin: 0 auto 18px;
  max-width: 62ch;
  line-height: 1.75;
  color: rgba(205,215,235,.92);
  font-weight: 650;
}
.calConsentInner .btn{ margin: 0 auto 12px; }
.calConsentInner .calSmall{
  margin: 0 auto;
  max-width: 60ch;
  font-size: .9rem;
  color: rgba(182,190,208,.88);
}
.calSmall a{ text-decoration: underline; }

.calFrame iframe{
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow2);
}

/* SEO block center */
#seo-bochum{ text-align:center; }
#seo-bochum .head{ justify-content:center; }
#seo-bochum .sub{ margin-left:auto; margin-right:auto; max-width: 850px; }

/* LEISTUNGEN / SHOWREEL / KONTAKT Center Helpers */
#leistungen .head{
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#leistungen .head .sub{ margin-left: auto; margin-right: auto; }

/* LEISTUNGEN – Optik Upgrade */
#leistungen .head{
  align-items: center;
  margin-bottom: 18px;
}
#leistungen .head .sub{
  margin-top: 6px;
  opacity: .95;
}
#leistungen .grid{ gap: 16px; }

#leistungen .card{
  padding: 22px;
  background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.28));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 18px 46px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}



#leistungen .card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background: linear-gradient(90deg, rgba(255,208,0,.85), rgba(255,208,0,0));
  opacity:.55;
}

#leistungen .card h3{
  font-size: 1.18rem;
  font-weight: 950;
  margin-bottom: 8px;
}
#leistungen .card p{
  color: rgba(205,215,235,.92);
  margin-bottom: 12px;
}

#leistungen .list{ margin-top: 10px; padding-left: 18px; }
#leistungen .list li{ margin: 9px 0; color: rgba(205,215,235,.90); }
#leistungen .list li::marker{ color: rgba(255,208,0,.85); }

#leistungen .card .btn.ghost{
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
}
#leistungen .card:hover .btn.ghost{
  border-color: rgba(255,208,0,.30);
  box-shadow: 0 14px 34px rgba(255,208,0,.08);
}

#showreel .head > div{ text-align: center; flex: 1; }
#showreel .head > div .sub{ margin-left: auto; margin-right: auto; }

#kontakt .head > div{ text-align: center; flex: 1; }
#kontakt .head > div .sub{ margin-left: auto; margin-right: auto; }

.section-tight-after{ padding-bottom: 0px; }

/* TRUST */
.trustCard{
  padding: 28px 26px;
  isolation: isolate;
}
.trustGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trustItem{ text-align: center; padding: 6px 14px; }

.trustImg{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  margin-bottom: 14px;
  filter: saturate(1.02) contrast(1.04);
  mix-blend-mode: normal;
}

.trustItem h3{ margin: 0 0 10px; font-size: 1.15rem; font-weight: 950; }
.trustItem p{
  margin: 0 0 14px;
  color: rgba(205,215,235,.92);
  line-height: 1.7;
  font-weight: 650;
}

@media (max-width: 980px){
  .trustGrid{ grid-template-columns: 1fr; gap: 18px; }
  .trustImg{ height: 190px; }
}

/* SOCIAL MEDIA MEHRWERT */
.socialBenefits{ margin-top: 28px; }

.benefitCard{
  border-radius: var(--r-xl);
  padding: 22px 22px 26px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.14);

  

  box-shadow: var(--shadow2);
  transition:
    transform .18s var(--ease),
    box-shadow .18s var(--ease),
    border-color .18s var(--ease);
}


.benefitCard:hover{
  transform: translateY(-4px);
  border-color: rgba(255,208,0,.28);
  box-shadow:
    0 28px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,208,0,.06);
}

.benefitIcon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  margin-bottom: 14px;

  background: linear-gradient(135deg, rgba(255,208,0,.22), rgba(255,208,0,.10));
  border: 1px solid rgba(255,208,0,.35);
  box-shadow: 0 12px 30px rgba(255,208,0,.18);
}

.benefitCard h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.01em;
}

.benefitCard p{
  margin: 0;
  color: rgba(205,215,235,.92);
  line-height: 1.65;
  font-weight: 650;
  font-size: .95rem;
}

@media (max-width: 980px){
  .benefitIcon{ width: 42px; height: 42px; font-size: 20px; }
}

/* Partner-Knowhow */
#partner-knowhow .partner-card{ text-align: center; }
#partner-knowhow .partner-card h2{ margin-left: auto; margin-right: auto; }
#partner-knowhow .partner-card .sub{ margin-left: auto; margin-right: auto; }

/* CASE / STATISTIK – BENTO */
.caseBento{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: stretch;
}

.casePanel{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,16,.72);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);

  

  padding: 22px;
}


.casePill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

.caseTitle{
  margin: 14px 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 980;
}

.caseLead{
  margin: 0;
  color: rgba(205,215,235,.92);
  line-height: 1.75;
  font-weight: 650;
  max-width: 70ch;
}
.caseLead b{ color: #fff; }

.caseList{ margin-top: 16px; display:grid; gap: 10px; }

.caseRow{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}

.caseDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 5px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(255,208,0,.10);
  flex: 0 0 auto;
}

.caseRowTop{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.01em;
}

.caseRowSub{
  margin-top: 4px;
  color: rgba(182,190,208,.88);
  line-height: 1.55;
  font-weight: 650;
}

.caseActions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.caseFine{
  margin-top: 10px;
  color: rgba(182,190,208,.72);
  font-size: .9rem;
  line-height: 1.5;
  font-weight: 650;
}

.caseKpi{
  position: relative;
  overflow:hidden;
}
.caseKpi::before{
  content:"";
  position:absolute;
  inset: -1px;
  pointer-events:none;
  background:
    radial-gradient(720px 260px at 25% 5%,
      rgba(255,208,0,.12) 0%,
      rgba(255,208,0,.05) 38%,
      rgba(255,208,0,0) 70%
    );
  opacity: .9;
}

.kpiTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.kpiLabel{ color: rgba(182,190,208,.88); font-weight: 750; }

.kpiBadge{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,208,0,.22);
  background: rgba(255,208,0,.08);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.kpiValue{
  margin-top: 14px;
  font-size: clamp(3.0rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 990;
  color: #fff;
  position: relative;
  z-index: 1;
}

.kpiApprox{ color: var(--brand); font-weight: 990; margin-right: 2px; }

.kpiSub{
  margin-top: 10px;
  color: rgba(205,215,235,.90);
  line-height: 1.65;
  font-weight: 650;
  position: relative;
  z-index: 1;
}
.kpiSub b{ color:#fff; }

.kpiMiniGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.kpiMini{
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}

.kpiMiniLabel{ color: rgba(182,190,208,.86); font-weight: 750; font-size: .9rem; }

.kpiMiniValue{
  margin-top: 8px;
  font-weight: 980;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  color: #fff;
}

@media (max-width: 980px){
  .caseBento{ grid-template-columns: 1fr; }
  .kpiMiniGrid{ grid-template-columns: 1fr; }
}

/* STATISTIK – Hero */
.statHeroCard{
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(10,12,16,.78), rgba(10,12,16,.62));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.60);
}

.statHeroCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 320px at 18% -10%,
      rgba(255,208,0,.14) 0%,
      rgba(255,208,0,.06) 40%,
      rgba(255,208,0,0) 70%
    ),
    radial-gradient(700px 260px at 95% 35%,
      rgba(255,234,106,.10) 0%,
      rgba(255,234,106,.04) 40%,
      rgba(255,234,106,0) 70%
    );
  opacity:.9;
}

.statRibbon{
  display:flex;
  justify-content:center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.statRibbon span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255,208,0,.14);
  border: 1px solid rgba(255,208,0,.28);
  color: rgba(255,255,255,.94);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .92rem;
  box-shadow: 0 18px 46px rgba(255,208,0,.08);
}

.statHeroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.statHeroGrid > .statHeroText,
.statHeroContent{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  padding: 18px;
}

.statHeroGrid > .statHeroText{
  color: rgba(205,215,235,.92);
  line-height: 1.8;
  font-weight: 650;
  font-size: 1.05rem;
}
.statHeroGrid > .statHeroText b{ color: #fff; font-weight: 900; }

.statHeroContent{
  text-align:center;
  display:flex;
  flex-direction: column;
  justify-content:center;
}

.statBigNumber{
  margin-top: 4px;
  font-size: clamp(3.0rem, 6.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 990;
  color: #fff;
  display:flex;
  justify-content:center;
  align-items: baseline;
  gap: 6px;
}
.statApprox{ color: var(--brand); }

.statBigUnit{
  margin-top: 10px;
  font-weight: 980;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-size: 1.15rem;
}

.statHeroContent .statHeroText{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(205,215,235,.92);
  font-weight: 650;
  line-height: 1.7;
  font-size: 1.0rem;
}
.statHeroContent .statHeroText b{ color: #fff; font-weight: 900; }

.statBarWrap2{ margin: 14px auto 0; width: min(520px, 100%); }

.statBar2{
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.26);
  overflow:hidden;
}

.statBarFill2{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 16px 40px rgba(255,208,0,.10);
  transition: width 900ms var(--ease);
}

.statBarLegend2{
  margin-top: 8px;
  display:flex;
  justify-content:space-between;
  color: rgba(182,190,208,.82);
  font-weight: 750;
  font-size: .92rem;
}

@media (max-width: 980px){
  .statHeroGrid{ grid-template-columns: 1fr; }
  .statHeroContent{ text-align:center; }
}

#statistik h2{ text-align: center; padding-bottom: 20px; }
#statistik h2 span{ display: inline-block; text-align: center; }

/* KONTAKT – FORM = HÖHE WIE FAQ */
#kontakt .grid{ align-items: stretch; }

#kontakt .grid > form{
  grid-column: span 6;
  height: 100%;
  display: flex;
  flex-direction: column;

  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);

  

  box-shadow: var(--shadow2);
  padding: 18px;
}


#kontakt .grid > .card{
  grid-column: span 6;
  height: 100%;
}

#kontakt .grid > form button{ margin-top: auto; }

@media (max-width: 980px){
  #kontakt .grid > form,
  #kontakt .grid > .card{
    grid-column: span 12;
    height: auto;
  }
}

/* Anrede-Select wie Texteingabe */
#kontakt form select[name="salutation"]{
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border .2s ease, background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

#kontakt form select[name="salutation"]:focus{
  border-color: var(--brand);
  background: rgba(0,0,0,.45);
}
#kontakt form select[name="salutation"] option[disabled]{ color: var(--muted); }

/* Einheitliche Typo & Farbe */
#kontakt form input,
#kontakt form textarea,
#kontakt form select[name="salutation"]{
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .2px;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  opacity: 1;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  outline: none;
  transition: border .2s ease, background .2s ease;
}

#kontakt form input:focus,
#kontakt form textarea:focus,
#kontakt form select[name="salutation"]:focus{
  border-color: var(--brand);
  background: rgba(0,0,0,.45);
}

#kontakt form input::placeholder,
#kontakt form textarea::placeholder{ color: var(--muted); }

/* Center Head */
#mehrwert-social-media .sectionHeadCenter{
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 26px;
}
#mehrwert-social-media .sectionHeadCenter h2,
#mehrwert-social-media .sectionHeadCenter .sub{
  width: 100%;
  display: block;
  text-align: center;
}
#mehrwert-social-media .sectionHeadCenter .sub{
  max-width: 720px;
  margin: 12px auto 0;
}

/* Einheitlich hellere Glas-Flächen */
.card,
.priceCard,
.faq details,
#kontakt .grid > form,
.calConsentCard,
.reviewCard4,
.benefitCard,
.casePanel,
.statHeroCard{
  background: var(--glass) !important;
  border-color: var(--glass-border) !important;
}

/* Optional: extra lesbar */
.card.readable,
.card.highlight,
.card.soft{
  background: var(--glass-strong) !important;
}

/* Success/Fail Flash */
#quickForm .field-ok{
  outline: 2px solid rgba(60, 220, 120, .95);
  box-shadow: 0 0 0 4px rgba(60, 220, 120, .95);
  transition: box-shadow .25s, outline-color .25s;
}
#quickForm .field-bad{
  outline: 2px solid rgba(255, 80, 80, .95);
  box-shadow: 0 0 0 4px rgba(255, 80, 80, .18);
}

/* optional: Button state */
#quickForm button[disabled]{ opacity:.65; cursor:not-allowed; }

#quickForm select.field-ok{
  outline: none !important;
  box-shadow: none !important;
}

/* ✅ Dropdown muss über allem liegen und darf nicht abgeschnitten werden */
.navWrap { overflow: visible !important; }
.navInner { overflow: visible !important; position: relative; } /* absolute child anchor */

@media (max-width: 860px){
  .nav{ position: absolute; }
}
/* =========================
   FIX: Mobile Dropdown darf NICHT in Navbar verschwinden
   -> als echtes Overlay über dem Content
   ========================= */
@media (max-width: 860px){

  /* alle möglichen "abschneide" container neutralisieren */
  .navWrap,
  .navWrap .container,
  .navInner{
    overflow: visible !important;
  }

  /* Menü als Overlay im Viewport */
  .nav{
    position: fixed !important;      /* <- wichtig */
    top: 76px !important;            /* <- falls navbar höher/niedriger: anpassen */
    left: 16px !important;
    right: 16px !important;
    width: auto !important;

    display: none;                   /* bleibt zu, bis .show */
    flex-direction: column;
    align-items: stretch;
    gap: 6px;

    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,12,16,.92);
    box-shadow: var(--shadow);

    z-index: 2147483647 !important;  /* <- maximal */
  }

  .nav.show{
    display: flex !important;
  }

  .nav a{
    width: 100%;
  }
}

/* =========================
   MOBILE NAV: Text mittig
   ========================= */
@media (max-width: 860px){
  /* alle Links im Dropdown sauber mittig */
  #navMenu.nav a{
    display:flex;                 /* <- wichtig, damit justify-content wirkt */
    align-items:center;
    justify-content:center;
    text-align:center;
  }

  /* Kontakt-Button im Dropdown: volle Breite */
  #navMenu.nav a.btn{
    width:100%;
  }
}

/* Datenschutz-Check – linksbündig, sauber ausgerichtet */
.privacyAck{
  margin-top:12px;
  display:flex;
  align-items:center;   /* vertikal exakt mittig */
  gap:8px;
  font-size:14px;
  line-height:1.2;      /* verhindert Text-Versatz */
  color: rgba(247,248,251,.85);
  width:100%;
}

.privacyAck input{
  width:18px;
  height:18px;
  margin:0;             /* wichtig gegen Versatz */
  transform: translateY(1px); /* optische Feinjustierung */
  accent-color: var(--brand);
  cursor:pointer;
  flex-shrink:0;
}

.privacyAck .privacyText{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.privacyAck .privacyText a{
  color: var(--brand);
  text-decoration:none;
  border-bottom:1px solid rgba(255,208,0,.35);
}

.privacyAck .privacyText a:hover{
  border-bottom-color: rgba(255,208,0,.8);
}

/* Flash states (falls nicht vorhanden) */
.field-bad{
  outline: 2px solid rgba(255,80,80,.95);
  box-shadow: 0 0 0 4px rgba(255,80,80,.18);
}

.field-ok{
  outline: 2px solid rgba(80,255,140,.95);
  box-shadow: 0 0 0 4px rgba(80,255,140,.18);
}

form .privacyAck a{
  text-decoration: none !important;
}

.privacyAck .privacyText a{
  text-decoration: none !important;
  border-bottom: 0 !important;
  opacity: .95;
}
.privacyAck .privacyText a:hover{
  opacity: 1;
  filter: brightness(1.05);
}

/* NUR Textfelder – NICHT Checkbox/Radio */
form input:not([type="checkbox"]):not([type="radio"]),
form textarea,
form select{
  width:100%;
  padding: 14px 14px;
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline:none;
}

.privacyAck{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
  line-height:1.2;
}

.privacyAck input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0 !important;
  padding:0 !important;
  flex:0 0 18px;
  accent-color: var(--brand);
  transform:none !important;   /* falls du vorher translateY hattest */
}

.privacyAck .privacyText{
  display:flex;
  align-items:center;
  gap:6px;
}