/* =========================================================================
   Fluint Health — Website Redesign v2 — Shared Styles (CI-konform)
   Farbsystem nach CD_manual (Brand Book 2026)
   Headline-Font: Onest · UI-Font: Roboto
   ========================================================================= */

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

:root {
  /* ── CI BACKGROUND (Dark Theme) ── */
  --bg:         #1f1f1f;   /* seitenweiter Hintergrund (noch etwas tiefer als dark-grey) */
  --bg2:        #282828;   /* "dark grey" — Standard Dark-Theme-Basis */
  --card:       #373737;   /* "semi grey" — Karten */
  --card2:      #3f3f3f;   /* "semi mid grey" — gehobene Karten */
  --card3:      #2e2e2e;   /* tiefere Karten */
  --border:     #424242;
  --border2:    #525252;
  --border3:    #626262;

  /* ── CI CORPORATE COLORS ── */
  --blue:       #32CCFE;   /* Blue (Hauptakzent) */
  --blue-soft:  #9bc5ff;   /* Cold Blue */
  --blue-dark:  #330099;   /* Dark Blue */
  --blue-light: #c8f0fa;   /* Light Blue */
  --purple:     #9966ff;   /* Purple (Sekundärakzent) */
  --purple-light:#ccccfe;  /* Light Purple */
  --stealth-green: #7f9f9f;
  --stealth-purple:#c89cab;

  /* ── CI LUNÉA COLORS ── */
  --lunea:       #bc87bd;
  --lunea-light: #c2a1c4;

  /* ── CI INDICATOR COLORS ── */
  --green:      #afd68c;
  --yellow:     #fdd686;
  --red:        #f47d72;
  --red-dark:   #ab4d50;

  /* ── TEXT ── */
  --text:       #d6d6d6;
  --text2:      #9a9a9a;
  --text3:      #6a6a6a;
  --head:       #ffffff;

  /* ── ALIASES (Kompatibilität) ── */
  --accent:     var(--blue);
  --accent2:    #5ed8ff;
  --accent3:    #0ea5e9;
  --amber:      var(--yellow);

  /* ── LAYOUT ── */
  --max:        1160px;
  --radius:     10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

/* ── TYPOGRAFIE (CI: Onest für Headlines, Roboto für Body) ─── */
h1, h2, h3, h4, h5 { font-family: 'Onest', 'Roboto', sans-serif; }
h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 700; line-height: 1.05; color: var(--head); letter-spacing: -1.2px; }
h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; line-height: 1.15; color: var(--head); letter-spacing: -0.5px; }
h3 { font-size: 20px; font-weight: 500; color: var(--head); line-height: 1.3; letter-spacing: -0.2px; }
h4 { font-size: 17px; font-weight: 500; color: var(--head); line-height: 1.4; }
p  { color: var(--text); line-height: 1.7; font-weight: 400; }
a  { color: inherit; text-decoration: none; }
.sub { font-size: 18px; color: var(--text2); line-height: 1.7; max-width: 620px; }
strong { color: var(--head); font-weight: 600; }

.label {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.label.purple { color: var(--purple); }
.label.lunea { color: var(--lunea); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(50,204,254,0.08);
  border: 1px solid rgba(50,204,254,0.28);
  border-radius: 999px; padding: 6px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px; font-weight: 400; color: var(--blue);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── NAV ─── */
nav.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(31,31,31,0.92); backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 68px; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Onest', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--head); letter-spacing: 0.5px;
  flex-shrink: 0; text-transform: uppercase;
}
.nav-logo-mark {
  width: 118px; height: 38px;
  background-image: url(assets/logo-full.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  /* Text-Content im Markup wird ausgeblendet */
  font-size: 0; color: transparent; text-indent: -9999px;
  display: inline-block; flex-shrink: 0;
  color: var(--head);
}
/* Footer-Logo etwas kompakter */
.site-footer .nav-logo-mark { width: 108px; height: 34px; }
.nav-links {
  display: flex; gap: 28px; align-items: center; margin-left: 24px;
}
.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px; color: var(--text2);
  transition: color .15s; font-weight: 500;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--head); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -24px; left: 0; right: 0; height: 2px;
  background: var(--blue);
}
.nav-cta {
  margin-left: auto;
  background: var(--blue); color: #0b1220 !important;
  padding: 9px 28px 9px 16px; border-radius: 0 0 999px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  transition: all .15s;
  letter-spacing: 0.2px;
}
.nav-cta:hover { background: #5fd9ff; transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
}

