/* B&S IT-Solutions — Design-Tokens v2 (Pepp-Update) */

:root {
  --primary: #1A4E7A;
  --primary-hover: #143E61;
  --primary-active: #0F2E48;
  --primary-soft: #E8EEF5;
  --primary-softer: #F4F7FB;

  --secondary: #3A8BD0;
  --secondary-hover: #2E76B7;
  --secondary-soft: #DDE9F5;

  --dramatic: #0A1F33;
  --dramatic-alt: #152D45;

  --n50: #FAFAF8;
  --n100: #F5F4F0;
  --n200: #E9E7E0;
  --n300: #D6D3CB;
  --n400: #A8A4A0;
  --n500: #78736E;
  --n600: #57524E;
  --n700: #403B37;
  --n800: #26211E;
  --n900: #1A1614;

  --success: #15803D;
  --warning: #C2761B;
  --error: #B91C1C;
  --info: #1E40AF;

  --bg: var(--n50);
  --surface: #FFFFFF;
  --surface-alt: var(--n100);
  --surface-dark: var(--dramatic);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem; --fs-sm: 0.875rem; --fs-base: 1rem; --fs-lg: 1.125rem;
  --fs-xl: 1.25rem; --fs-2xl: 1.5rem; --fs-3xl: 1.875rem; --fs-4xl: 2.5rem;
  --fs-5xl: 3.25rem; --fs-6xl: 4rem; --fs-7xl: 5rem;

  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
  --s6: 1.5rem; --s8: 2rem; --s12: 3rem; --s16: 4rem;
  --s20: 5rem; --s24: 6rem; --s32: 8rem; --s40: 10rem;

  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-2xl: 24px; --r-full: 9999px;

  --sh-sm: 0 1px 3px 0 rgb(38 33 30 / 0.08);
  --sh-md: 0 4px 8px -2px rgb(38 33 30 / 0.10), 0 2px 4px -2px rgb(38 33 30 / 0.06);
  --sh-lg: 0 12px 24px -6px rgb(38 33 30 / 0.14), 0 4px 8px -4px rgb(38 33 30 / 0.08);
  --sh-xl: 0 24px 48px -12px rgb(38 33 30 / 0.20), 0 8px 16px -8px rgb(38 33 30 / 0.10);
  --sh-2xl: 0 36px 72px -16px rgb(38 33 30 / 0.25);
  --glow-primary: 0 0 0 6px rgba(26,78,122,0.12), 0 4px 16px -2px rgba(26,78,122,0.35);
  --glow-secondary: 0 0 0 6px rgba(58,139,208,0.15), 0 4px 20px -2px rgba(58,139,208,0.35);

  --grad-hero-dark: linear-gradient(135deg, #0A1F33 0%, #1A4E7A 100%);
  --grad-hero-radial: radial-gradient(circle at top right, rgba(58,139,208,0.25) 0%, transparent 60%);
  --grad-primary-to-sec: linear-gradient(90deg, #1A4E7A 0%, #3A8BD0 100%);
  --grad-overlay-strong: linear-gradient(135deg, rgba(10,31,51,0.92) 0%, rgba(26,78,122,0.85) 100%);
  --grad-card-hover: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--n700);
  background: var(--bg);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--secondary); }

img, svg { max-width: 100%; display: block; }

/* ====== TOPBAR ====== */
.topbar {
  background: var(--dramatic);
  color: var(--n300);
  font-size: var(--fs-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container-wide {
  display: flex; justify-content: flex-end; gap: var(--s6);
  padding: var(--s2) var(--s6);
}
.topbar .container { display: none; }
.topbar a {
  color: var(--n300); display: inline-flex; gap: var(--s2);
  align-items: center; transition: color 0.2s ease;
}
.topbar a:hover { color: var(--secondary); }
.topbar svg { width: 14px; height: 14px; opacity: 0.85; }

/* ====== HEADER ====== */
.header {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--n200);
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--sh-md); }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s5, 1.25rem) var(--s8);
  gap: var(--s8);
}
.header-logo {
  display: flex; align-items: center; gap: var(--s3);
  flex-shrink: 0;
}
.header-logo img { height: 32px; width: auto; }
.nav {
  display: flex; gap: var(--s8); align-items: center;
  margin-left: auto;
}
.nav a {
  color: var(--n700); font-weight: 500; font-size: var(--fs-base);
  position: relative; padding: var(--s2) 0;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--secondary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav a:hover { color: var(--primary); }
.header .btn { margin-left: var(--s2); }

/* ====== CONTAINER ====== */
.container { max-width: 1180px; margin: 0 auto; padding-left: var(--s6); padding-right: var(--s6); }
.container-wide { max-width: 1400px; margin: 0 auto; padding-left: var(--s6); padding-right: var(--s6); }
.container-narrow { max-width: 720px; margin: 0 auto; padding-left: var(--s6); padding-right: var(--s6); }

/* ====== SECTIONS ====== */
section { padding: var(--s24) 0; }
.bg-alt { background: var(--surface-alt); }
.bg-soft { background: var(--primary-soft); }
.bg-softer { background: var(--primary-softer); }
.bg-dark { background: var(--surface-dark); color: var(--n300); }
.bg-gradient {
  background: var(--grad-hero-dark);
  color: var(--n50);
  position: relative; overflow: hidden;
}
.bg-gradient::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero-radial); pointer-events: none;
}
.bg-gradient > * { position: relative; z-index: 1; }

/* ====== TYPO ====== */
.h1-hero {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--n800);
}
.h1-hero strong { color: var(--secondary); font-weight: inherit; }
.h2-section {
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--n800);
}
.h3-card { font-size: var(--fs-2xl); font-weight: 700; line-height: 1.3; color: var(--n800); letter-spacing: -0.01em; }
.h4-sub { font-size: var(--fs-xl); font-weight: 600; line-height: 1.4; color: var(--n800); }
.body-lead { font-size: var(--fs-lg); line-height: 1.65; color: var(--n700); }
.body { font-size: var(--fs-base); line-height: 1.65; color: var(--n700); }
.body-small { font-size: var(--fs-sm); line-height: 1.5; color: var(--n600); }
.eyebrow {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex; align-items: center; gap: var(--s2);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: var(--secondary); border-radius: 2px;
}

.text-light { color: var(--n50) !important; }
.text-light-muted { color: rgba(250,250,248,0.85) !important; }
.text-secondary-muted { color: rgba(58,139,208,0.95) !important; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 0.875rem 1.75rem; border-radius: var(--r-md);
  font-family: inherit; font-size: var(--fs-base); font-weight: 600; line-height: 1.2;
  cursor: pointer; border: none; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn .arrow {
  width: 18px; height: 18px; transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--primary); color: var(--n50);
  box-shadow: 0 4px 12px -2px rgba(26,78,122,0.30);
}
.btn-primary:hover {
  background: var(--primary-hover); color: var(--n50);
  box-shadow: 0 8px 20px -2px rgba(26,78,122,0.40);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary); color: var(--n50);
}
.btn-glow {
  background: var(--surface); color: var(--primary);
  box-shadow: var(--glow-secondary);
  border: 2px solid var(--secondary);
}
.btn-glow:hover {
  background: var(--secondary); color: var(--n50); border-color: var(--secondary);
  box-shadow: var(--glow-secondary), var(--sh-lg);
}
.btn-on-dark {
  background: var(--surface); color: var(--primary);
  box-shadow: var(--sh-lg);
}
.btn-on-dark:hover {
  background: var(--primary-softer); color: var(--primary);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: transparent; color: var(--n50);
  border: 2px solid rgba(250,250,248,0.4);
}
.btn-ghost-light:hover { border-color: var(--n50); background: rgba(250,250,248,0.08); }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--fs-sm); }
.btn-lg { padding: 1.125rem 2.25rem; font-size: var(--fs-lg); }
.btn-row { display: flex; gap: var(--s4); flex-wrap: wrap; align-items: center; }

