/* ===================================================
   PG Psychological Consulting — Global Stylesheet
   =================================================== */

:root {
  --bg:           #FAFAF8;
  --bg-alt:       #F2EDE4;
  --bg-dark:      #141F17;
  --accent:       #1C3A28;
  --accent-hover: #142B1C;
  --accent-light: #E4EDE8;
  --gold:         #C49A3C;
  --gold-light:   #F7EDD6;
  --brown:        #3B1F0A;
  --text:         #1A1A1A;
  --text-muted:   #6B7280;
  --border:       #E5E0D8;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.12);
  --font-body:    'Inter', system-ui, sans-serif;
  --font-head:    'Playfair Display', Georgia, serif;
  --nav-h:        72px;
  --max-w:        1120px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

em { font-style: italic; color: var(--gold); }

.section-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}
.section-label.light { color: rgba(255,255,255,.7); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header p { margin-top: .75rem; color: var(--text-muted); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,58,40,.35);
}
.btn-primary.light {
  background: var(--white);
  color: var(--accent);
}
.btn-primary.light:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-light); color: var(--brown); }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .3s, box-shadow .3s;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}
footer .nav-logo-img {
  height: 52px;
  filter: brightness(0) saturate(100%) invert(74%) sepia(44%) saturate(600%) hue-rotate(5deg) brightness(105%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .88rem !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--accent-hover) !important; }

