/* ═══════════════════════════════════════════════════
   KI – verständliches Wissen & Training — Shared Stylesheet
   Gerald Badegruber · geraldb.at
   ═══════════════════════════════════════════════════ */

/* ── LOKALE SCHRIFTEN ── */
@font-face { font-family:'Plus Jakarta Sans'; src:url('../fonts/plus-jakarta-sans-v12-latin-300.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Plus Jakarta Sans'; src:url('../fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Plus Jakarta Sans'; src:url('../fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Plus Jakarta Sans'; src:url('../fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Plus Jakarta Sans'; src:url('../fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Plus Jakarta Sans'; src:url('../fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:swap; }

/* ── TOKENS ── */
:root {
  --ink:      #0C1A27;
  --deep:     #193650;
  --teal:     #00B594;
  --teal-d:   #009E82;
  --teal-dim: rgba(0,181,148,.1);
  --gold:     #C4903A;
  --gold-dim: rgba(196,144,58,.12);
  --bg:       #F3F1EC;
  --surface:  #FFFFFF;
  --text:     #0C1A27;
  --muted:    #5B7080;
  --border:   #DDD8CE;
  --hero-bg:  #0C1A27;
  --f-d: 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-b: 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-m: 'Courier New', Courier, monospace;
  --r:   8px;
  --rl:  14px;
  --shl: 0 8px 40px rgba(12,26,39,.12);
  --t:   .2s ease;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:      #0C1A27;
    --surface: #132233;
    --text:    #E4DFD2;
    --muted:   #8AA0B2;
    --border:  #1E3248;
    --hero-bg: #07111A;
    --teal-dim: rgba(0,181,148,.08);
    --gold-dim: rgba(196,144,58,.10);
  }
}
:root[data-theme="dark"] {
  --bg:      #0C1A27;
  --surface: #132233;
  --text:    #E4DFD2;
  --muted:   #8AA0B2;
  --border:  #1E3248;
  --hero-bg: #07111A;
  --teal-dim: rgba(0,181,148,.08);
  --gold-dim: rgba(196,144,58,.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--f-b); background: var(--bg); color: var(--text);
        line-height: 1.6; -webkit-font-smoothing: antialiased; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ── LAYOUT ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY BASE ── */
.lbl {
  font-family: var(--f-m);
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.sh2 {
  font-family: var(--f-d);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700; line-height: 1.2;
  text-wrap: balance; color: var(--ink);
  margin-bottom: 14px; letter-spacing: -.02em;
}
.ssub {
  font-size: 17px; color: var(--muted);
  max-width: 580px; line-height: 1.65; margin-bottom: 44px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 22px; border-radius: var(--r);
  font-weight: 600; font-size: 15px;
  transition: all var(--t); cursor: pointer;
  border: none; font-family: var(--f-b);
}
.btn-p { background: var(--teal); color: #fff; }
.btn-p:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,181,148,.3); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost { background: transparent; color: rgba(228,223,210,.8); border: 1.5px solid rgba(228,223,210,.2); }
.btn-ghost:hover { border-color: rgba(228,223,210,.45); color: #fff; }
.btn-w { background: #fff; color: #008E72; font-weight: 700; padding: 15px 30px;
  border-radius: var(--r); font-size: 16px; display: inline-flex; align-items: center;
  gap: 6px; transition: all var(--t); font-family: var(--f-b); }
.btn-w:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.18); }

/* ── NAVIGATION ── */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow var(--t);
}
.nav.up { box-shadow: 0 2px 20px rgba(12,26,39,.1); }
.nav-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 32px;
  max-width: 1140px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-ki { font-family: var(--f-d); font-weight: 800; font-size: 22px; color: var(--teal); letter-spacing: -.02em; }
.logo-tagline { font-family: var(--f-b); font-size: 10px; color: var(--muted); letter-spacing: .01em; margin-top: 2px; white-space: nowrap; }
.foot .logo-ki { color: #00B594; }
.foot .logo-tagline { color: #3E5870; }
.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color var(--t);
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 1px;
}
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: var(--r);
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal-d) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile burger */
.nav-burger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 1px; transition: all var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px; font-weight: 500; color: var(--muted);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--teal); }
.nav-mobile .nav-cta-m {
  margin-top: 12px; background: var(--teal); color: #fff !important;
  padding: 12px 20px; border-radius: var(--r); text-align: center;
  font-weight: 600; border-bottom: none !important;
}

/* ── HERO (Homepage) ── */
.hero {
  background: var(--hero-bg); position: relative;
  overflow: hidden; min-height: 580px;
  display: grid; align-items: center;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-in {
  position: relative; z-index: 2;
  padding: 80px 32px; max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: center;
}
.eyebrow {
  font-family: var(--f-m); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--teal); flex-shrink: 0; }
.hero h1 {
  font-family: var(--f-d); font-size: clamp(34px, 5vw, 56px);
  font-weight: 700; line-height: 1.1; text-wrap: balance;
  color: #fff; margin-bottom: 22px; letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 17px; line-height: 1.65;
  color: rgba(228,223,210,.72); margin-bottom: 34px; max-width: 460px;
}
.ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hcard {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--rl); padding: 22px; backdrop-filter: blur(6px);
}
.hcard.accent { background: rgba(0,181,148,.1); border-color: rgba(0,181,148,.18); }
.hcard-top { font-size: 20px; margin-bottom: 10px; }
.hcard h3 { font-family: var(--f-d); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hcard p  { font-size: 13px; color: rgba(228,223,210,.6); line-height: 1.45; }

/* ── PAGE HERO (innere Seiten) ── */
.page-hero {
  background: var(--hero-bg); padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(0,181,148,.15);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--f-d); font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.15; color: #fff;
  text-wrap: balance; letter-spacing: -.02em; margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px; color: rgba(228,223,210,.7);
  max-width: 560px; line-height: 1.65;
}

/* ── URGENCY BAR ── */
.urg { background: #07201A; border-bottom: 1px solid rgba(0,181,148,.15); }
.urg-in {
  display: flex; align-items: center; gap: 20px;
  padding: 13px 32px; max-width: 1140px; margin: 0 auto; flex-wrap: wrap;
}
.urg-pill {
  font-family: var(--f-m); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--teal); background: rgba(0,181,148,.1);
  border: 1px solid rgba(0,181,148,.18); padding: 4px 10px;
  border-radius: 4px; white-space: nowrap;
}
.urg-text { font-size: 14px; color: #90BEB0; flex: 1; }
.urg-text strong { color: #B8D8D0; }
.urg-link { font-size: 13px; font-weight: 600; color: var(--teal); white-space: nowrap; transition: opacity var(--t); }
.urg-link:hover { opacity: .8; }

/* ── SECTIONS ── */
section { padding: 72px 0; }
section.tight { padding: 56px 0; }
section.dark { background: var(--ink); }
section.alt  { background: var(--surface); }

/* ── VALUE GRID ── */
.vgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.vcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 26px;
  transition: box-shadow var(--t), transform var(--t);
}
.vcard:hover { box-shadow: var(--shl); transform: translateY(-3px); }
.vicon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-dim); display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.vicon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vcard h3 { font-family: var(--f-d); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 7px; line-height: 1.3; }
.vcard p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── TRAINING CARDS ── */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tcard {
  border: 1.5px solid var(--border); border-radius: var(--rl);
  overflow: hidden; transition: all var(--t); position: relative;
}
.tcard:hover { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.tcard.ft   { border-color: var(--teal); }
.tbadge {
  position: absolute; top: 0; right: 18px;
  background: var(--teal); color: #fff; font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 0 0 6px 6px; font-family: var(--f-m);
}
.thead { background: var(--ink); padding: 26px; }
.taud  { font-family: var(--f-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.thead h3 { font-family: var(--f-d); font-size: 19px; font-weight: 700; line-height: 1.25; color: #fff; margin-bottom: 6px; }
.thead p  { font-size: 13px; color: rgba(228,223,210,.6); line-height: 1.5; }
.tbody { padding: 22px 26px; background: var(--surface); }
.topics li {
  font-size: 13.5px; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.topics li:last-child { border-bottom: none; }
.topics li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.tmeta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.tdur  { font-size: 11px; font-family: var(--f-m); color: var(--muted); }
.tlink { font-size: 14px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 3px; }
.tlink:hover { text-decoration: underline; }

/* ── PROCESS STEPS ── */
.psteps {
  display: grid; grid-template-columns: repeat(3,1fr);
  position: relative; margin-top: 48px;
}
.psteps::before {
  content: ''; position: absolute; top: 27px;
  left: calc(16.66% + 27px); right: calc(16.66% + 27px);
  height: 1.5px; background: var(--border); z-index: 0;
}
.pstep { text-align: center; padding: 0 20px; }
.pnum {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-d); font-weight: 700; font-size: 20px; color: var(--ink);
  margin: 0 auto 18px; position: relative; z-index: 1; transition: all var(--t);
}
.pstep:hover .pnum { background: var(--teal); border-color: var(--teal); color: #fff; }
.pstep h3 { font-family: var(--f-d); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.pstep p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── GERALD / PERSON SECTION ── */
.gsec { background: var(--ink); }
.gin  { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: center; }
.gphoto {
  aspect-ratio: 4/5; max-height: 340px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--rl);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(228,223,210,.25); font-size: 12px; line-height: 1.5; text-align: center;
  overflow: hidden;
}
.gphoto img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.gcreds { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.cred {
  font-family: var(--f-m); font-size: 10px; font-weight: 500;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(0,181,148,.1); border: 1px solid rgba(0,181,148,.18);
  color: var(--teal); letter-spacing: .04em;
  text-decoration: none; display: inline-block;
}
a.cred:hover { background: rgba(0,181,148,.18); text-decoration: none; }
.gquote {
  font-family: var(--f-d); font-size: 19px; font-style: normal; font-weight: 300;
  color: rgba(228,223,210,.8); line-height: 1.55;
  border-left: 3px solid var(--teal); padding-left: 20px; margin: 22px 0;
}
.gbio { font-size: 15px; color: rgba(228,223,210,.55); line-height: 1.7; margin-bottom: 22px; }

/* ── CTA SECTION ── */
.ctasec { background: linear-gradient(135deg, var(--teal) 0%, #008E72 100%); padding: 72px 0; }
.ctain { max-width: 640px; margin: 0 auto; text-align: center; padding: 0 32px; }
.ctain h2 {
  font-family: var(--f-d); font-size: clamp(26px,4vw,38px);
  font-weight: 700; color: #fff; line-height: 1.15;
  text-wrap: balance; margin-bottom: 14px;
}
.ctain p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; margin-bottom: 32px; }

/* ── GAMES PAGE ── */
.ggrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.gcard {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: all var(--t); display: flex; flex-direction: column;
}
.gcard:hover { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); transform: translateY(-2px); }
.gcard-preview {
  background: var(--ink); aspect-ratio: 16/7;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative; overflow: hidden;
}
.gcard-cat {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-m); font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  background: rgba(0,181,148,.18); border: 1px solid rgba(0,181,148,.25);
  color: var(--teal); padding: 3px 9px; border-radius: 4px;
}
.gcard-body { padding: 22px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.gcard-body h3 { font-family: var(--f-d); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
.gcard-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.gcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.gtag {
  font-family: var(--f-m); font-size: 10px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 8px; border-radius: 4px;
}

/* ── CONTACT FORM ── */
.cform { background: var(--surface); border: 1px solid var(--border); border-radius: var(--rl); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px; font-family: var(--f-b);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  background: var(--bg); color: var(--text);
  font-family: var(--f-b); font-size: 15px;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-dim);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 13.5px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--teal); }
.form-check a:hover { text-decoration: underline; }
.form-notice {
  background: var(--teal-dim); border: 1px solid rgba(0,181,148,.2);
  border-radius: var(--r); padding: 14px 16px; margin-top: 16px;
}
.form-notice p { font-size: 13px; color: var(--teal); line-height: 1.5; }

/* ── ARTICLE / NEWS CARDS ── */
.agrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.acard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
  display: flex; flex-direction: column;
}
.acard:hover { box-shadow: var(--shl); transform: translateY(-2px); }
.acard-cat {
  font-family: var(--f-m); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal); margin-bottom: 8px;
}
.acard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.acard-body h3 { font-family: var(--f-d); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.acard-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.acard-meta { display: flex; align-items: center; justify-content: space-between; }
.acard-date { font-family: var(--f-m); font-size: 11px; color: var(--muted); }
.alink { font-size: 14px; font-weight: 600; color: var(--teal); }
.alink:hover { text-decoration: underline; }

/* ── ÜBER MICH PAGE ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.val-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 24px;
}
.val-icon { font-size: 28px; margin-bottom: 12px; }
.val-card h3 { font-family: var(--f-d); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.val-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.bg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.bg-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 18px;
}
.bg-icon { font-size: 22px; flex-shrink: 0; }
.bg-item h4 { font-family: var(--f-d); font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.bg-item p  { font-size: 13px; color: rgba(228,223,210,.55); line-height: 1.5; }
.do-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.do-col h3 {
  font-family: var(--f-d); font-size: 17px; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid;
}
.do-col.yes h3 { color: var(--teal); border-color: var(--teal); }
.do-col.no  h3 { color: #FF6B6B; border-color: #FF6B6B; }
.do-col li { font-size: 14px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.do-col li:last-child { border-bottom: none; }
.do-col.yes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.do-col.no  li::before { content: '✗'; color: #FF6B6B; font-weight: 700; flex-shrink: 0; }

/* ── FOOTER ── */
.foot { background: #06101A; border-top: 1px solid #142232; padding: 48px 0 28px; }
.fin  {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; max-width: 1140px; margin: 0 auto; padding: 0 32px;
}
.fbrand p { font-size: 13px; color: #3E5870; line-height: 1.65; margin: 10px 0 14px; }
.fcol h4  { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #3E5870; font-family: var(--f-m); margin-bottom: 14px; }
.fcol li  { margin-bottom: 9px; }
.fcol a   { font-size: 14px; color: #607888; transition: color var(--t); }
.fcol a:hover { color: var(--teal); }
.fbot {
  max-width: 1140px; margin: 28px auto 0; padding: 20px 32px 0;
  border-top: 1px solid #142232;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.fbot p { font-size: 11px; color: #2D4050; font-family: var(--f-m); }

/* ── LOGO SVG (hidden — text-only branding) ── */
.logo-svg { display: none; }

/* ── IMPRESSUM ── */
.prose h2 { font-family: var(--f-d); font-size: 22px; font-weight: 700; color: var(--ink); margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose address { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; font-style: normal; }
.prose a { color: var(--teal); }
.prose a:hover { text-decoration: underline; }
.prose ul { list-style: disc; padding-left: 20px; }
.prose ul li { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }

/* ── ARTICLE TAGS + FEATURED ── */
.acard-featured { grid-column: 1 / -1; flex-direction: row; }
.acard-featured .acard-img { width: 320px; flex-shrink: 0; aspect-ratio: auto; min-height: 240px; border-radius: var(--rl) 0 0 var(--rl); }
.acard-featured .acard-body { flex: 1; }
.acard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.atag {
  font-family: var(--f-m); font-size: 10px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 8px; border-radius: 4px;
}
/* featured card: allow a CTA at bottom */
.acard-featured .acard-body { display: flex; flex-direction: column; }

/* ── FORM GROUP ALIASES (kontakt page) ── */
.fg         { margin-bottom: 20px; }
.fg-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg label   { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.fg input,
.fg select,
.fg textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  background: var(--bg); color: var(--text);
  font-family: var(--f-b); font-size: 15px;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim);
}
.fg textarea { min-height: 130px; resize: vertical; }
.ccheck {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--muted); line-height: 1.5; cursor: pointer;
}
.ccheck input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.ccheck a { color: var(--teal); }
.ccheck a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .vgrid  { grid-template-columns: 1fr 1fr; }
  .tgrid  { grid-template-columns: 1fr; }
  .agrid  { grid-template-columns: 1fr 1fr; }
  .fin    { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .ggrid  { grid-template-columns: 1fr; }
  .acard-featured { flex-direction: column; }
  .acard-featured .acard-img { width: 100%; min-height: 180px; border-radius: var(--rl) var(--rl) 0 0; }
  .fg-row { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .wrap   { padding: 0 20px; }
  .nav-in { padding: 0 20px; }
  .urg-in { padding: 13px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-in { grid-template-columns: 1fr; padding: 56px 20px; }
  .hero-cards { display: none; }
  .gin  { grid-template-columns: 1fr; }
  .gphoto { aspect-ratio: 16/9; max-width: 100%; }
  .psteps { grid-template-columns: 1fr; gap: 32px; }
  .psteps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .do-grid { grid-template-columns: 1fr; }
  .bg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .vgrid  { grid-template-columns: 1fr; }
  .agrid  { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .fin    { grid-template-columns: 1fr; }
  .fbot   { flex-direction: column; align-items: flex-start; }
  .cform  { padding: 24px 20px; }
}