/* ====== HERO STARTSEITE — 60/40 ASYMMETRISCH ====== */
.hero-home-v2 {
  background: var(--bg);
  position: relative; overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: center;
}
.hero-home-v2::before {
  /* Subtle background pattern */
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero-radial);
  opacity: 0.4; pointer-events: none;
}
.hero-home-v2 .hero-grid {
  display: grid; grid-template-columns: 40fr 60fr;
  width: 100%; min-height: 80vh;
  align-items: stretch;
}
.hero-home-v2 .hero-text {
  padding: var(--s20) var(--s12) var(--s20) max(var(--s12), calc((100vw - 1400px) / 2 + var(--s6)));
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-home-v2 .hero-text .eyebrow { margin-bottom: var(--s4); }
.hero-home-v2 .hero-text h1 { margin-bottom: var(--s6); }
.hero-home-v2 .hero-text .sub {
  font-size: var(--fs-lg); color: var(--n600);
  margin-bottom: var(--s8); max-width: 480px;
  line-height: 1.65;
}
.hero-home-v2 .hero-text .checklist {
  list-style: none; margin: 0 0 var(--s10, var(--s10)) 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--s3);
  margin-bottom: var(--s8);
}
.hero-home-v2 .hero-text .checklist li {
  display: flex; gap: var(--s3); align-items: flex-start;
  font-size: var(--fs-base); color: var(--n700);
}
.hero-home-v2 .hero-text .checklist .check-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--primary-soft); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.hero-home-v2 .hero-text .checklist .check-icon svg { width: 14px; height: 14px; }
.hero-home-v2 .hero-media {
  position: relative; min-height: 80vh; overflow: hidden;
}
.hero-home-v2 .hero-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-home-v2 .hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,250,248,0.6) 0%, transparent 25%);
  pointer-events: none;
}

/* Hero Trust Badges innerhalb des Heros, unten links */
.hero-home-v2 .trust-mini {
  display: flex; gap: var(--s6); align-items: center; flex-wrap: wrap;
  font-size: var(--fs-sm); color: var(--n500);
  padding-top: var(--s6); border-top: 1px solid var(--n200);
}
.hero-home-v2 .trust-mini strong { color: var(--n800); }
.hero-home-v2 .trust-mini .badge {
  display: inline-flex; align-items: center; gap: var(--s2);
}
.hero-home-v2 .trust-mini .badge svg {
  width: 16px; height: 16px; color: var(--secondary);
}

/* ====== HERO PILLAR — Volle Bühne, full-bleed ====== */
.hero-pillar-v2 {
  position: relative; padding: 0; min-height: 520px;
  overflow: hidden;
}
.hero-pillar-v2 .bg-img {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-pillar-v2 .bg-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.hero-pillar-v2 .bg-img::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-overlay-strong);
}
.hero-pillar-v2 .container {
  position: relative; z-index: 1; color: var(--n50);
  padding-top: var(--s24); padding-bottom: var(--s24);
  min-height: 520px; display: flex; flex-direction: column; justify-content: center;
}
.hero-pillar-v2 .eyebrow { color: var(--secondary); }
.hero-pillar-v2 .eyebrow::before { background: var(--secondary); }
.hero-pillar-v2 h1 { color: var(--n50); max-width: 800px; margin-bottom: var(--s6); }
.hero-pillar-v2 .sub {
  font-size: var(--fs-xl); color: rgba(250,250,248,0.92);
  max-width: 640px; margin-bottom: var(--s8); line-height: 1.6;
}
.hero-pillar-v2 .checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s6);
  max-width: 720px; margin-bottom: var(--s8); list-style: none;
}
.hero-pillar-v2 .checklist li {
  display: flex; gap: var(--s3); align-items: center; color: var(--n50);
}
.hero-pillar-v2 .checklist .check-icon {
  width: 24px; height: 24px; border-radius: var(--r-full);
  background: rgba(58,139,208,0.20); border: 1.5px solid var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); flex-shrink: 0;
}
.hero-pillar-v2 .checklist .check-icon svg { width: 14px; height: 14px; }

/* ====== HERO MINIMAL (Kontakt) ====== */
.hero-minimal-v2 {
  position: relative; padding: var(--s20) 0 var(--s16) 0;
  background: var(--dramatic);
  color: var(--n50); overflow: hidden;
}
.hero-minimal-v2::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero-radial); opacity: 0.6;
}
.hero-minimal-v2 .container { position: relative; z-index: 1; text-align: center; }
.hero-minimal-v2 .eyebrow {
  color: var(--secondary); justify-content: center;
}
.hero-minimal-v2 .eyebrow::before { background: var(--secondary); }
.hero-minimal-v2 h1 {
  color: var(--n50); margin: var(--s4) 0 var(--s4) 0;
  font-size: clamp(1.875rem, 3.8vw, 3.25rem);
}
.hero-minimal-v2 .sub {
  font-size: var(--fs-lg); color: rgba(250,250,248,0.85);
  max-width: 640px; margin: 0 auto;
}
.hero-minimal-v2 .sub strong { color: var(--n50); }

/* ====== TRUST STAT BAR ====== */
.trust-bar {
  background: var(--surface);
  position: relative; margin-top: -40px; z-index: 3;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  padding: var(--s8); margin-bottom: 0;
}
.trust-bar .grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s12); text-align: center;
}
.trust-bar .grid > div { position: relative; }
.trust-bar .grid > div + div::before {
  content: ""; position: absolute; left: calc(-1 * var(--s6)); top: 10%; bottom: 10%;
  width: 1px; background: var(--n200);
}
.trust-bar .num {
  font-size: var(--fs-5xl); font-weight: 800; color: var(--primary);
  line-height: 1; letter-spacing: -0.02em;
  background: var(--grad-primary-to-sec);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.trust-bar .lbl { font-size: var(--fs-sm); color: var(--n600); margin-top: var(--s2); font-weight: 500; }

/* ====== VORTEILS-STRIPE (mit Custom-SVG) ====== */
.vorteile-v2 { padding: var(--s24) 0; }
.vorteile-v2 .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8);
}
.vorteile-v2 .item {
  text-align: center; padding: var(--s4);
}
.vorteile-v2 .ico-box {
  width: 88px; height: 88px; margin: 0 auto var(--s6) auto;
  background: var(--grad-primary-to-sec);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--sh-lg);
  transition: transform 0.3s ease;
}
.vorteile-v2 .item:hover .ico-box { transform: scale(1.05) rotate(-3deg); }
.vorteile-v2 .ico-box svg { width: 40px; height: 40px; }
.vorteile-v2 h3 { margin-bottom: var(--s2); }
.vorteile-v2 p { color: var(--n600); }