/* Language Switch */
.lang-switch { display: flex; align-items: center; }
.lang-btn {
  font-size: .78rem !important;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-muted) !important;
  border: 1px solid var(--border);
  padding: .28rem .65rem;
  border-radius: 4px;
  transition: color .2s, border-color .2s !important;
  line-height: 1.4;
}
.lang-btn:hover { color: var(--accent) !important; border-color: var(--accent); }
.mobile-link.lang-mobile {
  font-size: .85rem;
  color: var(--text-muted) !important;
  letter-spacing: .08em;
  font-weight: 600;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(250,250,248,.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  z-index: 99;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s, opacity .25s;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-link {
  display: block;
  padding: .85rem 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.mobile-link:hover { background: var(--accent-light); color: var(--accent); }
.mobile-link.cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  margin-top: .5rem;
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 5% 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,154,60,.07) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(28,58,40,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 600px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.hero-portrait {
  display: block;
  width: 440px;
  height: 550px;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-content h1 { max-width: 14ch; margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.about-stats-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  overflow: hidden;
}
.hsc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hsc-stat {
  text-align: center;
  padding: 1.6rem 1rem 1.4rem;
}
.hsc-grid .hsc-stat:nth-child(odd)  { border-right: 1px solid var(--border); }
.hsc-grid .hsc-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.hsc-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.hsc-label {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .45rem;
  line-height: 1.3;
}
.hsc-divider { display: none; }
.hsc-linkedin {
  text-align: center;
  padding: 1rem 1rem .9rem;
  background: linear-gradient(135deg, rgba(196,154,60,.08) 0%, rgba(196,154,60,.03) 100%);
  border-top: 1px solid var(--border);
}
.hsc-linkedin .hsc-num {
  font-size: 2rem;
}
.hsc-linkedin .hsc-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.hsc-bilingual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .75rem 1rem;
  border-top: 1px solid var(--border);
}
.hsc-lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}
.hsc-lang-abbr {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  text-transform: uppercase;
}
.hsc-lang-word {
  font-size: .7rem;
  color: var(--text-muted);
}
.hsc-sep {
  font-size: .9rem;
  color: var(--border);
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── TRUST BAR ── */
#trust-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
a.trust-item { text-decoration: none; color: var(--text-muted); transition: color .18s; }
a.trust-item:hover { color: var(--accent); }
[data-theme="dark"] a.trust-item:hover { color: var(--gold); }

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-desc { color: var(--text-muted); margin-bottom: 1rem; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.8rem;
}
.about-tags span {
  background: var(--gold-light);
  color: var(--brown);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 99px;
  border: 1px solid rgba(196,154,60,.25);
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.stat-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: .3rem;
}
.about-card hr { border: none; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.card-note { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.card-link:hover { gap: .5rem; }

.about-platforms {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.platforms-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.about-platforms a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(196,154,60,.3);
  padding: .25rem .75rem;
  border-radius: 99px;
  transition: background .2s;
}
.about-platforms a:hover { background: var(--gold-light); }

/* ── SERVICES ── */
#services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,154,60,.3);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--brown);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }
.service-card a.learn-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap .2s;
}
.service-card a.learn-more:hover { gap: .5rem; }

/* ── WARUM-GRID (Leistungen / Services page) ── */
.warum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.warum-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}
.warum-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.warum-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .55;
  margin: 0 0 .9rem;
}
.warum-card .service-icon { margin-bottom: .75rem; }
.warum-card h3 { margin-bottom: .55rem; font-size: 1.05rem; }
.warum-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
body.dark .warum-card { background: var(--bg-alt); }
@media (max-width: 640px) {
  .warum-grid { grid-template-columns: 1fr; }
}

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5rem 0;
}
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,.65); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .25s;
}
.faq-icon::before {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon::before { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p {
  padding: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── CONTACT ── */
#contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1rem; }
.contact-text > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: .8rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .2s, color .2s;
}
.contact-item:hover { border-color: var(--gold); color: var(--brown); }
.contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  appearance: auto;
  flex-shrink: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(28,58,40,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--gold);
  min-height: 1.2em;
}
.form-note.error { color: #dc2626; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--border); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.75;
}

/* ── SERVICE DETAIL ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.service-body h2 { margin: 2rem 0 .8rem; }
.service-body p { color: var(--text-muted); margin-bottom: 1rem; }
.service-body ul {
  list-style: none;
  margin-bottom: 1rem;
}
.service-body ul li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: .95rem;
}
.service-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .85rem;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sidebar-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.sidebar-card .btn-primary { width: 100%; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 4.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 2fr 1.2fr;
  gap: 2rem 4rem;
  align-items: start;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
footer .nav-logo { color: var(--white); }
footer .nav-logo span { color: var(--gold); }
footer .nav-logo + p {
  font-size: .84rem;
  margin-top: .75rem;
  line-height: 1.75;
  max-width: 270px;
  color: rgba(255,255,255,.45);
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-top: 1.1rem;
}
.footer-contact-info a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-contact-info a:hover { color: var(--gold); }

/* Navigation column */
.footer-links::before {
  content: "NAVIGATION";
  grid-column: 1 / -1;
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .5rem;
}
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 12px;
  height: 1.5px;
  background: rgba(196,154,60,.45);
  flex-shrink: 0;
  transition: width .2s, background .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { width: 18px; background: var(--gold); }

/* Social column */
.footer-social {
  display: grid;
  grid-template-columns: repeat(2, 40px);
  gap: .6rem;
}
.footer-social::before {
  content: "FOLGEN SIE MIR";
  grid-column: 1 / -1;
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
[lang="en"] .footer-social::before { content: "FOLLOW ME"; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(196,154,60,.15); }
.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,.65); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy { font-size: .79rem; color: rgba(255,255,255,.3); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .79rem;
  color: rgba(255,255,255,.38);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }

/* ── PORTRAIT PHOTO ── */
.portrait-wrap {
  position: relative;
  display: inline-block;
}
.portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: .45;
  z-index: 0;
}
.portrait-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.portrait-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* ── PUBLICATIONS / BLOG ── */
.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.publication-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.publication-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,154,60,.3);
}
.pub-platform {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-light);
  color: var(--brown);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  width: fit-content;
  white-space: nowrap;
  flex: none;
}
.publication-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: .75rem;
  min-height: 4.25rem;
  max-height: 4.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.publication-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}
.pub-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pub-meta span { display: flex; align-items: center; gap: .3rem; }
.pub-read-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  margin-top: auto;
  transition: gap .2s;
}
.pub-read-link:hover { gap: .55rem; }
.pub-read-link svg { width: 14px; height: 14px; }

/* Footer social — 4 icons in 2×2 grid (handled above) */

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 .75rem;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 .5rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: .6rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content a { color: var(--gold); text-decoration: underline; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ── 404 ── */
.not-found {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found h1 {
  font-size: 6rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.not-found p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Navbar always visible on mobile — burger must be findable without scrolling */
  #navbar {
    background: rgba(250,250,248,.97) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border) !important;
  }
  body.dark #navbar {
    background: rgba(14,25,18,.97) !important;
  }
  .nav-links { display: none; }
  .burger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  #hero { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; padding-bottom: 3rem; }
  .hero-visual { justify-content: center; }
  .hero-portrait { width: 240px; height: 300px; border-radius: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}