/* ── BUTTONS (CI: drei CTA-Varianten) ─── */
.btn-primary {
  background: var(--blue); color: #0b1220 !important;
  padding: 14px 40px 14px 22px; border-radius: 0 0 999px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  display: inline-block; border: none; cursor: pointer;
  transition: all .15s;
  text-transform: uppercase;
}
.btn-primary:hover { background: #5fd9ff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(50,204,254,0.3); }

.btn-ghost {
  background: var(--card); color: var(--head) !important;
  padding: 13px 38px 13px 20px; border-radius: 0 0 999px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  border: 1px solid var(--border2); cursor: pointer;
  display: inline-block;
  transition: all .15s;
  text-transform: uppercase;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue) !important; }

.btn-soft {
  background: rgba(50,204,254,0.12); color: var(--blue) !important;
  padding: 13px 38px 13px 20px; border-radius: 0 0 999px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  border: 1px solid rgba(50,204,254,0.3); cursor: pointer;
  display: inline-block;
  transition: all .15s;
  text-transform: uppercase;
}
.btn-soft:hover { background: rgba(50,204,254,0.2); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

.link-arrow {
  color: var(--blue); font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .15s;
  font-family: 'Roboto', sans-serif;
}
.link-arrow:hover { gap: 10px; }
.link-arrow::after { content: '→'; }

/* ── HERO ─── */
.hero {
  padding: 110px 0 80px;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(153,102,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(50,204,254,0.08) 0%, transparent 70%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 800px at 30% 80%, rgba(188,135,189,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 24px; max-width: 940px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero h1 em.purple { color: var(--purple); }
.hero .sub { margin-bottom: 36px; font-size: 20px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CARDS ─── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--border3); }
.card-lg { padding: 36px; }

.card-icon {
  width: 44px; height: 44px;
  background: rgba(50,204,254,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
  color: var(--blue);
}
.card-icon.purple { background: rgba(153,102,255,0.14); color: var(--purple); }
.card-icon.green  { background: rgba(175,214,140,0.14); color: var(--green); }
.card-icon.yellow { background: rgba(253,214,134,0.14); color: var(--yellow); }
.card-icon.red    { background: rgba(244,125,114,0.14); color: var(--red); }
.card-icon.lunea  { background: rgba(188,135,189,0.14); color: var(--lunea); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── ÖKOSYSTEM-SKIZZE ─── */
.ecosystem {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 48px;
}
.ecosystem-layer {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  position: relative;
  background: var(--card);
}
.ecosystem-layer:last-child { margin-bottom: 0; }
.ecosystem-layer-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 14px; display: block;
}
.ecosystem-layer-title {
  font-family: 'Onest', sans-serif;
  color: var(--head); font-size: 18px; font-weight: 500;
  margin-bottom: 18px; letter-spacing: -0.1px;
}
.ecosystem-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ecosystem-chip {
  padding: 7px 14px;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-size: 13px; color: var(--text);
  font-weight: 400;
}
.ecosystem-layer.l1 {
  background: linear-gradient(180deg, rgba(50,204,254,0.10), rgba(50,204,254,0.02));
  border-color: rgba(50,204,254,0.35);
}
.ecosystem-layer.l1 .ecosystem-layer-label { color: var(--blue); }
.ecosystem-layer.l2 {
  background: linear-gradient(180deg, rgba(153,102,255,0.10), rgba(153,102,255,0.02));
  border-color: rgba(153,102,255,0.3);
}
.ecosystem-layer.l2 .ecosystem-layer-label { color: var(--purple); }
.ecosystem-layer.l3 {
  background: linear-gradient(180deg, rgba(175,214,140,0.08), rgba(175,214,140,0.01));
  border-color: rgba(175,214,140,0.28);
}
.ecosystem-layer.l3 .ecosystem-layer-label { color: var(--green); }
.ecosystem-layer.foundation {
  background: linear-gradient(180deg, rgba(253,214,134,0.07), rgba(253,214,134,0.01));
  border-color: rgba(253,214,134,0.28);
  border-top: 2px dashed rgba(253,214,134,0.4);
  margin-top: 22px;
}
.ecosystem-layer.foundation .ecosystem-layer-label { color: var(--yellow); }

/* ── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(50,204,254,0.10), var(--card) 40%);
}
.pricing-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--blue); color: #0b1220;
  padding: 4px 12px; border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.3px;
  text-transform: uppercase;
}
.pricing-name {
  font-family: 'Roboto', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--blue);
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 8px;
}
.pricing-card.tier-purple .pricing-name { color: var(--purple); }
.pricing-card.tier-green .pricing-name { color: var(--green); }
.pricing-desc { font-size: 14px; color: var(--text2); margin-bottom: 24px; min-height: 48px; }
.pricing-amount {
  font-family: 'Onest', sans-serif;
  font-size: 36px; font-weight: 700; color: var(--head); line-height: 1; letter-spacing: -1px;
}
.pricing-period { font-size: 14px; color: var(--text2); margin-top: 6px; }
.pricing-prefix { font-size: 14px; color: var(--text2); display: block; margin-bottom: 4px; }
.pricing-features { list-style: none; margin: 28px 0; padding: 0; flex: 1; }
.pricing-features li {
  font-size: 14px; color: var(--text); padding: 8px 0 8px 26px;
  position: relative; line-height: 1.5;
}
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--green); font-weight: 700;
}
.pricing-features li.excluded { color: var(--text3); }
.pricing-features li.excluded::before { content: '—'; color: var(--text3); }

/* ── FEATURES (ZWEISPALTIG) ─── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.feature-row:first-of-type { border-top: none; }
.feature-row.reverse .feature-text { order: 2; }
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-text { order: 0; }
}
.feature-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}

/* ── PHASEN / TIMELINE ─── */
.phases {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 900px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .phases { grid-template-columns: 1fr; } }
.phase {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 14px;
  align-items: center;
}
.phase-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: rgba(50,204,254,0.15); color: var(--blue);
  border-radius: 14px;
  font-family: 'Onest', sans-serif;
  font-weight: 700; font-size: 40px;
  letter-spacing: -1px;
  margin-bottom: 0;
  grid-row: 1; grid-column: 1;
  align-self: center;
}
.phase h4 {
  margin-bottom: 0; font-size: 17px;
  grid-row: 1; grid-column: 2;
  align-self: center;
}
.phase p { font-size: 14px; color: var(--text2); grid-column: 1 / -1; margin: 0; }
.phase > .mt-24 { grid-column: 1 / -1; margin-top: 0; }

/* ── TRUST ─── */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 24px 48px;
  align-items: center; justify-content: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-logo {
  font-family: 'Onest', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--text2);
  letter-spacing: 0.3px;
}
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 800px) { .trust-stats { grid-template-columns: repeat(2, 1fr); } }
.trust-stat { text-align: center; padding: 24px; border-left: 1px solid var(--border); }
.trust-stat:first-child { border-left: none; }
.trust-stat-num {
  font-family: 'Onest', sans-serif;
  font-size: 44px; font-weight: 700; color: var(--head);
  letter-spacing: -1.2px; line-height: 1;
}
.trust-stat-label { font-size: 13px; color: var(--text2); margin-top: 10px; }

/* ── CTA BLOCK ─── */
.cta-block {
  background: linear-gradient(135deg, rgba(50,204,254,0.14), rgba(153,102,255,0.08));
  border: 1px solid rgba(50,204,254,0.28);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  margin: 0 auto;
}
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { color: var(--text2); font-size: 18px; margin-bottom: 32px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-block .btn-group { justify-content: center; }

/* ── FORM ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--head);
  padding: 14px 16px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif; font-size: 15px;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue);
}
.field textarea { min-height: 140px; resize: vertical; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); }
.checkbox-row input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }

/* ── FOOTER ─── */
footer.site-footer {
  background: #151515;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand { max-width: 340px; }
.footer-brand p { font-size: 14px; color: var(--text2); margin-top: 12px; line-height: 1.6; }
.footer-col h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--text2);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--text);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text3);
}