/* ====== CARDS ====== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s6); }
.card {
  background: var(--surface); border-radius: var(--r-xl); padding: var(--s8);
  border: 1px solid var(--n200); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
  background: var(--grad-card-hover);
}
.card:hover::before { transform: scaleX(1); }
.card.pillar { border-left: 4px solid var(--primary); padding-left: calc(var(--s8) - 4px + var(--s4)); }
.card.pillar.kbv { border-left-color: var(--secondary); }
.card .eyebrow { margin-bottom: var(--s2); }
.card.kbv .eyebrow { color: var(--secondary); }
.card.kbv .eyebrow::before { background: var(--secondary); }
.card h3 { margin-bottom: var(--s3); }
.card p { font-size: var(--fs-base); color: var(--n600); margin-bottom: var(--s4); flex-grow: 1; line-height: 1.6; }
.card .card-link {
  display: inline-flex; align-items: center; gap: var(--s2);
  color: var(--primary); font-weight: 600; font-size: var(--fs-base);
  margin-top: auto;
}
.card .card-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.card .card-link:hover { color: var(--secondary); }
.card .card-link:hover svg { transform: translateX(4px); }

/* Quick-Win Badge */
.qw-badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--secondary-soft); color: var(--primary);
  padding: var(--s1) var(--s3); border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--secondary);
  margin-bottom: var(--s3); align-self: flex-start;
}
.qw-badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--secondary); border-radius: var(--r-full);
  box-shadow: 0 0 0 3px rgba(58,139,208,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(58,139,208,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(58,139,208,0.10); }
}

/* ====== ANSPRECHPARTNER (groesser) ====== */
.contact-card-v2 {
  background: var(--surface); border-radius: var(--r-xl); padding: var(--s8);
  border: 1px solid var(--n200); box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 360px;
  position: relative; overflow: hidden;
}
.contact-card-v2::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: var(--grad-primary-to-sec);
}
.contact-card-v2 .avatar {
  width: 140px; height: 140px; border-radius: var(--r-full); overflow: hidden;
  margin-bottom: var(--s4); border: 5px solid var(--surface);
  box-shadow: var(--sh-lg); position: relative; z-index: 1;
}
.contact-card-v2 .avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-card-v2 .name { font-size: var(--fs-xl); font-weight: 700; color: var(--n800); }
.contact-card-v2 .role { font-size: var(--fs-sm); color: var(--n500); margin-bottom: var(--s5, var(--s6)); }
.contact-card-v2 .divider {
  width: 40px; height: 2px; background: var(--secondary);
  margin: var(--s2) auto var(--s4) auto; border-radius: var(--r-full);
}
.contact-card-v2 .contact-line {
  font-size: var(--fs-base); color: var(--n700);
  display: inline-flex; gap: var(--s3); align-items: center;
  padding: var(--s2) 0; transition: color 0.2s ease;
}
.contact-card-v2 .contact-line svg {
  width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0;
}
.contact-card-v2 .contact-line:hover { color: var(--primary); }
.contact-card-v2 a.contact-line { text-decoration: none; }

/* ====== CTA STRIPE ====== */
.cta-stripe {
  background: var(--grad-hero-dark); color: var(--n50);
  padding: var(--s20) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-stripe::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero-radial); opacity: 0.7;
}
.cta-stripe .container { position: relative; z-index: 1; }
.cta-stripe h2 { color: var(--n50); margin-bottom: var(--s4); }
.cta-stripe .sub { color: rgba(250,250,248,0.85); font-size: var(--fs-lg); margin-bottom: var(--s8); max-width: 620px; margin-left: auto; margin-right: auto; }

/* ====== DONUT-SEKTION ====== */
.donut-section {
  background: var(--surface-alt);
  padding: var(--s24) 0;
}
.donut-section .header-block {
  text-align: center; margin-bottom: var(--s16);
}
.donut-section .header-block .eyebrow { justify-content: center; }
.donut-section .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center;
}
.donut-section .donut-wrap {
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 10px 30px rgba(26,78,122,0.15));
}
.donut-section .donut-wrap svg { width: 100%; max-width: 480px; height: auto; }
.donut-section .pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4);
}
.donut-section .pillar-card-mini {
  background: var(--surface); border-radius: var(--r-lg);
  padding: var(--s5, var(--s6)); border: 1px solid var(--n200);
  border-left: 3px solid var(--primary);
  transition: all 0.3s ease; cursor: pointer;
}
.donut-section .pillar-card-mini.kbv { border-left-color: var(--secondary); }
.donut-section .pillar-card-mini:hover {
  transform: translateX(4px); box-shadow: var(--sh-md);
  border-left-width: 5px;
}
.donut-section .pillar-card-mini .eyebrow { margin-bottom: var(--s2); }
.donut-section .pillar-card-mini.kbv .eyebrow { color: var(--secondary); }
.donut-section .pillar-card-mini.kbv .eyebrow::before { background: var(--secondary); }
.donut-section .pillar-card-mini h3 { font-size: var(--fs-xl); margin: 0; }

/* ====== TEXT-WITH-CARD ====== */
.text-card-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--s16);
  align-items: center;
}

/* ====== KONTAKT-KANAEL-KARTEN ====== */
.kanaele-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6);
}
.kanal-card {
  background: var(--surface); border-radius: var(--r-xl); padding: var(--s8) var(--s6);
  border: 1px solid var(--n200); box-shadow: var(--sh-md);
  text-align: center; transition: all 0.3s ease; position: relative;
}
.kanal-card:hover {
  transform: translateY(-6px); box-shadow: var(--sh-2xl);
}
.kanal-card .ico-circle {
  width: 80px; height: 80px; margin: 0 auto var(--s4) auto;
  background: var(--primary-softer); color: var(--primary);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.kanal-card.urgent .ico-circle { background: rgba(185,28,28,0.08); color: var(--error); }
.kanal-card.calm .ico-circle { background: var(--primary-soft); color: var(--primary); }
.kanal-card.appointment .ico-circle { background: var(--secondary-soft); color: var(--secondary); }
.kanal-card:hover .ico-circle { transform: scale(1.08); }
.kanal-card .ico-circle svg { width: 38px; height: 38px; }
.kanal-card h3 { margin-bottom: var(--s2); }
.kanal-card .sub-txt { color: var(--n500); font-size: var(--fs-sm); margin-bottom: var(--s5, var(--s6)); }
.kanal-card .btn { width: 100%; justify-content: center; }

/* ====== FAQ ====== */
.faq-item {
  border: 1px solid var(--n200); border-radius: var(--r-lg);
  padding: 0; margin-bottom: var(--s3); cursor: pointer;
  background: var(--surface); transition: all 0.2s ease;
}
.faq-item:hover { border-color: var(--secondary); }
.faq-item[open] { border-color: var(--secondary); box-shadow: var(--sh-md); }
.faq-item summary {
  font-size: var(--fs-lg); font-weight: 600; color: var(--n800);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: var(--s5, var(--s6)) var(--s6);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0; width: 24px; height: 24px;
  border-radius: var(--r-full); background: var(--primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231A4E7A'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
  background-size: 18px; background-position: center; background-repeat: no-repeat;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 var(--s6) var(--s5, var(--s6)) var(--s6); color: var(--n700); }

/* ====== FORM ====== */
.form-box {
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: var(--s8); max-width: 540px;
  border: 1px solid var(--n200);
}
.form-row { margin-bottom: var(--s4); }
.form-row label { display: block; font-size: var(--fs-sm); font-weight: 500; color: var(--n700); margin-bottom: var(--s2); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 0.75rem 0.875rem; border-radius: var(--r-md);
  border: 1.5px solid var(--n300); font-family: inherit; font-size: var(--fs-base);
  color: var(--n800); background: var(--surface); transition: all 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(58,139,208,0.12);
}
.form-row .helper { font-size: var(--fs-xs); color: var(--n500); margin-top: var(--s1); }
.form-row.check { display: flex; gap: var(--s3); align-items: flex-start; }
.form-row.check input { width: auto; margin-top: 4px; }
.form-row.check label { font-size: var(--fs-sm); color: var(--n600); font-weight: normal; margin-bottom: 0; }

/* ====== FOOTER REICHER ====== */
.footer-trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--n200); border-bottom: 1px solid var(--n200);
  padding: var(--s8) 0;
}
.footer-trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s8); flex-wrap: wrap;
}
.footer-trust-strip .label {
  font-size: var(--fs-xs); color: var(--n500);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-trust-strip .badges {
  display: flex; gap: var(--s8); align-items: center; flex-wrap: wrap;
}
.footer-trust-strip .badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--fs-sm); color: var(--n700); font-weight: 600;
}
.footer-trust-strip .badge svg {
  width: 22px; height: 22px; color: var(--secondary);
}