@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .trust-inner { gap: 1.5rem; }
  /* Blog & publications: single column on small screens */
  .publications-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr !important; }
}

/* ── Social Profile Buttons ─────────────────────── */
.social-profile-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.social-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--bg);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.social-profile-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.social-profile-btn svg { flex-shrink: 0; }

/* ── Credentials Section ────────────────────────── */
.credentials-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── Education Timeline ─────────────────────────── */
.edu-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 1.5rem 0 2rem;
}
.edu-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
  border-radius: 2px;
}
.edu-item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.edu-item:last-child { padding-bottom: 0; }
.edu-item::before {
  content: '';
  position: absolute;
  left: -1.45rem;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  z-index: 1;
}
.edu-year {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold-light, rgba(176,137,66,.08));
  padding: .1rem .5rem;
  border-radius: 3px;
  margin-bottom: .35rem;
}
.edu-title {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 .2rem;
  line-height: 1.4;
}
.edu-institution {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.edu-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: .06rem .45rem;
  border-radius: 3px;
  margin-top: .3rem;
  letter-spacing: .04em;
  opacity: .85;
}

/* ── Continuing Education List (Über mich / About) ── */
.weiterbild-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .75rem;
}
.weiterbild-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .55rem .9rem;
  border-left: 2.5px solid var(--accent);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.weiterbild-uni {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .85;
}
.weiterbild-course {
  font-size: .86rem;
  color: var(--text);
  line-height: 1.4;
}
body.dark .weiterbild-item { background: var(--bg); border-left-color: var(--gold); }
body.dark .weiterbild-uni  { color: var(--gold); }

/* ── Approach Spectrum (Salutogenese / Pathogenese) */
.approach-spectrum {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  margin: 1.75rem 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.spectrum-side {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.spectrum-divider {
  background: var(--border);
  width: 1px;
}
.spectrum-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}
.spectrum-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.spectrum-side ul li::before { content: '— '; color: var(--accent); }
@media (max-width: 600px) {
  .approach-spectrum { grid-template-columns: 1fr; }
  .spectrum-divider { width: auto; height: 1px; }
}

/* ── PRICING PAGE ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin: 0 auto 3rem; }
.pricing-card { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem 2rem 2.25rem; display: flex; flex-direction: column; }
.pricing-card.featured { background: var(--bg); border-color: var(--accent); box-shadow: var(--shadow); }
.pricing-badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bg); background: var(--accent); padding: .2rem .65rem; border-radius: 20px; margin-bottom: 1rem; }
.pricing-type { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; }
.pricing-amount { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .2rem; }
.pricing-amount strong { font-family: var(--font-head); font-size: 3.5rem; font-weight: 500; color: var(--text); line-height: 1; }
.pricing-amount span { font-size: 1.4rem; font-family: var(--font-head); color: var(--text-muted); }
.pricing-per { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 2rem; border-top: 1px solid var(--border); padding-top: 1.25rem; flex: 1; }
.pricing-card ul li { padding: .35rem 0; font-size: .88rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: .55rem; line-height: 1.5; }
.pricing-card ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
/* ── BLOG PAGE ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s; }
.blog-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.blog-platform { display: flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; white-space: nowrap; overflow: hidden; flex: none; }
.blog-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; line-height: 1.45; font-family: var(--font-body); color: var(--text); min-height: 2.9rem; max-height: 2.9rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.blog-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }
.blog-card p:not(.blog-platform) { flex: 1; }
.blog-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1rem 0 0; }
.blog-tag { font-size: .7rem; font-weight: 600; color: var(--text-muted); background: var(--bg-alt); border: 1px solid var(--border); padding: .15rem .5rem; border-radius: 20px; }
.blog-read-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; font-weight: 600; color: var(--accent); text-decoration: none; margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.blog-read-link svg { transition: transform .2s; }
.blog-card:hover .blog-read-link svg { transform: translateX(3px); }
.blog-date { font-size: .75rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-loading { text-align: center; padding: 3rem; color: var(--text-muted); font-size: .9rem; }

/* ── WELLBEING CHECK / SELBSTTEST ── */
@keyframes quizFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.quiz-wrap { max-width: 660px; margin: 0 auto; }
.quiz-screen { display: none; }
.quiz-screen.active { display: block; animation: quizFadeIn .22s ease forwards; }

/* Disclaimer */
.quiz-disclaimer { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem 2rem; }
.quiz-disclaimer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.25rem 0 1.5rem; }
.quiz-disclaimer-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; }
.quiz-disclaimer-box h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: .6rem; }
.quiz-disclaimer-box ul { list-style: none; padding: 0; margin: 0; }
.quiz-disclaimer-box ul li { font-size: .86rem; color: var(--text-muted); padding: .22rem 0; padding-left: 1.1em; position: relative; line-height: 1.5; }
.quiz-disclaimer-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: .82rem; }
.quiz-disclaimer-box.caution ul li::before { content: '!'; color: var(--gold); }