/* ── BADGES ─── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  background: rgba(50,204,254,0.14); color: var(--blue);
  border: 1px solid rgba(50,204,254,0.28);
  text-transform: uppercase;
}
.badge.green  { background: rgba(175,214,140,0.14); color: var(--green); border-color: rgba(175,214,140,0.3); }
.badge.yellow { background: rgba(253,214,134,0.14); color: var(--yellow); border-color: rgba(253,214,134,0.32); }
.badge.red    { background: rgba(244,125,114,0.14); color: var(--red); border-color: rgba(244,125,114,0.32); }
.badge.purple { background: rgba(153,102,255,0.14); color: var(--purple); border-color: rgba(153,102,255,0.3); }
.badge.lunea  { background: rgba(188,135,189,0.14); color: var(--lunea); border-color: rgba(188,135,189,0.32); }

/* ── COMPARE TABLE ─── */
.compare {
  width: 100%; border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.compare th, .compare td {
  text-align: left; padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare th {
  font-family: 'Onest', sans-serif;
  font-weight: 500; color: var(--head); background: var(--card2);
  font-size: 13px; letter-spacing: 0.5px;
}
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--green); font-weight: 600; }
.compare .no { color: var(--text3); }
.compare .feature-name { color: var(--text); font-weight: 500; }