footer.main {
  background: var(--dramatic); color: var(--n300);
  padding: var(--s16) 0 var(--s6) 0;
  position: relative; overflow: hidden;
}
footer.main::before {
  content: ""; position: absolute; top: 0; right: 0; width: 60%; height: 100%;
  background: var(--grad-hero-radial); opacity: 0.4; pointer-events: none;
}
footer.main > .container { position: relative; z-index: 1; }
footer.main .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s12); margin-bottom: var(--s12);
}
footer.main .brand-block .logo-light img {
  height: 38px; width: auto; filter: brightness(0) invert(1) opacity(0.95);
  margin-bottom: var(--s4);
}
footer.main .brand-block p { color: rgba(250,250,248,0.65); font-size: var(--fs-sm); line-height: 1.7; max-width: 320px; }
footer.main h4 {
  color: var(--n50); font-size: var(--fs-base); font-weight: 600;
  margin-bottom: var(--s4); letter-spacing: -0.01em;
}
footer.main ul { list-style: none; padding: 0; }
footer.main li { margin-bottom: var(--s3); }
footer.main a { color: rgba(250,250,248,0.65); font-size: var(--fs-sm); transition: all 0.15s ease; }
footer.main a:hover { color: var(--n50); padding-left: 4px; }
footer.main .accent-link { color: var(--secondary); }
footer.main .accent-link::before { content: "→ "; }
footer.main .contact-line {
  display: flex; gap: var(--s2); align-items: center;
  color: rgba(250,250,248,0.65); font-size: var(--fs-sm); margin-bottom: var(--s3);
}
footer.main .contact-line svg { width: 16px; height: 16px; color: var(--secondary); }
footer.main .bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s4);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s4);
  font-size: var(--fs-xs); color: rgba(250,250,248,0.4);
}
footer.main .bottom-bar a { color: rgba(250,250,248,0.55); font-size: var(--fs-xs); }
footer.main .bottom-bar a:hover { color: var(--n50); padding-left: 0; }
footer.main .social {
  display: flex; gap: var(--s2);
}
footer.main .social a {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
footer.main .social a:hover {
  background: var(--secondary); transform: translateY(-2px); padding: 0;
}
footer.main .social a svg { width: 18px; height: 18px; }

/* ====== ANNOTATION (Modul-IDs Toggle) ====== */
.annotation { position: relative; }
.annotation::before {
  content: attr(data-module);
  position: absolute; top: 4px; right: 4px; z-index: 10;
  background: var(--n900); color: var(--secondary);
  padding: 3px 10px; border-radius: var(--r-sm);
  font-size: 10px; font-weight: 600; font-family: ui-monospace, monospace;
  letter-spacing: 0.04em;
  opacity: 0; transition: opacity 0.2s ease;
  pointer-events: none;
  border: 1px solid var(--secondary);
}
.annotated.show-annotations .annotation::before { opacity: 0.9; }

/* ====== MOCKUP HINT BAR ====== */
.mockup-hint {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--dramatic); color: var(--n50);
  padding: var(--s2) var(--s6); font-size: var(--fs-sm); text-align: center;
  display: flex; gap: var(--s4); align-items: center; justify-content: center;
  font-weight: 500; border-bottom: 2px solid var(--secondary);
}
.mockup-hint a { color: var(--secondary); text-decoration: underline; }
.mockup-hint label { display: inline-flex; gap: var(--s2); cursor: pointer; }
.mockup-hint strong { color: var(--secondary); }
body.has-hint { padding-top: 40px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1023px) {
  .hero-home-v2 .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-home-v2 .hero-text { padding: var(--s16) var(--s6); }
  .hero-home-v2 .hero-media { min-height: 400px; }
  .donut-section .grid { grid-template-columns: 1fr; }
  .text-card-grid { grid-template-columns: 1fr; }
  .vorteile-v2 .grid { grid-template-columns: 1fr; }
  .hero-pillar-v2 .checklist { grid-template-columns: 1fr; }
  footer.main .grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .kanaele-grid { grid-template-columns: 1fr; }
  .trust-bar .grid { grid-template-columns: 1fr; gap: var(--s8); }
  .trust-bar .grid > div + div::before { display: none; }
}
@media (max-width: 767px) {
  .topbar { display: none; }
  .nav { display: none; }
  .container, .container-wide, .container-narrow { padding-left: var(--s4); padding-right: var(--s4); }
  footer.main .grid { grid-template-columns: 1fr; }
  .footer-trust-strip .container { justify-content: center; text-align: center; }
}


/* ====== V3 NEUE MODULE ====== */

/* Logo-Lockup (Symbol + Wortmarke) */
.logo-lockup {
  display: inline-flex; align-items: center; gap: var(--s3);
  text-decoration: none; color: var(--n800);
  font-weight: 700; font-size: var(--fs-lg); letter-spacing: -0.02em;
}
.logo-lockup img { height: 32px; width: auto; }
.logo-lockup .wordmark { line-height: 1; }
.logo-lockup .wordmark .accent { color: var(--primary); font-weight: 500; }
.logo-lockup-light { color: var(--n50); }
.logo-lockup-light .wordmark .accent { color: var(--secondary); }

/* Kontakt-Button im Header heller / lesbarer */
.header .btn-primary {
  background: var(--primary); color: var(--n50);
  box-shadow: 0 2px 8px -2px rgba(26,78,122,0.4);
}
.header .btn-primary:hover {
  background: var(--secondary); color: var(--n50);
}

/* Dropdown-Andeutung in Nav */
.nav a.has-dropdown::after {
  content: ""; display: inline-block; width: 0; height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle; opacity: 0.6;
}