/* Progress */
.quiz-progress-track { height: 5px; background: var(--border); border-radius: 3px; margin-bottom: .75rem; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width .35s cubic-bezier(.4,0,.2,1); }
.quiz-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.quiz-step-counter { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.quiz-group-badge { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); background: var(--bg-alt); border: 1px solid var(--border); padding: .2rem .6rem; border-radius: 4px; }

/* Question */
.quiz-timeframe { font-size: .85rem; color: var(--text-muted); font-style: italic; margin-bottom: .4rem; }
.quiz-question-text { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.45; color: var(--text); margin-bottom: 2rem; }
.quiz-options { display: flex; flex-direction: column; gap: .6rem; }
.quiz-opt { display: flex; align-items: center; gap: .85rem; padding: .85rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); cursor: pointer; font-size: .9rem; color: var(--text); text-align: left; transition: border-color .15s, background .15s, transform .1s; width: 100%; font-family: var(--font-body); }
.quiz-opt:hover { border-color: var(--accent); background: var(--accent-light); transform: translateX(3px); }
.quiz-opt-radio { width: 17px; height: 17px; min-width: 17px; border: 2px solid var(--border); border-radius: 50%; transition: border-color .15s, background .15s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quiz-opt:hover .quiz-opt-radio { border-color: var(--accent); }
.quiz-opt.selected { border-color: var(--accent); background: var(--accent-light); }
.quiz-opt.selected .quiz-opt-radio { border-color: var(--accent); background: var(--accent); }
.quiz-opt.selected .quiz-opt-radio::after { content: ''; display: block; width: 6px; height: 6px; background: white; border-radius: 50%; }

/* Calculating */
.quiz-calc { text-align: center; padding: 4rem 0; }
.quiz-calc-spinner { width: 38px; height: 38px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 1.25rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Question slide transitions */
@keyframes quizSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-32px); }
}
@keyframes quizSlideIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz-q-content.slide-out { animation: quizSlideOut .18s ease forwards; }
.quiz-q-content.slide-in  { animation: quizSlideIn .24s cubic-bezier(.25,.46,.45,.94) forwards; }
/* Brief scale-pulse on the selected option */
@keyframes quizOptPulse { 0%,100%{ transform: scale(1) translateX(3px); } 50%{ transform: scale(1.025) translateX(3px); } }
.quiz-opt.selected { animation: quizOptPulse .18s ease; }