/* ── CODE BLOCK ─── */
.code-block {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--blue-light);
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre;
}
.code-block .kw { color: var(--purple); }
.code-block .str { color: var(--green); }
.code-block .com { color: var(--text3); font-style: italic; }

/* ── LUNÉA-BRAND ELEMENTE ─── */
.lunea-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--head); font-family: 'Onest', sans-serif;
  font-weight: 400; letter-spacing: 0.3px;
}
.lunea-mark {
  width: 28px; height: 28px;
  background: radial-gradient(circle at 30% 30%, var(--blue) 0%, var(--lunea) 55%, var(--purple) 100%);
  border-radius: 6px;
  transform: rotate(8deg);
}

/* ── HERO-VISUAL (AI-Chat-Mockup) ─── */
.hero-chat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  max-width: 460px;
  margin-top: 40px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(50,204,254,0.05);
}
.hero-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.hero-chat-bubble {
  padding: 12px 16px; border-radius: 12px;
  background: var(--card); margin-bottom: 10px;
  font-size: 14px; line-height: 1.5;
  max-width: 85%;
}
.hero-chat-bubble.user {
  background: rgba(50,204,254,0.14);
  color: var(--head); margin-left: auto;
  border-radius: 12px 12px 2px 12px;
}
.hero-chat-bubble.ai {
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 2px;
}
.hero-chat-bubble.ai .bubble-label {
  display: block; font-size: 12px; color: var(--blue);
  font-weight: 600; margin-bottom: 4px;
}

/* ── MISC ─── */
.divider { height: 1px; background: var(--border); margin: 64px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--blue); }
.text-purple { color: var(--purple); }
.text-lunea  { color: var(--lunea); }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Scroll-Offset für Anker */
[id] { scroll-margin-top: 80px; }

/* ═══════════════════════════════════════════════════════════
   PRODUKTE-DROPDOWN (Nav)
   ═══════════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-toggle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px; color: var(--text2);
  transition: color .15s; font-weight: 500;
  position: relative;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.7;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--head); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 10px; padding: 8px;
  min-width: 280px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(50,204,254,0.03);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text) !important;
  white-space: nowrap;
  transition: background .1s;
}
.nav-dropdown-menu a:hover { background: var(--card2); color: var(--head) !important; }
.nav-dropdown-menu a small {
  display: block;
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   SPRACH-SWITCHER
   ═══════════════════════════════════════════════════════════ */