/* Hero v3 — Full-bleed BG-Image + Overlay (comito.de Stil) */
.hero-v3 {
  position: relative; overflow: hidden; min-height: 75vh;
  display: flex; align-items: center;
  color: var(--n50);
  padding-top: var(--s12); padding-bottom: var(--s12);
}
.hero-v3 .bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-v3 .bg-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-v3 .bg-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,31,51,0.92) 0%, rgba(10,31,51,0.78) 40%, rgba(10,31,51,0.55) 100%);
}
.hero-v3 .bg-img::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 30% 50%, rgba(58,139,208,0.18) 0%, transparent 60%);
}
.hero-v3 .container-wide { position: relative; z-index: 1; width: 100%; }
.hero-v3 .hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s12);
  align-items: center;
}
.hero-v3 .hero-text .eyebrow {
  color: var(--secondary); margin-bottom: var(--s4);
}
.hero-v3 .hero-text .eyebrow::before { background: var(--secondary); }
.hero-v3 .hero-text h1 {
  color: var(--n50); margin-bottom: var(--s4); max-width: 700px;
}
.hero-v3 .hero-text h1 strong { color: var(--secondary); font-weight: inherit; }
.hero-v3 .hero-text .sub {
  font-size: var(--fs-lg); color: rgba(250,250,248,0.85);
  max-width: 580px; margin-bottom: var(--s6);
}
.hero-v3 .hero-text .checklist {
  list-style: none; padding: 0; margin: 0 0 var(--s8) 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s5, var(--s5));
  max-width: 720px;
}
.hero-v3 .hero-text .checklist li {
  display: flex; gap: var(--s3); align-items: center;
  color: rgba(250,250,248,0.95); font-size: var(--fs-sm);
}
.hero-v3 .hero-text .checklist .check-icon {
  width: 22px; height: 22px; border-radius: var(--r-full);
  background: rgba(58,139,208,0.25); border: 1.5px solid var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); flex-shrink: 0;
}
.hero-v3 .hero-text .checklist .check-icon svg { width: 12px; height: 12px; }
.hero-v3 .hero-text .btn-row { margin-bottom: var(--s8); }

/* Video-Card (rechts vom Hero-Text) */
.video-card {
  background: var(--surface); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-2xl);
  position: relative;
}
.video-card .video-thumb {
  position: relative; aspect-ratio: 4/5;
  background: #2a2a2a; overflow: hidden;
}
.video-card .video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card .video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,31,51,0.85) 100%);
}
.video-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.95); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.video-card .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--secondary); color: var(--n50);
}
.video-card .play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.video-card .video-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s5, var(--s6)); color: var(--n50); z-index: 1;
}
.video-card .video-meta .label {
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--secondary); margin-bottom: var(--s2);
}
.video-card .video-meta h4 {
  color: var(--n50); font-size: var(--fs-lg); font-weight: 600; line-height: 1.3;
}

/* Trust-Badge-Row im Hero unten */
.hero-trust-row {
  display: flex; gap: var(--s8); align-items: center;
  flex-wrap: wrap; padding-top: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-row .badge {
  display: flex; align-items: center; gap: var(--s3);
  color: rgba(250,250,248,0.9);
}
.hero-trust-row .badge .num {
  font-size: var(--fs-2xl); font-weight: 800; color: var(--n50);
  line-height: 1; letter-spacing: -0.01em;
}
.hero-trust-row .badge .lbl {
  font-size: var(--fs-xs); color: rgba(250,250,248,0.7);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600;
}
.hero-trust-row .google-badge {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s2) var(--s4);
  background: rgba(255,255,255,0.10); border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-row .google-badge .g-icon {
  width: 28px; height: 28px;
  background: #fff; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
}
.hero-trust-row .google-badge .g-icon svg { width: 18px; height: 18px; }
.hero-trust-row .google-badge .stars { color: #FBBC04; font-size: 14px; letter-spacing: 1px; }
.hero-trust-row .google-badge .rating { font-weight: 700; color: var(--n50); margin-left: var(--s1); }
.hero-trust-row .google-badge small { color: rgba(250,250,248,0.7); font-size: var(--fs-xs); display: block; }

/* Erklaervideo-Sektion (separates Modul) */
.video-explain-section {
  background: var(--surface);
  padding: var(--s24) 0;
}
.video-explain-section .grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s12);
  align-items: center;
}
.video-explain-section .text-block .eyebrow { margin-bottom: var(--s3); }
.video-explain-section .text-block h2 { margin-bottom: var(--s4); }
.video-explain-section .text-block .sub {
  font-size: var(--fs-lg); color: var(--n600); margin-bottom: var(--s6);
  line-height: 1.6;
}

/* Testimonial Slider */
.testimonial-section { background: var(--surface-alt); padding: var(--s24) 0; }
.testimonial-section .header-block { text-align: center; margin-bottom: var(--s12); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6);
}
.testimonial-card {
  background: var(--surface); border-radius: var(--r-xl);
  padding: var(--s8); box-shadow: var(--sh-md);
  display: flex; flex-direction: column; position: relative;
  border-top: 4px solid var(--secondary);
}
.testimonial-card .stars {
  color: #FBBC04; font-size: var(--fs-lg); margin-bottom: var(--s4);
  letter-spacing: 2px;
}
.testimonial-card .quote-mark {
  position: absolute; top: var(--s5, var(--s6)); right: var(--s5, var(--s6));
  font-size: 60px; line-height: 1;
  color: var(--primary-soft); font-family: serif;
  pointer-events: none;
}
.testimonial-card .quote-body {
  font-size: var(--fs-base); color: var(--n700); line-height: 1.6;
  margin-bottom: var(--s6); flex-grow: 1; font-style: italic;
}
.testimonial-card .author {
  display: flex; align-items: center; gap: var(--s3);
  padding-top: var(--s5, var(--s6)); border-top: 1px solid var(--n200);
}
.testimonial-card .author .ini {
  width: 44px; height: 44px; border-radius: var(--r-full);
  background: var(--grad-primary-to-sec); color: var(--n50);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--fs-base);
  flex-shrink: 0;
}
.testimonial-card .author .name { font-weight: 700; color: var(--n800); font-size: var(--fs-sm); }
.testimonial-card .author .role { font-size: var(--fs-xs); color: var(--n500); margin-top: 2px; }

/* Vertikale Timeline */
.timeline-vertikal {
  position: relative; max-width: 800px; margin: 0 auto;
  padding-left: var(--s12);
}
.timeline-vertikal::before {
  content: ""; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--grad-primary-to-sec);
}
.timeline-step {
  position: relative; margin-bottom: var(--s10, 2.5rem); padding: var(--s5, 1.5rem) 0;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step .step-num {
  position: absolute; left: calc(-1 * var(--s12) + 0px); top: var(--s5, 1.5rem);
  width: 48px; height: 48px; border-radius: var(--r-full);
  background: var(--surface); border: 3px solid var(--primary);
  color: var(--primary); font-weight: 800; font-size: var(--fs-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); z-index: 2;
}
.timeline-step .step-content {
  background: var(--surface); border-radius: var(--r-lg);
  padding: var(--s6); border: 1px solid var(--n200);
  box-shadow: var(--sh-sm); transition: all 0.3s ease;
}
.timeline-step:hover .step-content {
  box-shadow: var(--sh-lg); transform: translateX(4px);
}
.timeline-step h3 { margin-bottom: var(--s2); color: var(--n800); }
.timeline-step p { color: var(--n600); line-height: 1.6; }

/* FAQ-Sektion mit Illustration */
.faq-section { background: var(--surface); padding: var(--s24) 0; }
.faq-section .grid {
  display: grid; grid-template-columns: 0.6fr 1fr; gap: var(--s12);
  align-items: start;
}
.faq-illustration {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.faq-illustration .big-icon {
  width: 200px; height: 200px;
  background: var(--grad-hero-dark); color: var(--secondary);
  border-radius: var(--r-2xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s6); box-shadow: var(--sh-xl);
}
.faq-illustration .big-icon svg { width: 100px; height: 100px; }
.faq-illustration h2 { color: var(--n800); margin-bottom: var(--s3); }
.faq-illustration .sub { color: var(--n600); }

/* Daten-Flow-Bridge (Linien/Knoten) */
.datenfluss-bridge {
  background: var(--bg);
  padding: var(--s16) 0;
  overflow: hidden;
}

/* Bild-Bridge */
.image-bridge {
  width: 100%; height: 320px; overflow: hidden; position: relative;
}
.image-bridge img { width: 100%; height: 100%; object-fit: cover; }
.image-bridge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,51,0.4) 0%, transparent 50%, rgba(10,31,51,0.5) 100%);
}

