/* ============================================================
   VIVE MedTech — Design System
   Rekonstruiert aus Relaunch-Mockups Version 1 (02.08.2026)
   ============================================================ */

:root {
  /* Farben */
  --navy-950: #050A1F;   /* Topbar */
  --navy-900: #0B1120;   /* Hero dunkel */
  --navy-800: #0F172A;
  --navy-700: #1B1266;   /* Gradient dunkel */
  --violet-700: #221F6E; /* Dunkle Sektion */
  --violet-600: #32124B;
  --magenta-700: #6D1A6A;
  --magenta-600: #6B0F4A;
  --magenta-500: #A6175E;
  --red-600: #C41230;
  --cyan: #00A9E0;       /* Akzent, Buttons */
  --cyan-bright: #00AEEF;
  --blue: #0E4EFC;       /* Akzent-Wörter */
  --blue-soft: #38BDF8;
  --teal: #017C72;
  --light: #F0F3FC;      /* Helle Sektion */
  --light-2: #F5F7FA;
  --light-3: #E8EDF2;
  --white: #FFFFFF;
  --text: #0F172A;
  --muted: #475569;
  --muted-light: #CBD5E1;
  --line: #E5E7EB;

  /* Typo */
  --font: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;

  /* Maße */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;

  /* Schatten */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typografie ---------- */

.dachzeile {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }

.h-hero {
  font-size: clamp(38px, 4.6vw, 58px);
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 15ch;
}

.h-hero .accent, .h2 .accent { color: var(--cyan-bright); }
.h2 .accent-blue { color: var(--blue); }

.h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 22px;
}

.h3 { font-size: 22px; margin-bottom: 12px; }
.h4 { font-size: 18px; margin-bottom: 10px; }

.lead { font-size: 19px; color: var(--muted); }
.on-dark .lead, .on-dark p { color: var(--muted-light); }

.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn .arrow { font-weight: 400; }

.btn-cyan { background: var(--cyan); color: var(--white); }
.btn-cyan:hover { background: var(--cyan-bright); }

.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(15,23,42,.25);
}
.btn-ghost-dark:hover { border-color: var(--navy-800); }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--navy-950);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}

.topbar-social { display: flex; gap: 10px; }

.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0, 174, 239, .16);
  border: 1px solid rgba(0, 174, 239, .5);
  border-radius: 8px;
  color: var(--cyan-bright);
}
.topbar-social a:hover { background: rgba(0,174,239,.32); }
.topbar-social svg { width: 14px; height: 14px; }

.topbar-contact { display: flex; gap: 28px; align-items: center; }
.topbar-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan-bright); font-weight: 600;
}
.topbar-contact a:hover { color: var(--white); }
.topbar-contact svg { width: 15px; height: 15px; }

/* ---------- Header / Navigation ---------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 32px 0;
}

.logo { display: inline-flex; flex-direction: column; align-items: center; gap: 7px; }

.logo-mark {
  display: grid;
  grid-template-columns: repeat(2, 15px);
  grid-template-rows: repeat(2, 15px);
  gap: 3px;
}
.logo-mark span { border-radius: 4px; display: block; }
.logo-mark .m1 { background: var(--navy-800); border-radius: 4px 4px 4px 10px; }
.logo-mark .m2 { background: var(--cyan); border-radius: 4px 4px 10px 4px; }
.logo-mark .m3 { background: var(--red-600); border-radius: 4px 10px 4px 4px; }
.logo-mark .m4 { background: var(--blue-soft); border-radius: 10px 4px 4px 4px; }

.logo-word { text-align: center; line-height: 1.05; }
.logo-word .w1 {
  display: block; font-size: 27px; font-weight: 800; letter-spacing: .01em;
  color: var(--navy-800); text-transform: lowercase;
}
.logo-word .w2 {
  display: block; font-size: 14.5px; font-weight: 700; letter-spacing: .42em;
  color: var(--cyan); text-transform: lowercase; margin-left: .21em;
}

/* helle Logo-Variante (Footer) */
.logo.light .logo-word .w1 { color: var(--white); }
.logo.light .logo-word .w2 { color: var(--cyan-bright); }
.logo.light .logo-mark .m1 { background: var(--white); }

.main-nav { margin-top: 20px; width: 100%; }

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  padding: 16px 0 18px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-800);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--cyan); }
.main-nav a.active { color: var(--cyan); border-bottom-color: var(--cyan); }

