/* ============================================================
   SMA Theme v3 – Neon Tech Dark
   Inspiriert von Social Growth System Template
   ============================================================ */

:root {
  --bg:           #121212;
  --bg-soft:      #1a1a1a;
  --panel:        rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.06);
  --line:         rgba(255,255,255,0.1);
  --text:         #f1efe7;
  --text-soft:    rgba(241,239,231,0.72);
  --accent:       #d7ff00;
  --accent-dark:  #202500;
  --max:          1280px;

  --font-body:    "Manrope", Arial, sans-serif;
  --font-display: "Oswald", Arial, sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-weight: 400 800;
  src: url('../fonts/manrope.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-weight: 400 700;
  src: url('../fonts/oswald.ttf') format('truetype');
}

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

html { scroll-behavior: smooth; font-size: 100%; }

body {
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: var(--font-body);
}

.eyebrow {
  display: inline-block;
  padding: 13px 16px;
  border: 1px solid var(--line);
  margin-bottom: 28px;
  color: var(--text-soft);
}

.accent-text { color: var(--accent); }

/* ── NAVIGATION ──────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(18,18,18,0.84);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-soft);
}

.brand-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  color: var(--text-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-menu a:hover { color: var(--accent); }

.nav-menu .menu-mobile-only { display: none; }

/* Burger (default hidden, shown on mobile via media query) */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #131313;
  border-color: var(--accent);
}

.btn-cta {
  margin-top: 28px;
  min-height: 58px;
  font-size: 15px;
  padding: 0 32px;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover { border-color: var(--text); }

/* ── SECTIONS ────────────────────────────────────────────── */

.section-lined  { border-bottom: 1px solid var(--line); }
.section-space  { padding: 96px 0; }

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(215,255,0,0.16), transparent 28%),
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 46%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 76px 0 88px;
}

.hero-copy h1 {
  font-size: clamp(52px, 9vw, 106px);
  max-width: 760px;
}

.hero-copy h1 span { color: var(--accent); }

.hero-lead {
  max-width: 600px;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.55;
  margin: 24px 0 0;
  color: var(--text-soft);
}

.hero-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 42px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
}

.panel-dark    { background: var(--panel); }
.panel-accent  {
  background: rgba(215,255,0,0.08);
  border-color: rgba(215,255,0,0.22);
}

.panel-text {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-soft);
}

.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 580px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-soft);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right, rgba(18,18,18,0.9), rgba(18,18,18,0.35), rgba(18,18,18,0.1)),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
}

.visual-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(18,18,18,0.72);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--text-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  align-content: start;
}

.stat-card {
  background: rgba(18,18,18,0.88);
  border: 1px solid var(--line);
  padding: 18px;
}

.stat-card h3 {
  margin-top: 12px;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── REFERENZEN-BAND ─────────────────────────────────────── */

.references-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.reference-list div {
  border: 1px solid var(--line);
  padding: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

/* ── SECTION LAYOUT ─────────────────────────────────────── */

.section-grid   { display: grid; grid-template-columns: 0.58fr 1.42fr; gap: 42px; }
.split-section  { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 42px; align-items: start; }

.section-intro h2 {
  font-size: clamp(38px, 5vw, 70px);
  max-width: 600px;
}

.section-intro p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 560px;
  margin-top: 20px;
  color: var(--text-soft);
}

/* ── SYSTEM GRID ─────────────────────────────────────────── */

.system-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
}

.system-grid article {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px;
}

.num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
}

.system-grid h3 { margin-top: 24px; font-size: 28px; }
.system-grid p  { margin-top: 12px; color: var(--text-soft); font-size: 15px; }

/* ── CALLOUT ─────────────────────────────────────────────── */

.callout {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(215,255,0,0.22);
  background: rgba(215,255,0,0.07);
}

.callout p { color: var(--text-soft); margin-top: 10px; font-size: 15px; }

/* ── CHECK LIST ──────────────────────────────────────────── */

.check-image-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
}

.check-list {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px 24px;
}