.lang-switch {
  display: inline-flex; align-items: center;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 2px;
  font-family: 'Roboto', sans-serif;
  margin-left: 12px;
}
/* Native <select> variant — simple dropdown */
select.lang-switch {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 26px 6px 10px;
  color: var(--text2);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  background-color: var(--card);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23a6b3c7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 7px;
  font-family: inherit;
  transition: color .15s, border-color .15s;
}
select.lang-switch:hover { color: var(--head); }
select.lang-switch:focus { outline: none; border-color: var(--blue); }
select.lang-switch option { background: var(--card); color: var(--head); }

.lang-switch button {
  background: transparent;
  border: none;
  color: var(--text2);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.lang-switch button:hover { color: var(--head); }
.lang-switch button.active {
  background: var(--blue);
  color: #0b1220;
}

@media (max-width: 768px) {
  .lang-switch { margin-left: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   PARTNER-MARQUEE (Logo-Slider)
   ═══════════════════════════════════════════════════════════ */
.partner-marquee {
  overflow: hidden;
  padding: 48px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.partner-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: partner-scroll 50s linear infinite;
  align-items: center;
}
.partner-marquee:hover .partner-marquee-track { animation-play-state: paused; }
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 24px)); }
}
.partner-logo {
  flex-shrink: 0;
  padding: 18px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Onest', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  min-height: 64px;
  transition: border-color .15s, color .15s;
}
.partner-logo:hover { border-color: var(--blue); color: var(--head); }
.partner-logo small {
  font-family: 'Roboto', sans-serif;
  font-size: 10px; font-weight: 400;
  color: var(--text3);
  text-transform: none;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════
   TEAM-KARTEN (Über uns)
   ═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .15s;
}
.team-card:hover { border-color: var(--border3); }
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Onest', sans-serif;
  font-weight: 700; font-size: 18px;
  color: #0b1220;
  flex-shrink: 0;
}
.team-avatar.blue   { background: linear-gradient(135deg, var(--blue), #5ed8ff); }
.team-avatar.purple { background: linear-gradient(135deg, var(--purple), #c5a3ff); color: #fff; }
.team-avatar.green  { background: linear-gradient(135deg, var(--green), #c9e8a8); }
.team-avatar.yellow { background: linear-gradient(135deg, var(--yellow), #ffe4a6); }
.team-avatar.lunea  { background: linear-gradient(135deg, var(--lunea), var(--lunea-light)); color: #fff; }
.team-avatar.red    { background: linear-gradient(135deg, var(--red), #ffa7a0); color: #fff; }
.team-name {
  font-family: 'Onest', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--head);
  line-height: 1.3;
}
.team-role {
  font-size: 13px; color: var(--blue);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.team-bio {
  font-size: 13px; color: var(--text2);
  line-height: 1.6;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   FEATURED PARTNER (KKB Hero-Block)
   ═══════════════════════════════════════════════════════════ */
.featured-partner {
  background: linear-gradient(135deg, rgba(50,204,254,0.08), rgba(153,102,255,0.05));
  border: 1px solid rgba(50,204,254,0.25);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .featured-partner { grid-template-columns: 1fr; padding: 40px 28px; } }
.featured-partner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(50,204,254,0.15);
  color: var(--blue);
  font-family: 'Roboto', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.featured-partner h2 { margin-bottom: 16px; }
.featured-partner-quote {
  font-family: 'Onest', sans-serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
  margin: 24px 0;
}
.featured-partner-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.featured-partner-stat {
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
}
.featured-partner-stat-num {
  font-family: 'Onest', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--head);
  letter-spacing: -1px;
  line-height: 1;
}
.featured-partner-stat-label {
  font-size: 13px; color: var(--text2);
  margin-top: 8px;
}