.main-nav .lang {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--muted);
}
.main-nav .lang svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--navy-800); }

/* ---------- Hero (Startseite, dunkel) ---------- */

.hero-dark {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(166, 23, 94, .55), transparent 60%),
    radial-gradient(900px 600px at -12% 110%, rgba(14, 78, 252, .28), transparent 55%),
    linear-gradient(115deg, var(--navy-900) 0%, #141036 45%, #2B0F33 78%, #4A0F36 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-dark .waves {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .5;
}

.hero-dark .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 36px;
  margin: 42px 0 36px;
}

.hero-point { display: flex; gap: 14px; align-items: flex-start; }

.hero-point .icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 169, 224, .14);
  border: 1px solid rgba(0, 169, 224, .4);
  color: var(--cyan-bright);
}
.hero-point .icon svg { width: 21px; height: 21px; }

.hero-point b {
  display: block;
  font-size: 13.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.hero-point span { font-size: 14px; line-height: 1.5; color: var(--muted-light); }

.hero-certs {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-certs span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--muted-light);
}
.hero-certs svg { width: 17px; height: 17px; color: var(--cyan-bright); flex: 0 0 auto; }

/* Bild-Platzhalter (abstrakt, austauschbar) */
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 85% 8%, rgba(0,169,224,.35), transparent 55%),
    radial-gradient(90% 110% at 8% 92%, rgba(166,23,94,.30), transparent 55%),
    linear-gradient(140deg, #101A38, #1E1445 55%, #331345);
  border: 1px solid rgba(255,255,255,.10);
  min-height: 300px;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 18px; bottom: 14px;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ph .ph-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 84px; height: 84px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.8);
}
.ph .ph-icon svg { width: 38px; height: 38px; }

/* helle Platzhalter-Variante */
.ph.light {
  background:
    radial-gradient(120% 130% at 85% 8%, rgba(0,169,224,.16), transparent 55%),
    radial-gradient(90% 110% at 8% 92%, rgba(14,78,252,.10), transparent 55%),
    linear-gradient(140deg, #E8EEFB, #DCE6F7 60%, #D3DFF3);
  border-color: rgba(15,23,42,.08);
}
.ph.light::after { color: rgba(15,23,42,.45); }
.ph.light .ph-icon {
  background: rgba(255,255,255,.6);
  border-color: rgba(15,23,42,.10);
  color: var(--navy-800);
}

.hero-visual { position: relative; }
.hero-visual .ph { min-height: 460px; }

.hero-badge {
  position: absolute;
  right: -26px; bottom: 42px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #8E1D4E, #5E1038 70%);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  font-size: 13.5px; font-weight: 700; letter-spacing: .16em;
  line-height: 2.1; text-transform: uppercase;
  padding: 22px;
}

/* ---------- Hero Varianten (Unterseiten) ---------- */

.hero-split {
  background: var(--white);
  color: var(--text);
}
.hero-split .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}
.hero-split h1 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 24px;
}
.hero-split .ph { min-height: 420px; }