.check-list div {
  position: relative;
  padding: 0 0 18px 26px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text-soft);
}

.check-list div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.check-list div:last-child { margin-bottom: 0; border-bottom: 0; padding-bottom: 0; }

/* ── PILLAR LIST ─────────────────────────────────────────── */

.pillar-list { display: grid; gap: 14px; }

.pillar-list article {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
}

.pillar-list h3 { font-size: 32px; }
.pillar-list p  { color: var(--text-soft); font-size: 15px; margin-top: 8px; }

/* ── LEISTUNGS-CARDS ─────────────────────────────────────── */

.leistung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.leistung-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 38px 30px 32px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.leistung-card:hover {
  border-color: #D7FF00;
  transform: translateY(-2px);
}

.leistung-num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(215,255,0,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.leistung-card:hover .leistung-num {
  color: rgba(215,255,0,0.35);
}

.leistung-card h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.leistung-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) { .leistung-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .leistung-grid { grid-template-columns: 1fr; } }

/* ── KANAL-TABELLE ───────────────────────────────────────── */

.channel-section { position: relative; overflow: hidden; }

.channel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215,255,0,0.1), transparent 38%);
  pointer-events: none;
}

.channel-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 42px;
}

.channel-table {
  border: 1px solid var(--line);
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(8px);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.7fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child { border-bottom: 0; }

.table-head {
  background: var(--panel);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-soft);
}

.table-row span:first-child { font-weight: 700; font-size: 22px; }
.table-row span:nth-child(2){ color: var(--text-soft); font-size: 14px; }
.table-row strong { font-weight: 700; font-size: 13px; color: var(--accent); }

/* ── 4-WOCHEN-PLAN ───────────────────────────────────────── */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--line);
}

.plan-grid article {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px;
}

.plan-grid .week {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.plan-grid h3   { margin-top: 18px; font-size: 32px; }
.plan-grid span { display: block; margin-top: 12px; color: var(--text-soft); font-size: 14px; }

/* ── KONTAKT ─────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: stretch;
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
}

.contact-card h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  max-width: 560px;
  margin-top: 14px;
}

.contact-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-top: 18px;
}

.contact-card > p.contact-hook {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text);
  font-weight: 600;
  margin-top: 22px;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(18,18,18,0.78);
}

.contact-box h3 { margin-top: 10px; font-size: 38px; }

.contact-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 18px;
}

.contact-stats article {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 20px;
}

.contact-stats p  { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent); }
.contact-stats h3 { margin-top: 10px; font-size: 36px; }
.contact-stats span { display: block; margin-top: 10px; color: var(--text-soft); font-size: 13px; }

.contact-aside {
  background: rgba(215,255,0,0.07);
  border: 1px solid rgba(215,255,0,0.22);
  padding: 30px;
}

.contact-aside h3 { margin-top: 12px; font-size: 48px; }

.contact-aside p {
  color: var(--text-soft);
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.7;
}

.contact-aside ul {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-aside li {
  color: var(--text-soft);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-soft);
}

.footer-legal {
  display: flex;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.footer-legal a:hover { color: var(--accent); }

.footer-brand a,
.brand a { color: var(--text-soft); }

.footer-brand a:hover,
.brand a:hover { color: var(--accent); }

/* ── PAIN POINTS ─────────────────────────────────────────── */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.pain-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px;
}

.pain-card h3 {
  font-size: clamp(22px, 3vw, 32px);
  margin-top: 10px;
}

.pain-card p {
  color: var(--text-soft);
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.65;
}

.pain-cta {
  background: rgba(215,255,0,0.07);
  border: 1px solid rgba(215,255,0,0.22);
  padding: 48px 40px;
  text-align: center;
}

.pain-cta h2 {
  font-size: clamp(32px, 5vw, 64px);
  max-width: 700px;
  margin: 0 auto;
}

.pain-cta p {
  color: var(--text-soft);
  max-width: 560px;
  margin: 16px auto 28px;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1100px) { .pain-grid { grid-template-columns: 1fr; } }