/* Termin-Buchung Sektion */
.terminbuchung-section {
  padding: var(--s24) 0;
  background: var(--bg);
}
.terminbuchung-section .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s12);
  align-items: center;
}
.termin-image {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl); aspect-ratio: 4/3;
}
.termin-image img { width: 100%; height: 100%; object-fit: cover; }

/* Header — Dropdown beim Hover (Andeutung) */
.nav-item-has-children { position: relative; }
.nav-item-has-children > a { padding-bottom: var(--s4); }
.nav-dropdown {
  position: absolute; top: 100%; left: -16px;
  background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--sh-xl); padding: var(--s2); min-width: 220px;
  border: 1px solid var(--n200);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item-has-children:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: var(--s3) var(--s4);
  color: var(--n700); font-weight: 500; font-size: var(--fs-sm);
  border-radius: var(--r-sm);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--primary-soft); color: var(--primary); padding-left: var(--s5, 1.25rem); }

/* Footer-Logo-Lockup fix */
footer.main .brand-block .logo-lockup img {
  filter: brightness(0) invert(1) opacity(0.95);
}

@media (max-width: 1023px) {
  .hero-v3 .hero-grid { grid-template-columns: 1fr; }
  .hero-v3 .hero-text .checklist { grid-template-columns: 1fr; }
  .video-explain-section .grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-section .grid { grid-template-columns: 1fr; }
  .faq-illustration { position: static; }
  .terminbuchung-section .grid { grid-template-columns: 1fr; }
}


/* ====== V3.1 FIXES ====== */

/* Header: zentrieren */
.header { width: 100%; }
.topbar { width: 100%; }
.topbar .container-wide { max-width: 1400px; margin: 0 auto; }

/* Logo-Symbol grösser im Header damit Wortmarke leserlicher */
.logo-lockup img { height: 36px; }
.logo-lockup { font-size: var(--fs-base); }
.logo-lockup .wordmark strong { font-weight: 800; }

/* Hero v3 fix: single-column wenn nur Text (kein Video) */
.hero-v3 .hero-grid.hero-grid-single {
  grid-template-columns: 1fr;
}
.hero-v3 .hero-grid-single .hero-text {
  max-width: 900px;
}
.hero-v3 .hero-grid-single .hero-text h1 {
  max-width: 100%;
}

/* video-explain-section: reduzieren padding */
.video-explain-section {
  padding: var(--s16) 0;
}
.video-explain-section .grid {
  gap: var(--s10, 2.5rem);
  align-items: center;
}

/* Donut sichtbar grösser, weniger Abstand */
.donut-explainer-svg {
  display: block; width: 100%; max-width: 540px; margin: 0 auto;
}

/* Contact-Card: Button normal */
.contact-card-v2 .contact-card-btn {
  margin-top: var(--s4); padding: 0.625rem 1.25rem;
  font-size: var(--fs-sm);
  width: auto !important;
}

/* Timeline alternating: 1 links, 2 rechts, 3 links */
.timeline-alternating {
  position: relative; max-width: 1100px; margin: 0 auto;
}
.timeline-alternating::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--grad-primary-to-sec);
  transform: translateX(-1px);
}
.timeline-alt-step {
  position: relative; margin-bottom: var(--s12);
  display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center;
}
.timeline-alt-step:last-child { margin-bottom: 0; }
.timeline-alt-step .step-num {
  grid-column: 2; width: 56px; height: 56px; border-radius: var(--r-full);
  background: var(--grad-primary-to-sec); color: var(--n50);
  border: 4px solid var(--surface);
  font-weight: 800; font-size: var(--fs-xl);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg); margin: 0 auto; z-index: 2;
}
.timeline-alt-step .step-content {
  background: var(--surface); border-radius: var(--r-lg);
  padding: var(--s6) var(--s8); border: 1px solid var(--n200);
  box-shadow: var(--sh-md);
}
.timeline-alt-step.left .step-content {
  grid-column: 1; margin-right: var(--s6);
  border-right: 4px solid var(--primary);
}
.timeline-alt-step.right .step-content {
  grid-column: 3; margin-left: var(--s6);
  border-left: 4px solid var(--primary);
}
.timeline-alt-step h3 { margin-bottom: var(--s2); color: var(--n800); }
.timeline-alt-step p { color: var(--n600); line-height: 1.6; }

@media (max-width: 1023px) {
  .timeline-alternating::before { left: 28px; }
  .timeline-alt-step {
    grid-template-columns: 56px 1fr;
    gap: var(--s4);
  }
  .timeline-alt-step .step-num { grid-column: 1; grid-row: 1; margin: 0; }
  .timeline-alt-step .step-content,
  .timeline-alt-step.left .step-content,
  .timeline-alt-step.right .step-content {
    grid-column: 2; margin: 0;
    border-left: 4px solid var(--primary); border-right: none;
  }
}