.hero-gradient {
  position: relative;
  background:
    radial-gradient(1000px 500px at 90% 0%, rgba(166,23,94,.5), transparent 60%),
    linear-gradient(120deg, #1F0B4A 0%, #3B0F52 55%, #6B0F4A 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-gradient .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}
.hero-gradient .ph { min-height: 420px; }

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-tags span {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 13.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-light);
}

/* Vollbreites Foto-Hero (Über uns) */
.hero-full {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    radial-gradient(120% 160% at 80% 0%, rgba(0,169,224,.30), transparent 55%),
    linear-gradient(160deg, #0B1B3A, #1E1445 55%, #331345);
  overflow: hidden;
}
.hero-full .ph-icon { width: 100px; height: 100px; }

/* ---------- Sektionen allgemein ---------- */

.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.light { background: var(--light); }
.section.light-2 { background: var(--light-2); }
.section.white { background: var(--white); }

.section.dark {
  background: linear-gradient(135deg, var(--navy-800), var(--violet-700) 60%, #2A1657);
  color: var(--white);
}
.section.dark-violet { background: var(--violet-700); color: var(--white); }

/* ---------- Karten / Grids ---------- */

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.card h3, .card h4 { color: var(--navy-800); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 25px; height: 25px; }

.card p { font-size: 15.5px; color: var(--muted); }

/* Zielgruppen-Karten mit Bild */
.aud-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.aud-card .ph { border-radius: 0; border: 0; min-height: 190px; }
.aud-card .aud-body { padding: 26px 26px 30px; position: relative; }
.aud-card .aud-icon {
  position: absolute; top: -26px; left: 26px;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 3px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-md);
}
.aud-card .aud-icon svg { width: 23px; height: 23px; }
.aud-card h3 { font-size: 18.5px; margin: 14px 0 10px; }
.aud-card p { font-size: 15px; color: var(--muted); }

/* Split-Layout (Bild/Text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split .ph { min-height: 400px; }

/* Nummerierte Argumente */
.num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; }
.num-item { border-top: 3px solid var(--cyan); padding-top: 24px; }
.num-item .num {
  font-size: 14px; font-weight: 800; letter-spacing: .16em;
  color: var(--blue); text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.num-item h3 { font-size: 20px; margin-bottom: 12px; }
.num-item p { font-size: 15.5px; color: var(--muted); }

/* Feature-Listen mit Check-Icons */
.check-list li {
  position: relative;
  padding: 10px 0 10px 38px;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,169,224,.12) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300A9E0" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/13px no-repeat;
}

/* Leistungs-Block (Icon + Text | Liste) */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: 0; }
.service-block .service-intro { display: flex; gap: 24px; align-items: flex-start; }
.service-block .service-intro .card-icon { flex: 0 0 auto; margin-bottom: 0; }
.service-block h3 { font-size: 24px; margin-bottom: 6px; }
.service-block .sub { font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.service-block p { color: var(--muted); }

/* Engineering-Karten (dunkle Sektion) */
.eng-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.eng-card .card-icon { background: rgba(0,169,224,.18); border: 1px solid rgba(0,169,224,.45); color: var(--cyan-bright); }
.eng-card h3 { color: var(--white); font-size: 17px; letter-spacing: .08em; text-transform: uppercase; }
.eng-card ul li {
  font-size: 14.5px; color: var(--muted-light);
  padding: 7px 0 7px 18px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.eng-card ul li:last-child { border-bottom: 0; }
.eng-card ul li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
}

/* Mindmap (Innovation): Zentralkreis mit Verbindungsbahnen */
.mindmap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px 72px;
  align-items: center;
  margin-top: 72px;
}
.mm-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.mm-col { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 2; }
.mm-left { align-items: flex-end; }
.mm-right { align-items: flex-start; }
.mindmap .hub-card { width: 100%; max-width: 330px; }
.mindmap .hub-center { margin: 0; position: relative; z-index: 2; flex: 0 0 auto; }