/* ── CONTENT-SÄULEN ──────────────────────────────────────── */

.saulen-list { display: grid; gap: 0; }

.saulen-item {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.saulen-item:first-child { border-top: 1px solid var(--line); }

.saulen-item h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.05;
}

.saulen-item p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 760px) { .saulen-item { grid-template-columns: 1fr; gap: 8px; } }

/* ── PROBLEM-GRID (4-spaltig) ────────────────────────────── */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  color: rgba(215,255,0,0.18);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

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

/* ── PROZESS (5-spaltig) ─────────────────────────────────── */

.prozess-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 48px;
}

.prozess-grid article {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px 20px;
}

.prozess-grid .num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.prozess-grid h3 { font-size: 20px; margin-top: 20px; }
.prozess-grid p  { color: var(--text-soft); font-size: 14px; margin-top: 10px; }

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

/* ── KANAL-TABELLE (4-spaltig mit Frequenz) ──────────────── */

.table-row-4 { grid-template-columns: 0.7fr 1.1fr 0.55fr 0.55fr; }
.table-row-2 { grid-template-columns: 0.7fr 1.8fr; align-items: start; }

.channel-role {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-role .role-head {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.01em;
}

.channel-role .role-detail {
  font-weight: 400;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.channel-name {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.channel-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  background: rgba(215,255,0,0.08);
  border: 1px solid rgba(215,255,0,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.channel-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ── USP-GRID ────────────────────────────────────────────── */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.usp-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px;
}

.usp-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 16px;
}

.usp-card h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-bottom: 10px;
}

.usp-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

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

/* ── TEAM-GRID ───────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.team-card .team-badges { margin-top: auto; }

.team-avatar {
  width: 72px;
  height: 72px;
  background: rgba(215,255,0,0.1);
  border: 1px solid rgba(215,255,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.team-avatar-photo {
  width: 120px;
  height: 120px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--accent);
}

.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 6px;
}

.team-card .team-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.team-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.team-card .team-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
}

.team-card .team-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
}

.team-card .team-links a:hover { color: var(--accent); }

.team-card .team-badges {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 32px;
}
.team-grid { align-items: stretch; }
.team-card .team-badges .cred-item { flex: 0 0 auto; }
.team-card .team-badges img[src*="uni-wuppertal"] { transform: scale(1.1); transform-origin: left center; }

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px 0;
}

.team-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255,255,255,0.02);
}

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

/* ── PRICING ─────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--accent);
  color: #131313;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  white-space: nowrap;
}

.pricing-featured {
  background: var(--panel-strong);
  border-color: rgba(215,255,0,0.22);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.pricing-price span {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-soft);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  flex: 1;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.pricing-features li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-soft);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── PAGE / POST ─────────────────────────────────────────── */

.page-content {
  padding: 80px 0;
}

.page-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 48px;
  max-width: 860px;
}

.page-content h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  margin: 40px 0 12px;
  color: var(--text);
}

.page-content h3 {
  font-size: clamp(14px, 2vw, 18px);
  margin: 24px 0 8px;
  color: var(--text-soft);
}

.page-content h1 span { color: var(--accent); }

.page-content p,
.page-content li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
  max-width: 740px;
  margin-bottom: 12px;
}