/* Kalender-Mockup */
.calendar-mockup {
  background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid var(--n200); box-shadow: var(--sh-md);
  padding: var(--s5, 1.25rem); user-select: none;
}
.calendar-mockup .cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--s4); padding-bottom: var(--s3);
  border-bottom: 1px solid var(--n200);
}
.calendar-mockup .cal-month {
  font-weight: 700; font-size: var(--fs-base); color: var(--n800);
}
.calendar-mockup .cal-nav {
  display: flex; gap: var(--s2);
}
.calendar-mockup .cal-nav button {
  width: 28px; height: 28px; border-radius: var(--r-sm);
  border: 1px solid var(--n200); background: var(--surface);
  color: var(--n600); cursor: pointer; font-size: var(--fs-sm);
  display: inline-flex; align-items: center; justify-content: center;
}
.calendar-mockup .cal-nav button:hover { background: var(--primary-soft); color: var(--primary); }
.calendar-mockup .cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  text-align: center; font-size: var(--fs-xs); color: var(--n500);
  font-weight: 600; margin-bottom: var(--s2);
}
.calendar-mockup .cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.calendar-mockup .cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-sm); border-radius: var(--r-sm); cursor: pointer;
  transition: all 0.15s ease;
  color: var(--n700);
}
.calendar-mockup .cal-day:hover { background: var(--primary-soft); color: var(--primary); }
.calendar-mockup .cal-day.muted { color: var(--n300); cursor: default; }
.calendar-mockup .cal-day.muted:hover { background: transparent; }
.calendar-mockup .cal-day.available { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.calendar-mockup .cal-day.selected { background: var(--primary); color: var(--n50); font-weight: 700; }
.calendar-mockup .cal-day.today { border: 2px solid var(--secondary); font-weight: 700; }
.calendar-mockup .cal-footer {
  margin-top: var(--s4); padding-top: var(--s3);
  border-top: 1px solid var(--n200);
  display: flex; gap: var(--s4); align-items: center; justify-content: space-between;
}
.calendar-mockup .cal-legend {
  display: flex; gap: var(--s3); font-size: var(--fs-xs); color: var(--n600);
}
.calendar-mockup .cal-legend span {
  display: inline-flex; align-items: center; gap: 4px;
}
.calendar-mockup .cal-legend .dot {
  width: 10px; height: 10px; border-radius: var(--r-full); background: var(--primary-soft);
}
.calendar-mockup .cal-legend .dot.sel { background: var(--primary); }
.calendar-mockup .cal-cta {
  padding: 0.5rem 1rem; background: var(--primary); color: white;
  border: none; border-radius: var(--r-md); font-weight: 600; font-size: var(--fs-sm);
  cursor: pointer;
}
.calendar-mockup .cal-cta:hover { background: var(--primary-hover); }

/* Aussagekräftige Illustration statt Datenfluss-Bridge */
.illustration-bridge {
  background: var(--bg);
  padding: var(--s16) 0;
}
.illustration-bridge .panel {
  background: var(--surface);
  border-radius: var(--r-2xl); box-shadow: var(--sh-lg);
  padding: var(--s12);
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--s8); align-items: center;
  position: relative;
}
.illustration-bridge .stage {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative;
}
.illustration-bridge .stage-icon {
  width: 88px; height: 88px; border-radius: var(--r-xl);
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s4); box-shadow: var(--sh-sm);
  position: relative; z-index: 2;
}
.illustration-bridge .stage-icon svg { width: 40px; height: 40px; }
.illustration-bridge .stage h4 {
  font-size: var(--fs-sm); font-weight: 700; color: var(--n800);
  margin-bottom: var(--s1); text-transform: uppercase; letter-spacing: 0.04em;
}
.illustration-bridge .stage p {
  font-size: var(--fs-xs); color: var(--n600); line-height: 1.5;
}
.illustration-bridge .stage:not(:last-child)::after {
  content: ""; position: absolute; top: 44px; right: -50%;
  width: 100%; height: 2px;
  background-image: linear-gradient(to right, var(--secondary) 50%, transparent 50%);
  background-size: 14px 2px;
  z-index: 1;
}
.illustration-bridge .stage:not(:last-child) .arrow-tip {
  position: absolute; top: 38px; right: -38px; z-index: 2;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .illustration-bridge .panel { grid-template-columns: 1fr; }
  .illustration-bridge .stage:not(:last-child)::after { display: none; }
  .illustration-bridge .stage:not(:last-child) .arrow-tip { display: none; }
}

/* Video-Sektion mit Christoph-Foto */
.video-feature {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-2xl); aspect-ratio: 16/9; background: var(--dramatic);
}
.video-feature img { width: 100%; height: 100%; object-fit: cover; }
.video-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(10,31,51,0.7) 100%);
}
.video-feature .play-btn-big {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.95); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35); z-index: 2;
}
.video-feature .play-btn-big:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--secondary); color: white;
}
.video-feature .play-btn-big svg { width: 32px; height: 32px; margin-left: 5px; }
.video-feature .video-tag {
  position: absolute; bottom: var(--s4); left: var(--s5, 1.25rem); z-index: 2;
  background: rgba(255,255,255,0.95); color: var(--primary);
  padding: var(--s1) var(--s3); border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* ====== V3.2 FIXES ====== */

/* Header: Logo links, Menue mittig, CTA rechts */
.header .container-wide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s8);
  padding: var(--s4) var(--s6);
}

.header .logo-img {
  display: inline-flex; align-items: center;
}
.header .logo-img img { height: 36px; width: auto; display: block; }

.header .nav {
  display: flex; gap: var(--s8); align-items: center;
  justify-content: center;
  margin: 0;
}

.header .header-cta {
  display: inline-flex; align-items: center;
}

/* Donut-Sektion-Fix: zwei Spalten, Video links, Donut rechts */
.video-explain-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.video-explain-section .donut-col {
  display: flex; align-items: center; justify-content: center;
}
.video-explain-section .donut-col svg {
  width: 100%; max-width: 460px; height: auto;
}

@media (max-width: 1023px) {
  .header .container-wide {
    grid-template-columns: 1fr auto;
    gap: var(--s4);
  }
  .header .nav { display: none; }
  .video-explain-section .grid { grid-template-columns: 1fr; }
}

/* Terminbuchung: Button kompakt mit Icon-Höhe = Text-Höhe */
.calendar-mockup .cal-cta {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  line-height: 1.2;
}
.calendar-mockup .cal-cta svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}


/* ====== V3.3 FIXES ====== */

/* Hero-BG: object-position 50% nach rechts verschieben */
.hero-v3 .bg-img img {
  object-position: 75% center;
}

/* Footer: Brand-Block ohne Logo, nur Text */
footer.main .brand-block .brand-name {
  font-size: var(--fs-lg); font-weight: 700;
  color: var(--n50);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}
footer.main .brand-block .brand-tagline {
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s4);
}

/* MVZ MODULES */


/* ====== MVZ MODULES ====== */

/* Hero MVZ — BG-Image + halbtransparentes Vorteils-Banner */
.hero-mvz {
  position: relative; overflow: hidden;
  padding: 0;
  min-height: 70vh;
  display: flex; align-items: center;
}
.hero-mvz .bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-mvz .bg-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 75% center;
}
.hero-mvz .bg-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(232,238,245,0.92) 0%, rgba(232,238,245,0.75) 35%, rgba(232,238,245,0.10) 70%);
}
.hero-mvz .container-wide { position: relative; z-index: 2; width: 100%; }

.hero-mvz .hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s12); align-items: center;
}

.hero-mvz .hero-text-col h1 {
  color: var(--n800); margin-bottom: var(--s4);
}
.hero-mvz .hero-text-col h1 strong { color: var(--secondary); }

/* Vorteils-Banner Overlay */
.hero-mvz-banner {
  background: rgba(26,78,122,0.72);
  color: var(--n50);
  border-radius: var(--r-xl);
  padding: var(--s8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,0.10);
}
.hero-mvz-banner h3 {
  color: var(--n50);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--s5, 1.25rem);
  letter-spacing: -0.01em;
}
.hero-mvz-banner .check-list {
  list-style: none; padding: 0; margin: 0 0 var(--s6) 0;
  display: flex; flex-direction: column; gap: var(--s3);
}
.hero-mvz-banner .check-list li {
  display: flex; gap: var(--s3); align-items: flex-start;
  color: rgba(250,250,248,0.95);
  font-size: var(--fs-base);
  line-height: 1.5;
}
.hero-mvz-banner .check-list .check-icon {
  width: 22px; height: 22px; border-radius: var(--r-full);
  background: rgba(58,139,208,0.30);
  border: 1.5px solid var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); flex-shrink: 0; margin-top: 2px;
}
.hero-mvz-banner .check-list .check-icon svg { width: 12px; height: 12px; }

/* MVZ-Donut Sektion: Donut links, langer Text rechts */
.mvz-donut-section {
  background: var(--surface); padding: var(--s24) 0;
}
.mvz-donut-section .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s12);
  align-items: center;
}
.mvz-donut-section .donut-wrap {
  display: flex; align-items: center; justify-content: center;
}
.mvz-donut-section .donut-wrap svg {
  width: 100%; max-width: 540px; height: auto;
}
.mvz-donut-section .text-col h2 { margin-bottom: var(--s4); }
.mvz-donut-section .text-col p { 
  color: var(--n700); 
  margin-bottom: var(--s4);
  line-height: 1.65;
}