/* Hub-and-Spoke (Innovation) */
.hub-wrap { position: relative; margin-top: 64px; }
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 56px; }
.hub-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}
.hub-card h4 { color: var(--cyan-bright); font-size: 15.5px; letter-spacing: .08em; text-transform: uppercase; }
.hub-card p { font-size: 14px; color: var(--muted-light); margin-top: 6px; }
.hub-center {
  margin: 0 auto 44px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(0,169,224,.4), rgba(14,78,252,.14) 65%);
  border: 2px solid rgba(0,169,224,.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; color: var(--white);
  box-shadow: 0 0 90px rgba(0,169,224,.28);
}
.hub-center svg { width: 42px; height: 42px; color: var(--cyan-bright); }
.hub-center b { font-size: 16.5px; letter-spacing: .06em; text-transform: uppercase; max-width: 170px; line-height: 1.4; }

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px 56px; }
.team-card { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: start; }
.team-card .ph { min-height: 250px; border-radius: var(--radius-sm); }
.team-role {
  font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card h3 { font-size: 21px; margin-bottom: 6px; }
.team-card .team-claim { font-size: 16.5px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.team-card p { font-size: 15px; color: var(--muted); }
.team-tags { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.team-tags span {
  font-size: 13.5px; color: var(--muted);
  padding-left: 18px; position: relative;
}
.team-tags span::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
}

/* Team-Farben (Über uns) */
.team-accent-navy .ph { border-top: 5px solid var(--navy-800); }
.team-accent-blue .ph { border-top: 5px solid #2E6CB4; }
.team-accent-magenta .ph { border-top: 5px solid #A8326B; }
.team-accent-violet .ph { border-top: 5px solid #6B4CB3; }
.team-accent-navy .team-role { color: var(--navy-800); }
.team-accent-blue .team-role { color: #2E6CB4; }
.team-accent-magenta .team-role { color: #A8326B; }
.team-accent-violet .team-role { color: #6B4CB3; }

/* Logo-Leiste */
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 26px 56px;
}
.logo-strip span {
  font-weight: 800; font-size: 17px; letter-spacing: .06em;
  color: #94A3B8; text-transform: uppercase; white-space: nowrap;
}
.logo-strip small { display: block; font-size: 10.5px; letter-spacing: .2em; color: #B6C0CE; font-weight: 600; }

/* Statistik-Bar */
.stats-bar { background: #0A1E3D; color: var(--white); }
.stats-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 56px; padding-bottom: 56px;
}
.stat { text-align: center; }
.stat .stat-icon {
  width: 46px; height: 46px; margin: 0 auto 14px;
  border-radius: 12px; background: rgba(0,169,224,.15);
  border: 1px solid rgba(0,169,224,.4); color: var(--cyan-bright);
  display: flex; align-items: center; justify-content: center;
}
.stat .stat-icon svg { width: 22px; height: 22px; }
.stat b { display: block; font-size: 38px; letter-spacing: -.02em; color: var(--white); }
.stat span { font-size: 14px; color: var(--muted-light); }

/* Testimonials */
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-card::before {
  content: "\201E";
  position: absolute; top: 6px; right: 26px;
  font-size: 90px; line-height: 1;
  color: rgba(0,169,224,.18);
  font-family: Georgia, serif;
}
.testi-card blockquote { font-size: 16.5px; color: var(--text); font-weight: 500; margin-bottom: 22px; }
.testi-card .who { font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }
.testi-card .who b { color: var(--navy-800); display: block; font-size: 14.5px; }

/* Key-Facts-Tabelle */
.facts { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-top: 30px; }
.facts .fact {
  display: grid; grid-template-columns: 170px 1fr;
  border-bottom: 1px solid var(--line);
}
.facts .fact:last-child { border-bottom: 0; }
.facts .fact dt {
  background: var(--light); padding: 13px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.facts .fact dd { padding: 13px 20px; font-size: 15.5px; }
.facts .fact .ok { color: var(--teal); font-weight: 700; }

/* Timeline */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 44px; }
.timeline::before {
  content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan) 55%, var(--magenta-500));
  border-radius: 2px;
}
.tl-item { position: relative; padding: 0 0 46px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -41px; top: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--cyan);
  box-shadow: 0 0 0 5px rgba(0,169,224,.15);
}
.tl-item .tl-date {
  font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); display: block; margin-bottom: 8px;
}
.tl-item h3 { font-size: 20px; margin-bottom: 8px; }
.tl-item p { font-size: 15.5px; color: var(--muted); }

/* Standort-Karten */
.loc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.loc-card .loc-head {
  padding: 26px 32px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-800), var(--violet-700));
}
.loc-card .loc-head h3 { color: var(--white); font-size: 21px; margin-bottom: 2px; }
.loc-card .loc-head span { font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-bright); font-weight: 700; }
.loc-card .loc-body { padding: 28px 32px 32px; }
.loc-card .loc-body p { font-size: 15.5px; color: var(--muted); margin-bottom: 18px; }
.loc-card address { font-style: normal; font-size: 15px; border-top: 1px solid var(--line); padding-top: 18px; color: var(--text); }
.loc-card address b { display: block; margin-bottom: 2px; }

/* Statement (Innovation) */
.statement { display: grid; grid-template-columns: 1.2fr .8fr; gap: 72px; align-items: center; }
.statement blockquote {
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.35; font-weight: 700;
  color: var(--navy-800); margin: 18px 0 26px;
}
.statement .person { font-size: 15px; color: var(--muted); }
.statement .person b { color: var(--navy-800); display: block; font-size: 16.5px; }
.statement .ph { min-height: 380px; }

/* Kontakt-Card (Kontaktseite) */
.contact-card {
  background: #0F2240;
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 42px;
  box-shadow: var(--shadow-lg);
}
.contact-card h3 { color: var(--white); font-size: 20px; margin-bottom: 20px; }
.contact-card .cc-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0; font-size: 15.5px; color: var(--muted-light);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-card .cc-row:last-of-type { border-bottom: 0; }
.contact-card .cc-row svg { width: 19px; height: 19px; color: var(--cyan-bright); flex: 0 0 auto; margin-top: 3px; }
.contact-card .cc-row a { color: var(--white); font-weight: 600; }
.contact-card .cc-row a:hover { color: var(--cyan-bright); }
.contact-card .cc-person {
  margin-top: 26px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.contact-card .cc-person .lbl {
  font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: 10px;
}
.contact-card .cc-person b { display: block; font-size: 17px; margin-bottom: 6px; }

/* CTA-Bereich + Footer = ein durchgehender Block (gleicher Hintergrund, eine Trennlinie) */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, #1E0F4A 0%, #2D1B69 55%, #4A1D6E 100%);
  color: var(--white);
  text-align: center;
  padding: 88px 0 68px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.cta-band .waves { position: absolute; inset: 0; opacity: .4; pointer-events: none; }
.cta-band h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 16px; position: relative; }
.cta-band p { color: var(--muted-light); margin-bottom: 34px; position: relative; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Link-CTA mit Pfeil (z. B. „alle Projekte ansehen") */
.link-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; color: var(--navy-800);
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 4px; margin-top: 26px;
}
.link-cta:hover { color: var(--blue); }

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(120deg, #1E0F4A 0%, #2D1B69 55%, #4A1D6E 100%);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}
.site-footer h4 {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: 20px;
}
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { font-size: 15px; color: var(--muted-light); }
.site-footer ul a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-light);
}
.footer-social a:hover { color: var(--cyan-bright); border-color: var(--cyan-bright); }
.footer-social svg { width: 17px; height: 17px; }

.footer-note {
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 26px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 20px 0 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13.5px; color: rgba(255,255,255,.65);
}

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 88px 32px; }
.legal h1 { font-size: 36px; margin-bottom: 30px; }
.legal h2 { font-size: 21px; margin: 34px 0 12px; }
.legal p { color: var(--muted); margin-bottom: 12px; }
.legal address { font-style: normal; color: var(--muted); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-dark .container, .hero-split .container, .hero-gradient .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual .ph { min-height: 340px; }
  .hero-badge { right: 16px; }
  .split, .statement { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse > .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; gap: 30px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .mindmap { grid-template-columns: 1fr; gap: 24px; }
  .mindmap .hub-center { order: -1; margin: 0 auto 12px; }
  .mm-left, .mm-right { align-items: stretch; }
  .mindmap .hub-card { max-width: none; }
  .mm-lines { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .grid-4, .grid-3, .grid-2, .num-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .topbar-contact a span { display: none; }
  .site-header-inner { flex-direction: row; justify-content: space-between; padding: 16px 20px 0; }
  .main-nav { display: none; margin-top: 12px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; align-items: flex-start; padding: 8px 0 18px; }
  .main-nav a { display: block; padding: 10px 0; }
  .nav-toggle { display: inline-flex; margin-bottom: 12px; }
  .team-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .facts .fact { grid-template-columns: 1fr; }
  .facts .fact dt { padding-bottom: 4px; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

/* ============================================================
   Relaunch 2026-08-13 — Plasma-Design (Prompts_VIVE.pdf)
   Blutplasma-Visualisierung + Original-Logo
   ============================================================ */

:root {
  --plasma: url('../img/plasma.jpg');
  --plasma-cta: linear-gradient(rgba(12,8,44,.34), rgba(12,8,44,.34)), var(--plasma);
  --plasma-band: linear-gradient(rgba(9,6,34,.58), rgba(9,6,34,.58)), var(--plasma);
  --plasma-deep: linear-gradient(rgba(9,6,34,.68), rgba(9,6,34,.68)), var(--plasma);
}

/* Sektion mit Plasma-Hintergrund (dunkel abgedunkelt, Text weiss) */
.plasma-bg {
  background-image: var(--plasma-band);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

/* ---------- Einheitliche CTAs ----------
   laenglich, einzeilig, deutlich abgerundet, Plasma-Hintergrund */
.btn {
  background-image: var(--plasma-cta);
  background-size: cover;
  background-position: center 40%;
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(9,6,34,.30);
  text-shadow: 0 1px 5px rgba(0,0,0,.5);
}
.btn:hover {
  background-image: linear-gradient(rgba(12,8,44,.18), rgba(12,8,44,.18)), var(--plasma);
  background-color: transparent;
  box-shadow: 0 10px 28px rgba(9,6,34,.40);
}
.btn-cyan, .btn-navy,
.btn-cyan:hover, .btn-navy:hover { background-color: transparent; }

.btn-ghost-light, .btn-ghost-dark {
  color: var(--white);
  border-color: rgba(255,255,255,.42);
}
.btn-ghost-light:hover, .btn-ghost-dark:hover {
  background-color: transparent;
  background-image: linear-gradient(rgba(12,8,44,.18), rgba(12,8,44,.18)), var(--plasma);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

/* Link-CTA wird zum einheitlichen Plasma-Button */
.link-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background-image: var(--plasma-cta);
  background-size: cover;
  background-position: center 40%;
  color: var(--white);
  font-weight: 700; font-size: 16px; line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(9,6,34,.30);
  text-shadow: 0 1px 5px rgba(0,0,0,.5);
  margin-top: 26px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.link-cta:hover {
  color: var(--white);
  background-image: linear-gradient(rgba(12,8,44,.18), rgba(12,8,44,.18)), var(--plasma);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(9,6,34,.40);
}

/* ---------- Original-Logo ---------- */
.logo-img {
  height: 78px;
  width: auto;
  display: block;
  border-radius: 10px;
}

/* Logo auf dunklem/Plasma-Grund: weisse Badge (Logo hat weissen Grund, darf nicht veraendert werden) */
.logo-badge {
  display: inline-block;
  background: var(--white);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
}
.logo-badge img { height: 66px; width: auto; display: block; }
.logo-badge.lg img { height: 120px; }

/* ---------- Hero mit Plasma (Startseite + Projekte) ---------- */
.hero-dark, .hero-gradient {
  background-image: linear-gradient(rgba(9,6,34,.62), rgba(9,6,34,.62)), var(--plasma);
  background-size: cover;
  background-position: center 32%;
}

/* ---------- CTA-Bande + Footer: Plasma, ein durchgehender Block ---------- */
.cta-band {
  background-image: var(--plasma-band);
  background-size: cover;
  background-position: center;
  border-bottom: 0;
}

.site-footer {
  background-image: var(--plasma-deep);
  background-size: cover;
  background-position: center 60%;
}

/* Footer ~20% kompakter, ohne Teilungs-/Trennstriche */
.footer-grid { padding: 45px 0 38px; gap: 40px; }
.site-footer h4 { margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { font-size: 14px; }
.footer-social a { width: 34px; height: 34px; }
.footer-note { border-top: 0; padding: 18px 0 6px; font-size: 12.5px; }
.footer-bottom { border-top: 0; padding: 12px 0 22px; font-size: 13px; }

/* ---------- Reale Bilder statt Platzhalter ---------- */

/* Teamfoto-Hero (Ueber uns) */
.hero-full {
  background: linear-gradient(rgba(9,6,34,.08), rgba(9,6,34,.08)), url('../img/team.jpg');
  background-size: cover;
  background-position: center 22%;
  min-height: clamp(320px, 42vw, 560px);
}

/* Team-Portraets mit Akzentrahmen */
.team-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 250px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-accent-navy .team-photo { border: 6px solid var(--navy-800); }
.team-accent-blue .team-photo { border: 6px solid #2E6CB4; }
.team-accent-magenta .team-photo { border: 6px solid #A8326B; }
.team-accent-violet .team-photo { border: 6px solid #6B4CB3; }

/* Startseiten-Teamkarten: Bild ohne Rahmen */
.team-photo.plain { border: 0; }

/* Zertifikat */
.cert-img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  display: block;
}

/* Freigestelltes Portraet (Innovation) */
.cutout-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 44px rgba(15,23,42,.22));
}

/* Partner-Logo-Kacheln (Leistungen) */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}
.partner-logos .plogo {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logos .plogo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Helle Blau-Sektion (Projekte: MedTech weitergedacht) */
.section.blue-soft { background: #D9E6FA; }

/* ---------- Responsive Ergaenzungen ---------- */
@media (max-width: 1080px) {
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .logo-img { height: 64px; }
}
@media (max-width: 720px) {
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .logo-img { height: 54px; }
  .logo-badge img { height: 52px; }
  .logo-badge.lg img { height: 84px; }
  .hero-full { min-height: 300px; background-position: center 20%; }
}

/* ---------- CTA-Bande + Footer als EIN Block ----------
   Ein gemeinsames Plasma-Hintergrundbild ueber beide Bereiche */
.footer-block {
  background-image: var(--plasma-band);
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.footer-block .cta-band,
.footer-block .site-footer {
  background: none;
}
.footer-block .cta-band { border-bottom: 0; }