.page-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.page-content ul li {
  position: relative;
  padding-left: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.page-content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.page-content a { color: var(--accent); }
.page-content a:hover { opacity: 0.8; }
.page-content a.btn-primary { color: #131313; }
.page-content a.btn-secondary { color: var(--text); }
.page-content a.btn { opacity: 1; }
.page-content a.btn:hover { opacity: 1; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .hero-grid,
  .section-grid,
  .split-section,
  .contact-grid,
  .channel-layout,
  .check-image-grid,
  .references-grid,
  .contact-box { grid-template-columns: 1fr; }

  .reference-list,
  .system-grid,
  .plan-grid,
  .contact-stats { grid-template-columns: repeat(2,1fr); }

  .hero-panels,
  .pillar-list article { grid-template-columns: 1fr; }

  /* Mobile-Nav: Burger-Toggle */
  .nav-burger { display: inline-flex; margin-left: auto; }
  .site-header .btn-primary { display: none; }
  .nav-menu .menu-mobile-only { display: list-item; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18,18,18,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    margin: 0;
    z-index: 49;
  }
  body.nav-open .nav-menu { display: flex; }
  .nav-menu li {
    list-style: none;
    border-top: 1px solid var(--line);
  }
  .nav-menu li:first-child { border-top: 0; }
  .nav-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
  }
  .nav-menu a:hover { background: rgba(215,255,0,0.08); }
}

@media (max-width: 600px) {
  .brand { font-size: 12px; letter-spacing: 0.18em; gap: 8px; }
  .site-header .btn { padding: 8px 14px; font-size: 12px; min-height: 40px; }
}

@media (max-width: 760px) {
  .hero-grid   { padding: 48px 0 56px; }
  .hero-visual { min-height: 420px; }
  .section-space { padding: 64px 0; }

  .stat-grid,
  .reference-list,
  .system-grid,
  .plan-grid,
  .contact-stats { grid-template-columns: 1fr; }

  .table-row { grid-template-columns: 1fr; }
}

/* KONTAKT V2 */
.contact-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-map { display: flex; justify-content: center; }
.contact-map svg { width: 100%; max-width: 380px; height: auto; }
.contact-map .map-outline {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0.75;
}
.contact-map .map-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(215,255,0,0.7));
}
.contact-map .map-label {
  fill: rgba(255,255,255,0.78);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.contact-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 36px;
  width: 100%;
  max-width: 420px;
}
.contact-card-v2 .contact-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-card-v2 .contact-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.contact-card-v2 .contact-owner {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-card-v2 .contact-owner span {
  color: rgba(255,255,255,0.45);
  margin-right: 4px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.contact-list li::before { content: none !important; display: none !important; }
.contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.contact-list a:hover { color: var(--accent); }
.contact-ico {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(215,255,0,0.06);
}
.contact-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}
.contact-qr {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.contact-qr a {
  display: inline-block;
  line-height: 0;
  transition: transform .2s, border-color .2s;
}
.contact-qr a:hover img { border-color: rgba(215,255,0,0.55); }
.contact-qr img {
  display: block;
  width: 160px;
  height: 160px;
  padding: 12px;
  background: #0a0a0a;
  border: 1px solid rgba(215,255,0,0.2);
  border-radius: 8px;
  transition: border-color .2s;
}
@media (max-width: 800px) {
  .contact-qr { display: none; }
}
.contact-qr span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 800px) {
  .contact-v2 { grid-template-columns: 1fr; gap: 40px; }
  .contact-map svg { max-width: 280px; }
  .contact-card-v2 { padding: 24px 24px; }
}

/* CREDENTIALS */
.credentials { padding: 72px 0 24px; }
.credentials-intro { margin-bottom: 48px; max-width: 720px; }
.credentials-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: start;
}
.cred-item {
  text-align: center;
  position: relative;
}
.cred-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #0d0d0d;
  border: 1px solid rgba(215,255,0,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  padding: 16px 20px;
  min-width: 240px;
  max-width: 280px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
}
.cred-item:hover .cred-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cred-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #0d0d0d;
}
.cred-tooltip::before {
  content: '';
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(215,255,0,0.35);
  z-index: -1;
}
.tooltip-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.tooltip-title span {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.tooltip-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  margin-top: -6px;
  margin-bottom: 12px;
  font-style: italic;
}
.cred-tooltip ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cred-tooltip ul li,
.page-content .cred-tooltip ul li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  padding: 3px 0;
  margin: 0;
  border: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.cred-tooltip ul li::before,