/* Dunkelblauer Block "Professionelle Umsetzung" */
.umsetzung-section {
  background: var(--grad-hero-dark);
  color: var(--n50);
  padding: var(--s20) 0;
  position: relative;
  overflow: hidden;
}
.umsetzung-section::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero-radial);
  opacity: 0.5; pointer-events: none;
}
.umsetzung-section .container { position: relative; z-index: 1; }
.umsetzung-section .header-block { margin-bottom: var(--s10, 2.5rem); }
.umsetzung-section h2 { color: var(--n50); }
.umsetzung-section .eyebrow { color: var(--secondary); }
.umsetzung-section .eyebrow::before { background: var(--secondary); }
.umsetzung-section .grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: var(--s12); align-items: start;
}
.umsetzung-section .step-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--s5, 1.5rem);
}
.umsetzung-section .step-list li {
  display: flex; gap: var(--s5, 1.5rem); align-items: flex-start;
}
.umsetzung-section .step-list .num {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: var(--secondary); color: var(--n50);
  font-weight: 800; font-size: var(--fs-lg);
  display: flex; align-items: center; justify-content: center;
}
.umsetzung-section .step-list h4 {
  color: var(--n50);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--s1);
}
.umsetzung-section .step-list p {
  color: rgba(250,250,248,0.80);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.umsetzung-section .ansprech-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: var(--s6);
  text-align: center;
}
.umsetzung-section .ansprech-card .label-eyebrow {
  font-size: var(--fs-xs);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s4);
}
.umsetzung-section .ansprech-card .avatar {
  width: 110px; height: 110px; border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto var(--s4) auto;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: var(--sh-lg);
}
.umsetzung-section .ansprech-card .avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.umsetzung-section .ansprech-card .name {
  color: var(--n50);
  font-size: var(--fs-lg);
  font-weight: 700;
}
.umsetzung-section .ansprech-card .role {
  color: rgba(250,250,248,0.65);
  font-size: var(--fs-sm);
  margin-bottom: var(--s4);
}
.umsetzung-section .ansprech-card .btn {
  /* kompakt, nicht full-width — wie ein normaler kleiner Button */
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  line-height: 1.2;
}
.umsetzung-section .ansprech-card .btn svg {
  width: 14px; height: 14px;
}

/* Case Study Praxisbeispiel */
.case-study {
  background: var(--surface);
  padding: var(--s20) 0;
}
.case-study .header-block {
  margin-bottom: var(--s10, 2.5rem);
}
.case-study .case-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--s10, 2.5rem); align-items: start;
}
.case-study .case-text h3 {
  color: var(--n800);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: var(--s5, 1.5rem) 0 var(--s2) 0;
}
.case-study .case-text h3:first-child { margin-top: 0; }
.case-study .case-text p {
  color: var(--n700); line-height: 1.6;
  margin-bottom: var(--s3);
}
.case-study .case-text ul {
  list-style: none; padding: 0; margin: var(--s3) 0;
}
.case-study .case-text ul li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s2) 0;
  color: var(--n700);
}
.case-study .case-text ul li::before {
  content: ""; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: var(--secondary);
  margin-top: 8px;
}
.case-study .case-feedback {
  background: var(--surface-alt);
  border-radius: var(--r-xl);
  padding: var(--s8);
  border-left: 4px solid var(--secondary);
  position: relative;
}
.case-study .case-feedback .label {
  font-size: var(--fs-xs);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s4);
}
.case-study .case-feedback blockquote {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--n700);
  margin: 0 0 var(--s5, 1.5rem) 0;
  font-style: italic;
}
.case-study .case-feedback .quote-mark {
  font-family: serif;
  font-size: 60px; line-height: 0.5;
  color: var(--secondary); opacity: 0.4;
  display: block; margin-bottom: var(--s3);
}
.case-study .case-feedback .author {
  font-size: var(--fs-sm);
  color: var(--n800);
  font-weight: 700;
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid var(--n200);
}

@media (max-width: 1023px) {
  .hero-mvz .hero-grid { grid-template-columns: 1fr; }
  .hero-mvz .bg-img::after {
    background: linear-gradient(180deg, rgba(232,238,245,0.95) 0%, rgba(232,238,245,0.85) 100%);
  }
  .mvz-donut-section .grid { grid-template-columns: 1fr; }
  .umsetzung-section .grid { grid-template-columns: 1fr; }
  .case-study .case-grid { grid-template-columns: 1fr; }
}


/* ====== STICKY CTA (Mail / Tel / WhatsApp / Termin) ====== */

/* Desktop: vertikale Side-Rail rechts mit abgerundeten Quadraten */
.sticky-cta {
  position: fixed;
  z-index: 90;
  right: var(--s5, 1.25rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  gap: var(--s2);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s2);
  box-shadow: var(--sh-xl), 0 0 0 1px var(--n200);
}
.sticky-cta a {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--n100);
  color: var(--primary);
  transition: all 0.18s ease;
  position: relative;
}
.sticky-cta a svg { width: 22px; height: 22px; flex-shrink: 0; }
.sticky-cta a .label-mobile { display: none; }
.sticky-cta a:hover {
  background: var(--primary); color: var(--n50);
  box-shadow: var(--sh-md);
}
.sticky-cta a.whatsapp { color: #128C7E; }
.sticky-cta a.whatsapp:hover { background: #25D366; color: var(--n50); }
.sticky-cta a.termin { color: var(--secondary); }
.sticky-cta a.termin:hover { background: var(--secondary); color: var(--n50); }

/* Tooltip-Label beim Hover (Desktop) */
.sticky-cta a .tooltip {
  position: absolute; right: calc(100% + var(--s3));
  top: 50%; transform: translateY(-50%);
  background: var(--n800); color: var(--n50);
  padding: var(--s2) var(--s3); border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease;
}
.sticky-cta a .tooltip::after {
  content: ""; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--n800);
}
.sticky-cta a:hover .tooltip { opacity: 1; }

/* Mobile: Bottom-Bar Grid mit 4 Spalten */
@media (max-width: 767px) {
  .sticky-cta {
    right: 0; left: 0; bottom: 0; top: auto;
    transform: none;
    background: var(--surface);
    border-radius: 0;
    border-top: 1px solid var(--n200);
    box-shadow: 0 -4px 20px rgba(10,31,51,0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: var(--s3) var(--s2);
    gap: 0;
  }
  .sticky-cta a {
    width: 100%; height: 56px;
    border-radius: var(--r-sm);
    background: transparent;
    flex-direction: column;
    gap: 2px;
  }
  .sticky-cta a svg { width: 20px; height: 20px; }
  .sticky-cta a:hover {
    background: var(--primary-soft);
    color: var(--primary);
  }
  .sticky-cta a .label-mobile {
    display: block;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--n600);
  }
  .sticky-cta a .tooltip { display: none; }
  body { padding-bottom: 68px; }
}

/* HIDE MOCKUP HINT (Kunden-Preview) */
.mockup-hint { display: none !important; }
body.has-hint { padding-top: 0 !important; }

footer.main .social a { color: rgba(255,255,255,0.7); font-size: 14px; }