/* Results */
.quiz-results-header { text-align: center; margin-bottom: 2.5rem; }
.quiz-ring-wrap { position: relative; display: inline-block; margin-bottom: .75rem; }
.quiz-ring { transform: rotate(-90deg); display: block; }
.quiz-ring-score { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; line-height: 1; }
.quiz-ring-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 500; color: var(--text); }
.quiz-ring-max { display: block; font-size: .72rem; color: var(--text-muted); margin-top: .2rem; }
.quiz-result-card { padding: 1.5rem; border-radius: var(--radius); border: 2px solid var(--border); margin-bottom: 1.5rem; }
.quiz-result-card.level-poor  { border-color: #C0392B; background: rgba(192,57,43,.05); }
.quiz-result-card.level-low   { border-color: #D97706; background: rgba(217,119,6,.05); }
.quiz-result-card.level-mid   { border-color: #C49A3C; background: rgba(196,154,60,.05); }
.quiz-result-card.level-good  { border-color: #2D7A3A; background: rgba(45,122,58,.05); }
.quiz-result-headline { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.quiz-result-headline.level-poor { color: #C0392B; }
.quiz-result-headline.level-low  { color: #D97706; }
.quiz-result-headline.level-mid  { color: #A07C1A; }
.quiz-result-headline.level-good { color: #2D7A3A; }
.quiz-result-text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.quiz-subscores { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.quiz-sub-card { padding: 1.1rem 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); }
.quiz-sub-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: .4rem; }
.quiz-sub-status { font-size: .88rem; font-weight: 600; }
.quiz-sub-status.ok       { color: #2D7A3A; }
.quiz-sub-status.elevated { color: #C0392B; }
.quiz-sub-val { font-size: .75rem; color: var(--text-muted); margin-top: .2rem; }
.quiz-crisis { padding: 1.25rem 1.5rem; border: 2px solid #C0392B; border-radius: var(--radius); background: rgba(192,57,43,.05); margin-bottom: 1.5rem; }
.quiz-crisis-title { font-size: .92rem; font-weight: 700; color: #C0392B; margin-bottom: .5rem; }
.quiz-crisis p { font-size: .86rem; color: var(--text-muted); margin: 0 0 .35rem; line-height: 1.65; }
.quiz-crisis a { color: #C0392B; font-weight: 600; }
.quiz-legal { font-size: .78rem; color: var(--text-muted); line-height: 1.65; padding: 1rem 1.25rem; background: var(--bg-alt); border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 1.5rem; }
.quiz-retake { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--text-muted); cursor: pointer; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .55rem 1rem; transition: border-color .2s, color .2s; font-family: var(--font-body); }
.quiz-retake:hover { border-color: var(--accent); color: var(--accent); }

/* Dark mode */
body.dark .quiz-disclaimer { background: var(--bg-alt); }
body.dark .quiz-disclaimer-box { background: var(--bg); }
body.dark .quiz-opt { background: var(--bg-alt); }
body.dark .quiz-opt:hover,
body.dark .quiz-opt.selected { background: rgba(196,154,60,.08); border-color: var(--gold); }
body.dark .quiz-opt:hover .quiz-opt-radio,
body.dark .quiz-opt.selected .quiz-opt-radio { border-color: var(--gold); }
body.dark .quiz-opt.selected .quiz-opt-radio { background: var(--gold); }
body.dark .quiz-sub-card { background: var(--bg); }
body.dark .quiz-result-card.level-good { border-color: #3DAE4E; background: rgba(61,174,78,.06); }
body.dark .quiz-result-headline.level-good { color: #3DAE4E; }
body.dark .quiz-sub-status.ok { color: #3DAE4E; }
body.dark .quiz-result-headline.level-mid { color: var(--gold); }

/* Selftest home CTA */
.selftest-cta-banner { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.selftest-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.selftest-cta-inner h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.selftest-cta-inner p { font-size: .92rem; color: var(--text-muted); max-width: 46ch; margin: 0; }

@media (max-width: 600px) {
  .quiz-disclaimer-cols { grid-template-columns: 1fr; }
  .quiz-subscores { grid-template-columns: 1fr; }
  .quiz-question-text { font-size: 1.15rem; }
  .selftest-cta-inner { flex-direction: column; text-align: center; }
  .selftest-cta-inner p { max-width: none; }
}

/* ── MindFi Publication Badge ── */
.mindfi-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.mindfi-badge-info {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 0;
}
.mindfi-badge-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mindfi-badge-icon svg { width: 22px; height: 22px; color: #fff; }
.mindfi-badge-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: nowrap;
}
.mindfi-badge-platform {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.mindfi-badge .btn-ghost {
  white-space: nowrap;
  flex-shrink: 0;
}
body.dark .mindfi-badge-icon { background: var(--gold); }

/* -- PRICING PAGE -- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin: 0 auto 3rem; }
.pricing-card { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem 2rem 2.25rem; display: flex; flex-direction: column; }
.pricing-card.featured { background: var(--bg); border-color: var(--accent); box-shadow: var(--shadow); }
.pricing-badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bg); background: var(--accent); padding: .2rem .65rem; border-radius: 20px; margin-bottom: 1rem; }
.pricing-type { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; }
.pricing-amount { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .2rem; }
.pricing-amount strong { font-family: var(--font-head); font-size: 3.5rem; font-weight: 500; color: var(--text); line-height: 1; }
.pricing-amount span { font-size: 1.4rem; font-family: var(--font-head); color: var(--text-muted); }
.pricing-per { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 2rem; border-top: 1px solid var(--border); padding-top: 1.25rem; flex: 1; }
.pricing-card ul li { padding: .35rem 0; font-size: .88rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: .55rem; line-height: 1.5; }
.pricing-card ul li::before { content: '\2713'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.pricing-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 820px; margin: 0 auto 3rem; }
.pricing-info-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; }
.pricing-info-box strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: .35rem; }
.pricing-info-box p { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 620px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-info-row { grid-template-columns: 1fr; }
}

/* =========================================================
   DESIGN ENHANCEMENTS — Dark Mode, Animations, UX polish
   ========================================================= */

/* -- THEME TRANSITION (only when toggling, not on load) -- */
body.theme-transition,
body.theme-transition * {
  transition: background-color .3s ease, color .25s ease, border-color .25s ease !important;
}

/* -- DARK MODE -- */
body.dark {
  --bg:           #0E1912;
  --bg-alt:       #152019;
  --text:         #EDE8E0;
  --text-muted:   #8A9E94;
  --border:       #253328;
  --accent-light: #182C1E;
  --gold-light:   rgba(196,154,60,.13);
  --shadow:       0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.55);
}
body.dark .about-stats-card { background: var(--bg-alt); border-color: var(--border); }
body.dark .service-card     { background: var(--bg-alt); }
body.dark .about-card       { background: var(--bg-alt); }
body.dark .sidebar-card     { background: var(--bg-alt); }
body.dark .pricing-card     { background: var(--bg-alt); }
body.dark .pricing-card.featured { background: #1A2E1F; }
body.dark .pricing-info-box { background: var(--bg-alt); }
body.dark .publication-card { background: var(--bg-alt); }
body.dark .blog-card        { background: var(--bg-alt); }
body.dark .faq-answer       { background: var(--bg-alt); }
body.dark input, body.dark textarea, body.dark select {
  background: var(--bg-alt); color: var(--text); border-color: var(--border);
}
body.dark .contact-form     { background: var(--bg-alt); }
body.dark .about-tags span,
body.dark .pub-platform {
  background: rgba(196,154,60,.15);
  color: var(--gold);
  border-color: rgba(196,154,60,.25);
}
body.dark .service-icon {
  background: rgba(196,154,60,.12);
  color: var(--gold);
}
body.dark .edu-year {
  background: rgba(196,154,60,.15);
  color: var(--gold);
}
body.dark .edu-tag {
  color: var(--gold);
  border-color: rgba(196,154,60,.4);
}
/* Active nav link in dark mode (inline style="color:var(--accent)" becomes invisible on dark bg) */
body.dark .nav-links a[aria-current="page"] {
  color: var(--gold) !important;
}
body.dark .bottom-nav-item.active {
  color: var(--gold);
}
/* "Was Klienten beschäftigt" / "What clients are dealing with" topic labels */
body.dark #klienten-stimmen span:not([aria-hidden]),
body.dark #client-concerns span:not([aria-hidden]) {
  color: var(--gold) !important;
}
/* Decorative quotation marks — change base color to light so opacity:.18 stays subtle but visible */
body.dark #klienten-stimmen span[aria-hidden],
body.dark #client-concerns span[aria-hidden] {
  color: var(--text) !important;
}
/* Blog platform label */
body.dark .blog-platform { color: var(--gold); }
/* Breadcrumb — link and separator invisible on dark bg */
body.dark .breadcrumb a { color: var(--gold); }
body.dark .breadcrumb span { color: var(--text-muted); }
/* Contact items — white bg stays white in dark mode, making text invisible */
body.dark .contact-item {
  background: var(--bg-alt);
  color: var(--text);
}
body.dark .contact-item:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* Social profile buttons — hover uses --accent which is invisible on dark bg */
body.dark .social-profile-btn {
  color: var(--text);
}
body.dark .social-profile-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* Inline accent-colored links (Datenschutz) in contact section */
body.dark .contact-links p a,
body.dark .contact-form label a { color: var(--gold) !important; }

/* -- DARK TOGGLE BUTTON -- */
#dark-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: .28rem .6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
  margin-right: .5rem;
  flex-shrink: 0;
}
#dark-toggle:hover { border-color: var(--accent); color: var(--accent); }
#dark-toggle svg  { width: 15px; height: 15px; stroke: currentColor; }
body.dark     #dark-toggle .icon-sun  { display: none; }
body:not(.dark) #dark-toggle .icon-moon { display: none; }

/* -- SCROLL PROGRESS BAR -- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  z-index: 10000; width: 0%;
  transition: width .06s linear;
  pointer-events: none;
}

/* -- BACK TO TOP -- */
#back-to-top {
  position: fixed; bottom: 5rem; right: 1.25rem;
  width: 44px; height: 44px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
  z-index: 900; box-shadow: var(--shadow);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover   { background: var(--accent-hover); transform: translateY(-3px) !important; box-shadow: var(--shadow-lg); }
#back-to-top svg     { width: 20px; height: 20px; stroke: currentColor; }
@media (max-width: 768px) { #back-to-top { bottom: 5.5rem; right: 1rem; } }

/* -- MOBILE BOTTOM NAV -- */
#mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 998;
  padding: .45rem 0 calc(.45rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 16px rgba(0,0,0,.07);
}
@media (max-width: 768px) { #mobile-bottom-nav { display: flex; } }
.bottom-nav-items { display: flex; width: 100%; justify-content: space-around; align-items: center; }
.bottom-nav-item  {
  display: flex; flex-direction: column; align-items: center; gap: .18rem;
  padding: .3rem .4rem; color: var(--text-muted); text-decoration: none;
  font-size: .58rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; transition: color .2s; min-width: 50px;
}
.bottom-nav-item svg   { width: 21px; height: 21px; }
.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--accent); }
@media (max-width: 768px) { body { padding-bottom: 70px; } }

/* -- HERO PATTERN -- */
#hero { position: relative; overflow: hidden; }
#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(28,58,40,.065) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
#hero .hero-content,
#hero .hero-visual,
#hero .hero-scroll { position: relative; z-index: 1; }

/* -- ENHANCED MICRO-INTERACTIONS -- */
.btn-primary {
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), box-shadow .18s, background .2s;
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(28,58,40,.28); }
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: none; }
.btn-ghost { transition: transform .18s cubic-bezier(.34,1.4,.64,1), border-color .2s, color .2s; }
.btn-ghost:hover { transform: translateY(-2px); }

.service-card {
  transition: transform .25s cubic-bezier(.34,1.2,.64,1), box-shadow .25s, border-color .2s;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(28,58,40,.3); }
.service-icon svg   { transition: transform .3s cubic-bezier(.34,1.6,.64,1); }
.service-card:hover .service-icon svg { transform: scale(1.18) rotate(-4deg); }

.publication-card   { transition: transform .25s cubic-bezier(.34,1.2,.64,1), box-shadow .25s; }
.publication-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.faq-item   { transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); }

.card-link  { transition: color .2s, transform .2s; display: inline-flex; align-items: center; }
.card-link:hover { color: var(--accent); transform: translateX(3px); }

.learn-more { transition: color .2s, gap .2s, padding-left .2s; display: inline-flex; align-items: center; }
.service-card:hover .learn-more { color: var(--accent); padding-left: 3px; }

.pricing-info-box { transition: box-shadow .2s, border-color .2s; }
.pricing-info-box:hover { border-color: var(--accent); box-shadow: var(--shadow); }

/* -- FLOATING LABELS -- */
.form-group.floating { position: relative; }
.form-group.floating label {
  position: absolute; top: 1.05rem; left: 1rem;
  font-size: .88rem; font-weight: 400; color: var(--text-muted);
  pointer-events: none;
  transition: top .18s ease, font-size .18s ease, color .18s ease, font-weight .18s ease;
  z-index: 1; line-height: 1;
}
.form-group.floating input,
.form-group.floating textarea { padding-top: 1.45rem; padding-bottom: .5rem; }
.form-group.floating input:focus     ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:focus  ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label {
  top: .3rem; font-size: .65rem; font-weight: 700; color: var(--accent); letter-spacing: .05em;
}

/* ── ACCESSIBILITY (WCAG 2.1 AA) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
#cta-banner a:focus-visible,
#cta-banner button:focus-visible,
footer a:focus-visible { outline-color: var(--white); }

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .hero-scroll span { animation: none !important; }
  .skip-link { transition: none; }
}