.page-content .cred-tooltip ul li::before { content: none; display: none; }
.cred-tooltip li em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.cred-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cred-logo img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity .2s;
}
.cred-item:hover .cred-logo img { opacity: 1; }
.cred-logo img.cred-logo-white { filter: none; }
.cred-count {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.cred-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color .2s;
}
.cred-item:hover .cred-label { color: rgba(255,255,255,0.9); }
@media (max-width: 900px) {
  .credentials-row { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
}
@media (max-width: 500px) {
  .credentials-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── GLOSSAR ─────────────────────────────────────────────── */

.sma-glossar { padding-bottom: 96px; }

.sma-glossar-hero {
  padding: 96px 0 32px;
  border-bottom: 1px solid var(--line);
}
.sma-glossar-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sma-glossar-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.sma-glossar-intro {
  color: var(--text-soft);
  max-width: 720px;
  font-size: 18px;
}
.sma-glossar-intro p { margin: 0 0 12px; }

.sma-glossar-controls {
  position: sticky;
  top: 64px;
  z-index: 5;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.sma-glossar-search {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
#sma-glossar-search {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
}
#sma-glossar-search:focus { border-color: var(--accent); }
.sma-glossar-count {
  font-size: 13px;
  color: var(--text-soft);
  white-space: nowrap;
}
.sma-glossar-az {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sma-glossar-letter {
  font-weight: 600;
  font-size: 14px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.sma-glossar-letter:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.sma-glossar-letter.is-empty {
  color: var(--text-soft);
  opacity: 0.25;
  cursor: default;
}

.sma-glossar-list { padding-top: 48px; }
.sma-glossar-group {
  scroll-margin-top: 200px;
  margin-bottom: 56px;
}
.sma-glossar-group-head {
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sma-glossar-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.sma-glossar-item a {
  display: block;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, transform .15s, background .15s;
  height: 100%;
}
.sma-glossar-item a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.sma-glossar-term {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--text);
}
.sma-glossar-desc {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.sma-glossar-empty {
  text-align: center;
  color: var(--text-soft);
  padding: 80px 0;
}

/* Glossar Single */
.sma-glossar-single { padding-bottom: 96px; }
.sma-glossar-single-hero {
  padding: 96px 0 32px;
  border-bottom: 1px solid var(--line);
}
.sma-glossar-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color .15s;
}
.sma-glossar-back:hover { color: var(--text); }
.sma-glossar-single-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 0;
}
.sma-glossar-single-body { padding: 56px 0; }
.sma-glossar-single-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.sma-glossar-content {
  max-width: 760px;
  min-width: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}
.sma-glossar-content h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  scroll-margin-top: 200px;
}
.sma-glossar-content h3 {
  font-size: 22px;
  margin: 32px 0 12px;
}
.sma-glossar-content p { margin: 0 0 16px; }
.sma-glossar-content a { color: var(--accent); }
.sma-glossar-content a:hover { opacity: 0.8; }
.sma-glossar-content ul, .sma-glossar-content ol { margin: 0 0 16px; padding-left: 24px; }
.sma-glossar-content li { margin-bottom: 6px; }
.sma-glossar-content code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}
.sma-glossar-content pre {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 14px;
}

.sma-glossar-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}
.sma-glossar-sidebar-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .15s;
  margin-bottom: 4px;
}
.sma-glossar-sidebar-back:hover { color: var(--accent); }
.sma-glossar-sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
}
.sma-glossar-sidebar-head {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 600;
}
.sma-glossar-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sma-glossar-toc-list a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  display: block;
  padding-left: 10px;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.sma-glossar-toc-list a:hover { color: var(--text); }
.sma-glossar-toc-list a.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
}
.sma-glossar-related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sma-glossar-related a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  transition: color .15s;
}
.sma-glossar-related a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .sma-glossar-single-grid { grid-template-columns: 1fr; gap: 32px; }
  .sma-glossar-sidebar { position: static; order: 2; }
  .sma-glossar-content { order: 1; }
}
@media (max-width: 600px) {
  .sma-glossar-group-head { font-size: 40px; }
  .sma-glossar-controls { top: 0; }
}
