﻿/* ============================================
   TABAK Consulting – Investor-Grade Stylesheet
   ============================================ */

:root {
    /* Brand-Palette abgeleitet vom TABAK-Logo (Stahlblau + Slate-Grau) */
    --navy: #1F5278;          /* Brand-Blau, vertieft fuer Premium-Feeling */
    --navy-deep: #163E5C;     /* Hero & dunkle Sektionen */
    --navy-soft: #2D6FA0;     /* exaktes Logo-Blau, fuer Akzente */
    --slate: #555759;         /* Logo-Grau (CONSULTING) */
    --slate-light: #6F7274;
    --gold: #C49A5E;          /* warmer Honig-Akzent (gedaempfter als Gold) */
    --gold-soft: #D4B17F;
    --gold-deep: #A07B42;
    --pearl: #F5F1E8;         /* warmer Off-White, harmoniert mit Logo */
    --pearl-deep: #EBE5D5;
    --ink: #1A1A1A;
    --ink-soft: #4A4A4A;
    --text-body: #4A4A4A;    /* Fließtext-Standard auf hellem Hintergrund */
    --bg-soft: #FAFAF8;      /* Sanfter heller Hintergrund */
    --line: rgba(31, 82, 120, 0.12);
    --line-light: rgba(255, 255, 255, 0.14);
    --shadow-sm: 0 4px 14px rgba(20, 33, 61, 0.06);
    --shadow-md: 0 18px 48px rgba(20, 33, 61, 0.10);
    --shadow-lg: 0 32px 80px rgba(20, 33, 61, 0.18);

    --serif: 'Source Serif Pro', 'Lora', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius: 4px;
    --radius-lg: 10px;
    --container: 1280px;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}
body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.section-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 20px;
}
.section-eyebrow.gold { color: var(--gold-deep); }
.section-headline {
    font-size: clamp(36px, 4.5vw, 64px);
    margin-bottom: 32px;
}
.section-lead {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 780px;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary, .btn-ghost, .btn-gold, .btn-gold-outline, .btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: all .3s cubic-bezier(.22,.61,.36,1);
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--navy);
    color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
    color: var(--navy);
    border-color: var(--line);
    background: transparent;
}
/* Hover für Sekundär-Buttons: nur Text & Rahmen werden gold — kein Fill, kein Glow */
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: transparent; }
.btn-ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-gold {
    background: var(--gold);
    color: #fff;
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(184, 153, 104, .35); }
.btn-gold-outline {
    color: var(--gold-deep);
    border-color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }
.arrow { transition: transform .3s ease; display: inline-block; }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: all .3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(20, 33, 61, .06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.site-header .logo .logo-img,
.footer-brand .logo .logo-img {
    height: 38px;
    width: auto;
    max-width: none;
    display: block;
    transition: opacity .25s ease;
}
.site-header .logo:hover .logo-img { opacity: .85; }
.footer-brand .logo-footer .logo-img,
.logo-footer .logo-img {
    height: 44px;
    width: auto;
    max-width: none;
    /* Logo auf transparentem Hintergrund — fuer dunklen Footer aufhellen */
    filter: brightness(0) invert(1);
    opacity: .92;
}
.main-nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 8px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--navy); }
.main-nav a.nav-active { color: var(--navy); }
.main-nav a.nav-active::after { width: 100%; }

/* ── Dropdown Nav ── */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-arrow {
    font-size: 9px;
    line-height: 1;
    color: var(--slate);
    transition: transform .22s ease;
    display: inline-block;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 250px;
    box-shadow: 0 24px 64px rgba(20,40,61,.13);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 9999;
    pointer-events: none;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 12px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg);
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
    border-radius: 0;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { background: var(--pearl); color: var(--navy); }
.nav-dropdown-icon {
    width: 26px; height: 26px;
    background: var(--navy);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
}
.nav-dropdown a:hover .nav-dropdown-icon { background: var(--gold); color: #fff; }
.nav-dropdown-divider {
    height: 1px;
    background: var(--line);
    margin: 6px 0;
}
.nav-dropdown-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy) !important;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.nav-dropdown-all::after { display: none !important; }
.nav-dropdown-all:hover { background: var(--pearl); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lang-switch {
    display: flex;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-right: 8px;
}
.lang-switch span { padding: 4px 6px; cursor: pointer; transition: color .2s; }
.lang-switch span.active { color: var(--navy); border-bottom: 1px solid var(--gold); }
.lang-switch span:hover { color: var(--navy); }
.header-actions .btn-ghost { padding: 9px 16px; font-size: 13px; }
.header-actions .btn-gold-outline { padding: 9px 16px; font-size: 13px; }
.header-actions .btn-primary { padding: 11px 20px; font-size: 13px; }

/* ============ WISSEN / ARTIKEL ============ */
.wissen-hero { padding: 180px 0 80px; background: linear-gradient(135deg, #143B58 0%, #1F5278 60%, #0F2F47 100%); color: #fff; position: relative; overflow: hidden; }
.wissen-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(196,154,94,.15) 0%, transparent 55%); }
.wissen-hero .container { position: relative; z-index: 2; }
.wissen-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.wissen-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.wissen-hero h1 { font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); line-height: 1.1; font-weight: 600; margin: 0 0 24px; letter-spacing: -.01em; max-width: 880px; }
.wissen-hero h1 em { font-style: italic; color: var(--gold); }
.wissen-hero p.lead { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.82); max-width: 720px; margin: 0; }
.wissen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.wissen-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; }
.wissen-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(20,40,61,.10); border-color: var(--navy); }
.wissen-card-cat { display: inline-block; padding: 5px 12px; background: var(--pearl); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; margin-bottom: 16px; }
.wissen-card-body { padding: 28px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.wissen-card h3 { font-family: var(--serif); font-size: 22px; line-height: 1.25; margin: 0 0 14px; font-weight: 600; color: var(--ink); }
.wissen-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-body); margin: 0 0 20px; flex: 1; }
.wissen-card a.read { color: var(--navy); font-size: 13.5px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; letter-spacing: .02em; }
.wissen-card a.read:hover { color: var(--gold); }
.wissen-card-meta { font-size: 12px; color: var(--slate); margin-top: 14px; padding-top: 14px; border-top: 1px solid #f1f1f1; display: flex; gap: 16px; }
.wissen-cat-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; padding-bottom: 30px; border-bottom: 1px solid #e2e8f0; }
.wissen-cat-filter button { padding: 8px 16px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--slate); cursor: pointer; transition: all .2s; font-family: inherit; }
.wissen-cat-filter button:hover, .wissen-cat-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
@media (max-width:900px){ .wissen-grid{grid-template-columns:1fr;} }

/* Article page */
.article-hero { padding: 160px 0 60px; background: linear-gradient(135deg, #143B58 0%, #1F5278 60%); color: #fff; }
.article-breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.article-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--gold); }
.article-hero h1 { font-family: var(--serif); font-size: clamp(32px, 4.4vw, 54px); line-height: 1.12; font-weight: 600; margin: 0 0 22px; max-width: 880px; letter-spacing: -.01em; }
.article-hero h1 em { font-style: italic; color: var(--gold); }
.article-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.7); }
.article-meta span strong { color: #fff; font-weight: 600; }
.article-body { max-width: 760px; margin: 0 auto; padding: 80px 0 100px; font-size: 16.5px; line-height: 1.8; color: var(--text-body); }
.article-body h2 { font-family: var(--serif); font-size: 30px; line-height: 1.2; margin: 56px 0 20px; color: var(--ink); font-weight: 600; }
.article-body h3 { font-family: var(--serif); font-size: 22px; line-height: 1.3; margin: 40px 0 16px; color: var(--navy); font-weight: 600; }
.article-body p { margin: 0 0 22px; }
.article-body p.lead { font-size: 19px; line-height: 1.65; color: var(--ink); margin-bottom: 36px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 32px 0; background: var(--pearl); font-style: italic; font-family: var(--serif); font-size: 18px; color: var(--navy); line-height: 1.6; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14.5px; }
.article-body table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; }
.article-body table td { padding: 12px 16px; border-bottom: 1px solid #e2e8f0; }
.article-body table tr:nth-child(even) td { background: #fafafa; }
.article-keyfact { padding: 24px 28px; background: var(--navy); color: #fff; border-radius: 10px; margin: 32px 0; }
.article-keyfact strong { color: var(--gold); display: block; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.article-keyfact p { margin: 0; color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.6; }
.article-cta { background: var(--navy-deep); color: #fff; padding: 50px; border-radius: 14px; margin: 60px 0 40px; text-align: center; }
.article-cta h4 { font-family: var(--serif); font-size: 26px; margin: 0 0 14px; font-weight: 600; color: #fff; }
.article-cta p { color: rgba(255,255,255,.78); margin: 0 0 24px; font-size: 15px; }
.article-related { padding: 80px 0; background: var(--pearl); }
.article-related h4 { font-family: var(--serif); font-size: 26px; margin: 0 0 30px; color: var(--ink); font-weight: 600; }

/* ============ STRATEGISCHER MEHRWERT (universell) ============ */
.mehrwert-section { padding:120px 0; background:var(--navy-deep); color:#fff; position:relative; overflow:hidden; }
.mehrwert-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 20%, rgba(196,154,94,.12) 0%, transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(45,111,160,.18) 0%, transparent 55%); pointer-events:none; }
.mehrwert-section .container { position:relative; z-index:2; }
.mehrwert-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin-top:50px; }
.mehrwert-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:32px; transition:transform .25s, border-color .25s; }
.mehrwert-card:hover { transform:translateY(-3px); border-color:rgba(196,154,94,.4); }
.mehrwert-num { display:inline-block; font-family:var(--serif); font-size:13px; color:var(--gold); letter-spacing:.2em; margin-bottom:14px; font-weight:600; }
.mehrwert-card h4 { font-family:var(--serif); font-size:21px; line-height:1.25; margin:0 0 14px; font-weight:600; color:#fff; }
.mehrwert-card p { color:rgba(255,255,255,.72); font-size:14.5px; line-height:1.7; margin:0; }
.mehrwert-card p strong { color:var(--gold); font-weight:600; }
.mehrwert-section .section-eyebrow { color: rgba(255,255,255,.6); }
.mehrwert-section .section-eyebrow.gold { color: var(--gold); }
.mehrwert-bottom-note { margin-top:50px; padding:30px; background:rgba(255,255,255,.04); border:1px solid rgba(196,154,94,.25); border-radius:14px; }
.mehrwert-bottom-note p { margin:0; color:rgba(255,255,255,.86); font-size:15px; line-height:1.75; }
.mehrwert-bottom-note strong { color:var(--gold); }
@media (max-width:900px){ .mehrwert-grid{grid-template-columns:1fr;} }

/* ============ LANGUAGE SWITCHER (DE/EN/FR/AR) ============ */
.lang-switch {
    position: relative;
    margin-right: 8px;
}
.lang-switch-current {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 6px 12px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lang-switch-current::after {
    content: '▾';
    font-size: 10px;
    color: var(--slate);
}
.lang-switch-current:hover {
    border-color: var(--gold);
    color: var(--navy);
}
.lang-switch-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(20,40,61,.12);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 1000;
}
.lang-switch.is-open .lang-switch-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switch-menu li { margin: 0; }
.lang-switch-menu button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 9px 12px;
    text-align: left;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    border-radius: 6px;
    transition: background .15s;
}
.lang-switch-menu button:hover { background: var(--pearl); }
.lang-switch-menu button.active { color: var(--navy); font-weight: 700; background: rgba(196,154,94,0.1); }

/* Language notice banner (for non-DE) */
.lang-notice {
    display: none;
    background: rgba(196, 154, 94, 0.12);
    border-bottom: 1px solid rgba(196, 154, 94, 0.3);
    color: var(--navy);
    font-size: 12.5px;
    text-align: center;
    padding: 8px 16px;
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    z-index: 79;
}
.lang-notice.is-visible { display: block; }

/* RTL Layout for Arabic */
html[dir="rtl"] body {
    direction: rtl;
}
html[dir="rtl"] .main-nav,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-disciplines,
html[dir="rtl"] .hero-ctas,
html[dir="rtl"] .footer-grid {
    direction: rtl;
}
html[dir="rtl"] .arrow,
html[dir="rtl"] .nav-arrow,
html[dir="rtl"] .trigger-band a strong + *,
html[dir="rtl"] .hero-disc-text small,
html[dir="rtl"] .lead-actions {
    direction: rtl;
}
html[dir="rtl"] .arrow { transform: scaleX(-1); display: inline-block; }
html[dir="rtl"] .nav-dropdown { right: auto; left: 50%; transform: translateX(50%) translateY(6px); }
html[dir="rtl"] .nav-item:hover .nav-dropdown { transform: translateX(50%) translateY(0); }
html[dir="rtl"] .lang-switch-menu { right: auto; left: 0; }
html[dir="rtl"] body, html[dir="rtl"] .hero h1, html[dir="rtl"] .hero-headline,
html[dir="rtl"] .section-headline, html[dir="rtl"] .article-body {
    font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
    letter-spacing: 0;
}

/* ============ LEAD MODAL (Popup) ============ */
.lead-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: leadFadeIn .25s ease both;
}
.lead-modal-backdrop.is-open { display: flex; }
@keyframes leadFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lead-modal {
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: leadSlideUp .4s cubic-bezier(.22,.8,.25,1) both;
}
@keyframes leadSlideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.lead-modal-head {
    padding: 28px 36px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    position: relative;
}
.lead-modal-head .lead-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.lead-modal-head h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin: 0 0 6px;
    font-weight: 600;
    line-height: 1.2;
}
.lead-modal-head p {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.lead-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lead-close:hover { background: rgba(196,154,94,0.4); }

.lead-callback-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 7px 14px;
    background: rgba(196,154,94,0.18);
    border: 1px solid rgba(196,154,94,0.5);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.lead-callback-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #69db7c;
    box-shadow: 0 0 8px rgba(105, 219, 124, 0.7);
    animation: leadDotPulse 1.8s ease-in-out infinite;
}
@keyframes leadDotPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px rgba(105, 219, 124, 1); }
}
.lead-preselected { margin-bottom: 20px; }
.lead-preselect-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(196,154,94,0.08) 0%, rgba(31,82,120,0.05) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.4;
}
.lead-preselect-pill strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
    margin-bottom: 2px;
    font-weight: 700;
}
.lead-preselect-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.lead-success-small {
    font-size: 13px;
    color: var(--slate);
    margin-top: 14px;
}

.lead-progress {
    display: flex;
    gap: 6px;
    padding: 14px 36px 0;
    background: var(--pearl);
}
.lead-progress-step {
    flex: 1;
    height: 4px;
    background: rgba(20,40,61,0.12);
    border-radius: 2px;
    transition: background .3s;
}
.lead-progress-step.active { background: var(--gold); }

.lead-body {
    padding: 28px 36px 32px;
    overflow-y: auto;
    flex: 1;
}
.lead-step { display: none; }
.lead-step.active { display: block; animation: leadStepFade .35s ease both; }
@keyframes leadStepFade { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.lead-question-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--navy);
    margin: 0 0 14px;
    text-transform: uppercase;
}
.lead-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.lead-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.4;
}
.lead-option:hover {
    border-color: var(--navy);
    background: var(--pearl);
}
.lead-option input { display: none; }
.lead-option .lead-radio {
    width: 18px; height: 18px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: border-color .2s;
}
.lead-option input:checked + .lead-radio {
    border-color: var(--gold);
}
.lead-option input:checked + .lead-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--gold);
    border-radius: 50%;
}
.lead-option:has(input:checked) {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(196,154,94,0.06) 0%, rgba(31,82,120,0.04) 100%);
}

.lead-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.lead-options-grid .lead-option {
    flex-direction: column;
    text-align: center;
    padding: 16px 12px;
    gap: 8px;
}
.lead-options-grid .lead-radio { display: none; }
.lead-options-grid .lead-option strong { font-size: 14px; color: var(--navy); }
.lead-options-grid .lead-option small { font-size: 12px; color: var(--slate); }

.lead-field {
    margin-bottom: 16px;
}
.lead-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 6px;
}
.lead-field input,
.lead-field textarea,
.lead-field select {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.lead-field input:focus,
.lead-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31,82,120,0.10);
}
.lead-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-consent {
    font-size: 12px;
    color: var(--slate);
    line-height: 1.5;
    margin: 12px 0 0;
}
.lead-consent a { color: var(--navy); text-decoration: underline; }

.lead-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 16px 36px 28px;
    background: var(--pearl);
    border-top: 1px solid #e2e8f0;
}
.lead-actions button {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: none;
    font-letter-spacing: 0.02em;
}
.lead-btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    flex: 1;
}
.lead-btn-primary:hover { background: #b8893a; }
.lead-btn-primary:disabled { background: #cbd5e0; color: #fff; cursor: not-allowed; }
.lead-btn-ghost {
    background: transparent;
    color: var(--slate);
    border: 1.5px solid #e2e8f0 !important;
}
.lead-btn-ghost:hover { color: var(--navy); border-color: var(--navy) !important; }

.lead-success {
    display: none;
    padding: 60px 36px;
    text-align: center;
}
.lead-success.active { display: block; }
.lead-success-icon {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}
.lead-success h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--navy);
    margin: 0 0 12px;
}
.lead-success p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .lead-modal-head { padding: 24px 24px 20px; }
    .lead-body { padding: 24px 24px 28px; }
    .lead-actions { padding: 16px 24px 22px; }
    .lead-options-grid { grid-template-columns: 1fr; }
    .lead-field-row { grid-template-columns: 1fr; }
}

/* ============ HERO QUICK-BUTTONS (Service-Seiten) ============ */
.hero-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 32px 0 28px;
    max-width: 1180px;
}
.hero-quick button,
.hero-quick a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(196,154,94,0.35);
    border-radius: 12px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    text-align: left;
    transition: all .25s cubic-bezier(.22,.8,.25,1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
}
.hero-quick button:hover,
.hero-quick a:hover {
    background: rgba(196,154,94,0.18);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.hero-quick-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(196,154,94,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    transition: background .25s, color .25s;
}
.hero-quick button:hover .hero-quick-icon,
.hero-quick a:hover .hero-quick-icon { background: var(--gold); color: var(--navy-deep); }
.hero-quick-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.hero-quick-text strong {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    line-height: 1.25;
}
.hero-quick-text small {
    font-size: 12.5px;
    color: var(--gold-soft);
    letter-spacing: 0.02em;
    font-weight: 600;
    line-height: 1.3;
}
.hero-quick-arrow {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-left: auto;
    transition: transform .25s, color .25s;
}
.hero-quick button:hover .hero-quick-arrow,
.hero-quick a:hover .hero-quick-arrow {
    color: var(--gold);
    transform: translateX(3px);
}
.hero-quick-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 11.5px;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}
.hero-quick-hint::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #69db7c;
    box-shadow: 0 0 8px rgba(105,219,124,0.7);
    animation: leadDotPulse 1.8s ease-in-out infinite;
}
.hero-quick-hint::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(196,154,94,0.4) 0%, transparent 100%);
    max-width: 60px;
}
@media (max-width: 600px) {
    .hero-quick { grid-template-columns: 1fr; }
}

/* ============ HERO DISZIPLINEN-BUTTONS ============ */
.hero-disciplines {
    margin: 36px 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 920px;
}
.hero-disciplines a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.2;
    transition: all .25s cubic-bezier(.22,.8,.25,1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-disciplines a::after { content: ''; }
.hero-disciplines a:hover {
    background: rgba(196,154,94,0.16);
    border-color: rgba(196,154,94,0.6);
    transform: translateY(-2px);
    color: #fff;
}
.hero-disc-icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,154,94,0.18);
    color: var(--gold);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}
.hero-disciplines a:hover .hero-disc-icon {
    background: var(--gold);
    color: var(--navy-deep);
}
.hero-disc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-disc-text strong {
    font-weight: 600;
    font-size: 13.5px;
}
.hero-disc-text small {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
    .hero-disciplines { grid-template-columns: repeat(2, 1fr); }
    .hero-quick { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hero-disciplines { grid-template-columns: 1fr; }
    .hero-quick { grid-template-columns: 1fr; }
    .hero-quick button, .hero-quick a { padding: 14px 16px; font-size: 13.5px; }
}

/* ============ TRIGGER BAND (am unteren Hero-Rand, fixiert) ============ */
.trigger-band {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 80;
    background: linear-gradient(180deg, rgba(15,47,71,0.94) 0%, rgba(20,59,88,0.96) 100%);
    border-top: 1px solid rgba(196, 154, 94, 0.45);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.18), 0 -1px 0 rgba(196,154,94,0.2) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: translateY(-100vh);
    opacity: 0;
    animation: triggerSwoosh 1.05s cubic-bezier(.22, .8, .25, 1) forwards;
    animation-delay: 0.35s;
    transition: transform .45s ease, opacity .35s ease;
}
.trigger-band::-webkit-scrollbar { display: none; }
.trigger-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    animation: triggerShine 1.4s ease-out forwards;
    animation-delay: 1.2s;
}
@keyframes triggerSwoosh {
    0%   { transform: translateY(-100vh); opacity: 0; }
    35%  { opacity: 0.6; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes triggerShine {
    0% { width: 0; left: 0; }
    100% { width: 100%; left: 0; }
}
/* Trigger-Band bleibt persistent sichtbar und klickbar — kein Auto-Hide */
.trigger-band-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.trigger-band a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    transition: color .2s ease, background .2s ease;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.trigger-band a:first-child { border-left: 1px solid rgba(255,255,255,0.08); }
.trigger-band a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0.85;
    box-shadow: 0 0 6px rgba(196,154,94,0.6);
}
.trigger-band a:hover {
    color: #fff;
    background: rgba(196, 154, 94, 0.18);
}
.trigger-band a strong {
    color: var(--gold);
    font-weight: 700;
}
body.has-trigger-band { padding-top: 0; padding-bottom: 56px; }
@media (max-width: 1024px) {
    .trigger-band-inner { padding: 0 20px; }
    .trigger-band a { padding: 11px 14px; font-size: 11.5px; }
}

/* ============ GLOW NUR auf PRIMARY-Buttons (gold / btn-primary) auf dunklen Hintergründen ============ */
/* Sekundäre Buttons (btn-ghost, btn-ghost-light, btn-gold-outline) bleiben dezent ohne Glow. */
.hero .btn-primary, .hero .btn-gold,
.page-hero .btn-primary, .page-hero .btn-gold,
.article-hero .btn-primary, .article-hero .btn-gold,
.wissen-hero .btn-primary, .wissen-hero .btn-gold,
.section-dark .btn-primary, .section-dark .btn-gold,
.mehrwert-section .btn-primary, .mehrwert-section .btn-gold,
.podcast-spotlight .btn-primary, .podcast-spotlight .btn-gold,
.page-cta .btn-primary, .page-cta .btn-gold,
.confidential-section .btn-primary, .confidential-section .btn-gold,
.journey-section .btn-primary, .journey-section .btn-gold,
[style*="background:var(--navy)"] .btn-gold, [style*="background:var(--navy-deep)"] .btn-gold {
    box-shadow: 0 12px 32px rgba(196, 154, 94, 0.32), 0 0 0 1px rgba(196, 154, 94, 0.12);
}
/* Hover: nur Farbe darf sich ändern — Glow bleibt identisch zum Ruhezustand */
.hero .btn-primary:hover, .hero .btn-gold:hover,
.page-hero .btn-primary:hover, .page-hero .btn-gold:hover,
.article-hero .btn-primary:hover, .article-hero .btn-gold:hover,
.wissen-hero .btn-primary:hover, .wissen-hero .btn-gold:hover,
.section-dark .btn-primary:hover, .section-dark .btn-gold:hover,
.mehrwert-section .btn-primary:hover, .mehrwert-section .btn-gold:hover,
.podcast-spotlight .btn-primary:hover, .podcast-spotlight .btn-gold:hover,
.page-cta .btn-primary:hover, .page-cta .btn-gold:hover,
.confidential-section .btn-primary:hover, .confidential-section .btn-gold:hover,
.journey-section .btn-primary:hover, .journey-section .btn-gold:hover,
[style*="background:var(--navy)"] .btn-gold:hover, [style*="background:var(--navy-deep)"] .btn-gold:hover {
    box-shadow: 0 12px 32px rgba(196, 154, 94, 0.32), 0 0 0 1px rgba(196, 154, 94, 0.12);
    transform: none;
}

/* ============ KONTRAST-SCHUTZ: dunkle Container erzwingen helle Headings ============ */
/* Globaler h1..h6 hat color:var(--ink) — überschreibt parent inherit. Hier explizit weiß. */
.hero h1, .hero h2, .hero h3, .hero h4,
.hero-headline,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.page-hero-headline,
.article-hero h1, .article-hero h2, .article-hero h3,
.wissen-hero h1, .wissen-hero h2, .wissen-hero h3, .wissen-hero h4,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-dark .section-headline,
.mehrwert-section h1, .mehrwert-section h2, .mehrwert-section h3, .mehrwert-section h4,
.mehrwert-section .section-headline,
.podcast-spotlight h1, .podcast-spotlight h2, .podcast-spotlight h3, .podcast-spotlight h4,
.podcast-spot-grid h1, .podcast-spot-grid h2, .podcast-spot-grid h3,
.podcast-spotlight .section-headline,
.lead-modal-head h1, .lead-modal-head h2, .lead-modal-head h3, .lead-modal-head h4,
.invmatrix-card-head h1, .invmatrix-card-head h2, .invmatrix-card-head h3,
.itki-domain.dark h1, .itki-domain.dark h2, .itki-domain.dark h3, .itki-domain.dark h4,
.investor-card h1, .investor-card h2, .investor-card h3, .investor-card h4,
.page-cta h1, .page-cta h2, .page-cta h3, .page-cta h4,
.partner-banner h1, .partner-banner h2, .partner-banner h3, .partner-banner h4,
.chat-head h1, .chat-head h2, .chat-head h3, .chat-head h4 {
    color: #fff;
}
/* Innerhalb dieser Container: <em> bleibt gold */
.hero em, .page-hero em, .article-hero em, .wissen-hero em,
.section-dark em, .mehrwert-section em, .podcast-spotlight em,
.lead-modal-head em, .invmatrix-card-head em, .itki-domain.dark em,
.investor-card em, .page-cta em, .partner-banner em {
    color: var(--gold);
}

/* Ghost-Buttons in dunklen Containern: hell statt navy */
.hero .btn-ghost,
.page-hero .btn-ghost,
.article-hero .btn-ghost,
.wissen-hero .btn-ghost,
.podcast-spotlight .btn-ghost,
.section-dark .btn-ghost,
.mehrwert-section .btn-ghost {
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.25);
}
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.article-hero .btn-ghost:hover,
.wissen-hero .btn-ghost:hover,
.podcast-spotlight .btn-ghost:hover,
.section-dark .btn-ghost:hover,
.mehrwert-section .btn-ghost:hover {
    color: var(--gold);
    background: transparent;
    border-color: var(--gold);
}

/* ============ KONTRAST-SCHUTZ: Navy-Backgrounds erzwingen helle Texte ============ */
/* Verhindert "blau auf fast-blau" Problem auf navy/navy-deep Containern */
[style*="background:var(--navy)"]:not(.btn-primary):not(.btn-gold):not(.btn-gold-outline):not(.spec-icon):not(.struct-box):not(.lead-btn-primary),
[style*="background: var(--navy)"]:not(.btn-primary):not(.btn-gold):not(.btn-gold-outline):not(.spec-icon):not(.struct-box):not(.lead-btn-primary),
[style*="background:var(--navy-deep)"]:not(.btn-primary):not(.btn-gold):not(.btn-gold-outline):not(.spec-icon):not(.struct-box):not(.lead-btn-primary),
[style*="background: var(--navy-deep)"]:not(.btn-primary):not(.btn-gold):not(.btn-gold-outline):not(.spec-icon):not(.struct-box):not(.lead-btn-primary),
[style*="background:#1F5278"],
[style*="background: #1F5278"],
[style*="background:#163E5C"],
[style*="background: #163E5C"],
[style*="background-color:#1F5278"],
[style*="background-color: #1F5278"] {
    color: #fff;
}
/* Innerhalb solcher Container: alle direkten h2/h3/h4/h5/h6 ohne explizite Farbe → weiß */
[style*="background:var(--navy)"] :is(h2, h3, h4, h5, h6):not([style*="color"]),
[style*="background: var(--navy)"] :is(h2, h3, h4, h5, h6):not([style*="color"]),
[style*="background:var(--navy-deep)"] :is(h2, h3, h4, h5, h6):not([style*="color"]),
[style*="background: var(--navy-deep)"] :is(h2, h3, h4, h5, h6):not([style*="color"]) {
    color: #fff;
}
/* Section-eyebrow auf navy ohne expliziten color override → gold */
section[style*="background:var(--navy)"] > .container > .section-eyebrow:not([style*="color"]),
section[style*="background:var(--navy-deep)"] > .container > .section-eyebrow:not([style*="color"]),
section[style*="background:var(--navy)"] .section-eyebrow:not([style*="color"]),
section[style*="background:var(--navy-deep)"] .section-eyebrow:not([style*="color"]) {
    color: var(--gold-soft);
}
/* btn-gold mit fälschlich gesetztem dark-text inline override neutralisieren: Standard ist weiß */
.btn-gold[style*="color:#1F5278"], .btn-gold[style*="color: #1F5278"] {
    color: #fff !important;
}
/* Hover-States für dark sections */
section[style*="background:var(--navy)"] a:not(.btn-gold):not(.btn-primary):not(.btn-ghost):not(.btn-ghost-light):not([style*="color"]),
section[style*="background:var(--navy-deep)"] a:not(.btn-gold):not(.btn-primary):not(.btn-ghost):not(.btn-ghost-light):not([style*="color"]) {
    color: var(--gold-soft);
}

/* ============ WIKI-NAV TAB-SYSTEM ============ */
/* Anker-Navigation funktioniert jetzt als Tabs: nur das angeklickte Panel wird sichtbar */
.tab-panel {
    display: none;
    animation: tabFadeIn .42s cubic-bezier(.22,.8,.25,1) both;
    scroll-margin-top: 120px;
}
.tab-panel.tab-active {
    display: block;
}
.konfig-section { scroll-margin-top: 120px; }
/* Companion-Sektionen: gehören zum vorherigen Tab und werden nur mit ihm gezeigt */
.tab-companion {
    display: none;
    animation: tabFadeIn .42s cubic-bezier(.22,.8,.25,1) both;
}
.tab-companion.companion-active {
    display: block;
}
@keyframes tabFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============ WIKI-NAV v2: stärkere Akzentuierung ============ */
/* Override für die inline-definierten .wiki-nav-Styles in den HTML-Files.
   Macht die Sub-Navigation deutlicher sichtbar als 2. Menü. */
.wiki-nav {
    background: linear-gradient(180deg, #fafaf7 0%, #fff 100%) !important;
    box-shadow: 0 2px 16px rgba(31,82,120,0.08), inset 0 1px 0 rgba(196,154,94,0.15);
    border-bottom: none !important;
    position: relative;
}
/* Overlay-Pseudo für Flash-Effekt — nicht durch !important blockierbar. */
.wiki-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196,154,94,0.55) 0%, rgba(196,154,94,0.35) 60%, rgba(196,154,94,0.15) 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.wiki-nav-inner { position: relative; z-index: 1; }
.wiki-nav-inner a {
    font-size: 13.5px !important;
    padding: 16px 18px !important;
    position: relative;
    border-bottom-width: 3px !important;
}
.wiki-nav-inner a:hover {
    color: #1F5278 !important;
    border-bottom-color: rgba(196,154,94,0.55) !important;
    background: rgba(31,82,120,0.025);
}
.wiki-nav-inner a.tab-active {
    color: #1F5278 !important;
    font-weight: 700 !important;
    border-bottom-color: #C49A5E !important;
}
.wiki-nav-inner a.tab-active::before {
    content: '';
    position: absolute;
    left: 8px; right: 8px; top: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(196,154,94,0.4), transparent);
}
/* 2,5-Sekunden-Aufleuchten beim Klick auf Brush-Hint.
   Box-Shadow pulsiert + Pseudo-Overlay (radial gradient) blendet kräftig auf. */
@keyframes wikiNavShadow {
    0%, 100% { box-shadow: 0 2px 16px rgba(31,82,120,0.08), inset 0 1px 0 rgba(196,154,94,0.15); }
    15%      { box-shadow: 0 18px 60px rgba(196,154,94,0.85), 0 0 0 4px rgba(196,154,94,0.6), inset 0 4px 0 rgba(196,154,94,0.9), inset 0 -4px 0 rgba(196,154,94,0.75); }
    35%      { box-shadow: 0 14px 48px rgba(196,154,94,0.6),  0 0 0 3px rgba(196,154,94,0.45), inset 0 3px 0 rgba(196,154,94,0.75), inset 0 -3px 0 rgba(196,154,94,0.55); }
    65%      { box-shadow: 0 16px 54px rgba(196,154,94,0.75), 0 0 0 3.5px rgba(196,154,94,0.55), inset 0 3.5px 0 rgba(196,154,94,0.85), inset 0 -3.5px 0 rgba(196,154,94,0.65); }
    85%      { box-shadow: 0 8px 28px rgba(196,154,94,0.35), inset 0 2px 0 rgba(196,154,94,0.45); }
}
@keyframes wikiNavOverlay {
    0%, 100% { opacity: 0; }
    15%      { opacity: 1; }
    35%      { opacity: 0.65; }
    65%      { opacity: 0.9; }
    85%      { opacity: 0.35; }
}
@keyframes wikiNavLinkPulse {
    0%, 100% { color: #64748b; }
    15%, 65% { color: #6b4f24; font-weight: 700; }
}
@keyframes wikiNavActivePulse {
    0%   { color: #1F5278; border-bottom-color: #C49A5E; transform: scale(1); }
    15%  { color: #6b4f24; border-bottom-color: #C49A5E; transform: scale(1.1); }
    65%  { color: #6b4f24; border-bottom-color: #C49A5E; transform: scale(1.06); }
    100% { color: #1F5278; border-bottom-color: #C49A5E; transform: scale(1); }
}
.wiki-nav.wiki-nav-highlight {
    animation: wikiNavShadow 2.5s ease-in-out 1 forwards;
}
.wiki-nav.wiki-nav-highlight::before {
    animation: wikiNavOverlay 2.5s ease-in-out 1 forwards;
}
.wiki-nav.wiki-nav-highlight .wiki-nav-inner a {
    animation: wikiNavLinkPulse 2.5s ease-in-out 1 forwards;
}
.wiki-nav.wiki-nav-highlight .wiki-nav-inner a.tab-active {
    animation: wikiNavActivePulse 2.5s ease-in-out 1 forwards;
    transform-origin: center bottom;
}

/* ============ BRUSH-HINT BADGE ============ */
/* Floating-Hint links am Bildrand, erscheint nach erstem Hero-Quick-Klick.
   SVG-Brush-Stroke umrandet den Text in zwei sich leicht überlappenden Ovalen
   mit Strichenden, die "hand-drawn" über die Geometrie hinausgehen. */
.brush-hint {
    position: fixed;
    left: 26px;
    top: 50%;
    z-index: 200;
    transform: translateY(-50%) translateX(calc(-100% - 60px));
    opacity: 0;
    transition: transform .65s cubic-bezier(.22,.8,.25,1), opacity .45s;
    pointer-events: none;
}
.brush-hint.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.brush-hint-bubble {
    position: relative;
    padding: 24px 36px 22px;
    font-family: var(--serif);
    color: #1F5278;
    background: rgba(255,255,255,0.985);
    cursor: pointer;
    text-align: center;
    line-height: 1.35;
    max-width: 210px;
    font-size: 14.5px;
    font-style: italic;
    transition: transform .2s;
}
.brush-hint-bubble:hover { transform: translateX(3px); }
.brush-hint-bubble strong {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #C49A5E;
    margin-bottom: 6px;
}
.brush-hint-bubble .arrow {
    display: inline-block;
    margin-left: 4px;
    font-style: normal;
    color: #1F5278;
    transition: transform .2s;
}
.brush-hint-bubble:hover .arrow { transform: translateY(2px); }
.brush-hint-svg {
    position: absolute;
    inset: -10px -14px -10px -14px;
    width: calc(100% + 28px);
    height: calc(100% + 20px);
    pointer-events: none;
    overflow: visible;
}
.brush-hint-svg path {
    fill: none;
    stroke: #1F5278;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.85;
}
.brush-hint-svg .brush-secondary {
    stroke: #1F5278;
    stroke-width: 1.4;
    opacity: 0.45;
}
.brush-hint-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px; height: 24px;
    background: #fff;
    border: 1.5px solid rgba(31,82,120,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F5278;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: background .2s, border-color .2s;
    z-index: 2;
}
.brush-hint-close:hover {
    background: #1F5278;
    color: #fff;
    border-color: #1F5278;
}
@media (max-width: 900px) {
    .brush-hint { display: none; }
}

/* ============ LIVE-CHAT WIDGET ============ */
.chat-launcher {
    position: fixed;
    bottom: 140px;
    right: 24px;
    z-index: 70;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    border: 1px solid rgba(196,154,94,0.45);
    box-shadow: 0 14px 38px rgba(0,0,0,0.28), 0 0 0 4px rgba(196,154,94,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s cubic-bezier(.22,.8,.25,1);
    font-family: inherit;
    animation: chatBounceIn .8s cubic-bezier(.34,1.56,.64,1) .8s both;
}
.chat-launcher:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 46px rgba(0,0,0,0.32), 0 0 0 6px rgba(196,154,94,0.18);
}
.chat-launcher svg { width: 24px; height: 24px; }
.chat-launcher-badge {
    position: absolute;
    top: -4px; right: -4px;
    width: 18px; height: 18px;
    background: #ff5252;
    color: #fff;
    border-radius: 50%;
    border: 2px solid var(--navy);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatPulse 1.8s ease-in-out infinite;
}
@keyframes chatBounceIn {
    0% { transform: scale(0) rotate(-30deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes chatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.chat-launcher.is-hidden {
    opacity: 0; visibility: hidden;
    transform: scale(0.5);
    pointer-events: none;
}

.chat-window {
    position: fixed;
    bottom: 140px;
    right: 24px;
    z-index: 71;
    width: 380px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 160px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform .3s cubic-bezier(.22,.8,.25,1), opacity .25s;
}
.chat-window.is-open {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
}
.chat-head {
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}
.chat-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
}
.chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: #69db7c;
    border: 2px solid var(--navy);
}
.chat-head-text { flex: 1; min-width: 0; }
.chat-head-text strong {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
}
.chat-head-text small {
    display: block;
    font-size: 11.5px;
    color: rgba(255,255,255,0.7);
}
.chat-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}
.chat-close:hover { background: rgba(196,154,94,0.4); }

.chat-messages {
    padding: 18px 18px 4px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--pearl);
}
.chat-msg {
    max-width: 84%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    animation: chatMsgIn .35s cubic-bezier(.22,.8,.25,1) both;
}
@keyframes chatMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
    align-self: flex-start;
    background: #fff;
    color: var(--ink);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(20,40,61,0.06);
}
.chat-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.chat-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 4px 0;
}
.chat-typing span {
    width: 7px; height: 7px;
    background: var(--navy);
    border-radius: 50%;
    animation: chatDot 1.2s infinite ease-in-out both;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatDot {
    0%, 60%, 100% { transform: scale(0.7); opacity: 0.5; }
    30% { transform: scale(1.1); opacity: 1; }
}

.chat-choices {
    padding: 8px 18px 14px;
    background: var(--pearl);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(20,40,61,0.06);
}
.chat-choice {
    padding: 9px 14px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    color: var(--navy);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all .2s;
}
.chat-choice:hover {
    border-color: var(--gold);
    background: rgba(196,154,94,0.06);
    transform: translateX(2px);
}

.chat-form {
    padding: 12px 18px 16px;
    background: #fff;
    border-top: 1px solid rgba(20,40,61,0.08);
    display: none;
    flex-direction: column;
    gap: 8px;
}
.chat-form.is-active { display: flex; }
.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--ink);
    background: #fff;
}
.chat-form input:focus,
.chat-form textarea:focus { outline: none; border-color: var(--navy); }
.chat-form button {
    padding: 10px 14px;
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.chat-form button:hover { background: #b8893a; }
.chat-form button:disabled { background: #cbd5e0; cursor: not-allowed; color: #fff; }
.chat-consent {
    font-size: 10.5px;
    color: var(--slate);
    line-height: 1.4;
    margin: 2px 0 0;
}
.chat-consent a { color: var(--navy); }

@media (max-width: 600px) {
    .chat-window { right: 16px; bottom: 130px; width: calc(100vw - 32px); max-height: 70vh; }
    .chat-launcher { right: 16px; bottom: 130px; width: 52px; height: 52px; }
    .chat-launcher svg { width: 22px; height: 22px; }
}

/* ============ BACK-TO-TOP BUTTON ============ */
.back-to-top {
    position: fixed;
    bottom: 78px;
    right: 24px;
    z-index: 75;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: 1px solid rgba(196,154,94,0.4);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s cubic-bezier(.22,.8,.25,1);
    font-family: inherit;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(196,154,94,0.4);
}
.back-to-top svg {
    width: 18px; height: 18px;
}
@media (max-width: 600px) {
    .back-to-top { right: 16px; bottom: 70px; width: 42px; height: 42px; }
}
/* Wiki-Nav (Holdings, Steuerberatung, Immobilien, DATEV, Media, Workspaces, Wissen-Filter) */
.wiki-nav a.tab-active,
.wiki-nav-inner a.tab-active {
    color: var(--navy);
    font-weight: 700;
    border-bottom-color: var(--gold);
    background: linear-gradient(180deg, transparent 0%, rgba(196,154,94,0.07) 100%);
}
/* IT-KI Wiki Nav */
.itki-wiki a.tab-active {
    color: var(--navy);
    font-weight: 700;
    border-bottom-color: var(--gold);
    background: linear-gradient(180deg, transparent 0%, rgba(196,154,94,0.07) 100%);
    position: relative;
}
.itki-wiki a.tab-active::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -1px;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(196,154,94,0.85);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(196, 154, 94, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(45, 111, 160, 0.35) 0%, transparent 55%),
        linear-gradient(135deg, #143B58 0%, #1F5278 50%, #2D6FA0 100%);
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 60%; height: 120%;
    background: linear-gradient(135deg, transparent 30%, rgba(196, 154, 94, 0.07) 50%, transparent 70%);
    transform: rotate(-15deg);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(20, 59, 88, 0.45) 100%);
    z-index: 1;
}
/* Hero mit Echtfoto (Augustaanlage 33) */
.hero.hero-photo .hero-bg {
    background:
        linear-gradient(115deg, rgba(20,59,88,0.78) 0%, rgba(20,59,88,0.55) 45%, rgba(31,82,120,0.35) 100%),
        url('/assets/img/augustaanlage-33-hero.webp') center center / cover no-repeat;
}
.hero.hero-photo .hero-bg::before,
.hero.hero-photo .hero-bg::after { display: none; }
.hero.hero-photo .hero-overlay {
    background:
        linear-gradient(90deg, rgba(20,59,88,0.55) 0%, rgba(20,59,88,0.25) 50%, rgba(20,59,88,0.55) 100%),
        linear-gradient(180deg, rgba(20,59,88,0.15) 0%, transparent 30%, rgba(20,59,88,0.65) 100%);
}
.hero-location-tag {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 40, 61, 0.55);
    border: 1px solid rgba(196, 154, 94, 0.45);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-top: 28px;
}
.hero-location-tag::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(196, 154, 94, 0.7);
    animation: pulseTag 2.4s ease-in-out infinite;
}
@keyframes pulseTag {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; box-shadow: 0 0 14px rgba(196, 154, 94, 1); }
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-soft);
    margin-bottom: 36px;
}
.eyebrow-line {
    width: 40px; height: 1px;
    background: var(--gold);
}
.hero-headline {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 36px;
    max-width: 1100px;
}
.hero-headline em {
    color: var(--gold-soft);
    font-weight: 400;
    font-style: italic;
}
.hero-subline {
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin-bottom: 48px;
    font-weight: 300;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.hero-ctas .btn-primary {
    background: var(--gold);
    color: #fff;
}
.hero-ctas .btn-primary:hover { background: var(--gold-deep); }
.hero-ctas .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: transparent;
}
.hero-ctas .btn-ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold); }

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 40px;
    max-width: 980px;
}
.hero-meta > div {
    position: relative;
    padding-left: 22px;
}
.hero-meta > div::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 1px;
    height: calc(100% - 6px);
    background: rgba(255, 255, 255, 0.22);
}
/* (Trennstriche jetzt vor jedem Element via ::before) */
.hero-meta strong {
    font-family: var(--serif);
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.hero-meta span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
}
.hero-scroll { display: none !important; }

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: var(--pearl);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}
.trust-items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 0.015em;
    white-space: nowrap;
    flex-shrink: 0;
}
.trust-mark {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ============ PODCAST SPOTLIGHT ============ */
.podcast-spotlight {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #143B58 0%, #1F5278 55%, #0F2F47 100%);
    color: #fff;
    overflow: hidden;
}
.podcast-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 30%, rgba(196,154,94,0.18) 0%, transparent 45%),
        radial-gradient(circle at 88% 70%, rgba(196,154,94,0.10) 0%, transparent 45%);
    pointer-events: none;
}
.podcast-spotlight .container { position: relative; z-index: 2; }
.podcast-spot-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}
.podcast-spot-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.podcast-spot-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
}
.podcast-spot-grid h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.podcast-spot-grid h2 em {
    font-style: italic;
    color: var(--gold);
}
.podcast-spot-grid p.spot-lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin: 0 0 32px;
    max-width: 540px;
}
.spot-pricepills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 36px;
}
.spot-pill {
    display: inline-flex;
    flex-direction: column;
    padding: 14px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(196,154,94,0.30);
    border-radius: 10px;
    min-width: 150px;
}
.spot-pill strong {
    font-family: 'Source Serif Pro', serif;
    font-size: 24px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.spot-pill span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}
.spot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin-bottom: 36px;
    list-style: none;
    padding: 0;
}
.spot-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    padding-left: 20px;
    position: relative;
}
.spot-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
}
.spot-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.spot-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.spot-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(20,59,88,0.45) 0%, rgba(20,59,88,0.15) 50%, rgba(20,59,88,0.60) 100%),
        url('/assets/img/podcast-studio-fatma-tabak-mannheim.webp') center center / cover no-repeat;
}
.spot-visual-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: #fff;
}
.spot-visual-label .sv-eyebrow {
    display: inline-block;
    background: var(--gold);
    color: #1F2A37;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.spot-visual-label h4 {
    font-family: 'Source Serif Pro', serif;
    font-size: 22px;
    margin: 0 0 8px;
    line-height: 1.2;
}
.spot-visual-label p {
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    margin: 0;
}
@media (max-width: 1024px) {
    .podcast-spot-grid { grid-template-columns: 1fr; gap: 50px; }
    .spot-visual { max-width: 460px; }
}

/* ============ SECTION DEFAULTS ============ */
.section {
    padding: 140px 0;
    position: relative;
}
.section-head {
    max-width: 880px;
    margin-bottom: 80px;
}
.section-head-light .section-headline { color: #fff; }
.section-head-light .section-eyebrow { color: rgba(255,255,255,.6); }
.section-head-light .section-lead { color: rgba(255,255,255,.7); }

/* ============ DISZIPLINEN ============ */
.discipline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.discipline-card {
    padding: 48px 40px;
    background: #fff;
    transition: all .4s cubic-bezier(.22,.61,.36,1);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
/* Stretched-link: ::before des Links füllt die ganze Card (nicht den Link selbst) */
.discipline-card .card-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.discipline-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.discipline-card:hover {
    background: var(--pearl);
    transform: translateY(-2px);
    z-index: 2;
    box-shadow: var(--shadow-md);
}
.discipline-card:hover::before { transform: scaleX(1); }
.card-num {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}
.discipline-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    line-height: 1.2;
}
.discipline-card p {
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.65;
    font-size: 15.5px;
}
.card-points {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-bottom: 28px;
}
.card-points li {
    font-size: 14px;
    color: var(--slate);
    padding: 7px 0;
    padding-left: 20px;
    position: relative;
}
.card-points li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 8px; height: 1px;
    background: var(--gold);
}
.card-link {
    margin-top: auto;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.card-link:hover { color: var(--gold-deep); }
.card-link.gold { color: var(--gold-deep); }

/* ============ ZIELGRUPPEN (DARK) ============ */
.section-dark {
    background: var(--navy-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(184, 153, 104, 0.08) 0%, transparent 70%);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}
.audience-card {
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    transition: all .35s ease;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px;
}
.audience-card h4 { flex-shrink: 0; }
.audience-card p { flex: 1; }
.audience-card:hover {
    background: rgba(184, 153, 104, 0.06);
    border-color: rgba(184, 153, 104, 0.3);
    transform: translateY(-3px);
}
.audience-icon {
    width: 48px; height: 48px;
    color: var(--gold-soft);
    margin-bottom: 24px;
}
.audience-card h4 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 14px;
    line-height: 1.25;
}
.audience-card p {
    color: rgba(255,255,255,.65);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ============ INVESTOR ============ */
.investor-section {
    background:
        linear-gradient(180deg, var(--pearl) 0%, #fff 100%);
}
.investor-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}
.investor-content .section-headline { margin-bottom: 32px; }
.investor-lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 620px;
}
.investor-args {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}
.investor-arg {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.investor-arg:last-child { border-bottom: none; padding-bottom: 0; }
.arg-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.investor-arg h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--navy);
    grid-column: 2;
}
.investor-arg p {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.65;
    grid-column: 2;
}
.investor-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.investor-ctas .btn-ghost-light {
    color: var(--navy);
    border-color: var(--navy);
}
.investor-ctas .btn-ghost-light:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.investor-card {
    background: var(--navy);
    color: #fff;
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.investor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gold);
}
.investor-card::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -20%;
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(184, 153, 104, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.investor-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
}
.badge-confidential {
    background: rgba(184, 153, 104, 0.15);
    color: var(--gold-soft);
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(184, 153, 104, 0.3);
}
.card-id {
    font-family: var(--serif);
    font-size: 13px;
    color: rgba(255,255,255,.55);
    letter-spacing: 0.05em;
}
.investor-card h4 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 24px;
    position: relative;
}
.investor-card-list {
    margin-bottom: 32px;
    position: relative;
}
.investor-card-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 15px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
}
.investor-card-list li span {
    color: var(--gold);
    font-family: var(--serif);
    font-weight: 600;
    flex-shrink: 0;
}
.investor-card-foot {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 24px;
    margin-top: 8px;
    position: relative;
}
.contact-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-mini strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}
.contact-mini small {
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

/* ============ STANDORT ============ */
.standort-section {
    background: var(--pearl);
}
.standort-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.standort-img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--navy-deep);
    box-shadow: var(--shadow-lg);
}
.standort-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.standort-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 33, 61, 0.5) 100%);
}
.standort-tag {
    position: absolute;
    top: 32px; left: 32px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.standort-tag .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 153, 104, .25);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(184, 153, 104, .25); }
    50% { box-shadow: 0 0 0 8px rgba(184, 153, 104, .1); }
}
.standort-content p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.standort-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 48px;
    border-top: 1px solid var(--line);
}
.standort-facts > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.standort-facts > div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 32px; }
.standort-facts > div:nth-child(even) { padding-left: 32px; padding-right: 0; }
.standort-facts dt {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
    margin: 0;
}
.standort-facts dd {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--navy);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* ============ INSIGHTS ============ */
.insights-section {
    background: #fff;
    border-top: 1px solid var(--line);
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.insight-card {
    padding: 36px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .35s ease;
    cursor: pointer;
    background: #fff;
    display: block;
    text-decoration: none;
    color: inherit;
}
.insight-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.insight-tag {
    display: inline-block;
    background: var(--pearl);
    color: var(--gold-deep);
    padding: 5px 11px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.insight-card h4 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
}
.insight-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
}
.insight-meta {
    font-size: 12px;
    color: var(--slate);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

/* ============ KONTAKT ============ */
.contact-section {
    background: linear-gradient(180deg, #fff 0%, var(--pearl) 100%);
    border-top: 1px solid var(--line);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-content p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 56px;
    max-width: 520px;
}
.contact-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 40px;
}
.contact-block h5 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
    font-family: var(--sans);
    font-weight: 600;
}
.contact-block p {
    font-size: 15.5px;
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--ink);
}

.contact-form {
    background: #fff;
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.contact-form h4 {
    font-size: 26px;
    margin-bottom: 28px;
}
.contact-form label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
    margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 153, 104, .15);
}
.contact-form textarea { resize: vertical; min-height: 90px; font-family: var(--sans); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
    font-weight: 400;
    margin: 4px 0 0;
}
.checkbox-row input { width: auto; margin-top: 4px; }
.checkbox-row a { color: var(--gold-deep); text-decoration: underline; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,.7);
    padding: 80px 0 32px;
}
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 60px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 24px;
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
    color: rgba(255,255,255,.6);
}
.footer-address { font-size: 14px !important; color: rgba(255,255,255,.5) !important; }
.footer-col h6 {
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}
.footer-col h6.mt { margin-top: 28px; }
.footer-col ul li {
    padding: 5px 0;
    font-size: 14px;
}
.footer-col ul li a { color: rgba(255,255,255,.6); }
.footer-col ul li a:hover { color: var(--gold-soft); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: rgba(255,255,255,.45);
}
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    transition: all .2s ease;
}
.footer-social a:hover {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social a span { display:none; }

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SUBPAGE HERO ============ */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    color: #fff;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
    z-index: 0;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.page-hero-inner {
    position: relative;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 28px;
    max-width: 900px;
}
.page-hero-headline em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.page-hero-subline {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255,255,255,.75);
    max-width: 680px;
    font-weight: 300;
    margin-bottom: 40px;
}
.page-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-ctas .btn-ghost { color:#fff; border-color:rgba(255,255,255,.25); }
.page-hero-ctas .btn-ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold); }

/* ============ PARTNER BANNER ============ */
.partner-banner {
    background: var(--navy);
    color: #fff;
    padding: 40px 44px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 64px;
}
.partner-banner-icon {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
    padding-top: 4px;
}
.partner-banner-text h4 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.partner-banner-text p { color: rgba(255,255,255,.75); font-size: 15.5px; line-height: 1.65; margin-bottom: 14px; }
.partner-banner-text a { color: var(--gold-soft); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(196,154,94,.4); }
.partner-banner-text a:hover { color: var(--gold); }

/* ============ SERVICE DETAIL ============ */
.service-intro { padding: 100px 0; }
.service-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}
.service-intro-content .section-headline { margin-bottom: 28px; }
.service-intro-content p { font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }
.service-features {
    padding: 36px;
    background: var(--pearl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    position: sticky;
    top: 100px;
}
.service-features > h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-deep);
    margin-bottom: 24px;
    font-family: var(--sans);
    font-weight: 600;
}
.service-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.service-feature-item:last-child { border-bottom: none; }
.service-feature-num {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
    width: 26px;
    padding-top: 2px;
}
.service-feature-text strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 3px; font-family: var(--serif); }
.service-feature-text span { font-size: 13.5px; color: var(--slate); line-height: 1.55; }

/* ============ LEISTUNGS-GRID (detail) ============ */
.leistungs-detail { padding: 100px 0; background: var(--pearl); }
.leistungs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 60px;
}
.leistungs-item {
    background: #fff;
    padding: 36px 32px;
    transition: background .3s ease;
}
.leistungs-item:hover { background: #fff; }
.leistungs-item .lnum {
    font-family: var(--serif);
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.leistungs-item h4 { font-size: 18px; margin-bottom: 10px; color: var(--navy); line-height: 1.2; }
.leistungs-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============ TEAM CARD ============ */
.team-section { padding: 100px 0; }
.team-section.bg-pearl { background: var(--pearl); }
.team-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 72px;
    align-items: start;
    max-width: 1020px;
}
.team-card-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    background: var(--navy);
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-card-name { font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); color: var(--navy); line-height: 1.1; margin-bottom: 6px; }
.team-card-role { font-size: 15px; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 28px; display: block; font-family: var(--sans); text-transform: uppercase; }
.team-card-bio { font-size: 17px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; }
.team-qualifications { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.team-qualifications li { font-size: 14.5px; color: var(--ink-soft); padding-left: 24px; position: relative; line-height: 1.5; }
.team-qualifications li::before { content: ''; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: var(--gold); }
.team-kanzlei-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .25s ease;
}
.team-kanzlei-link:hover { background: var(--pearl); border-color: var(--navy); }

/* ============ PAGE CTA ============ */
.page-cta {
    background: var(--navy-deep);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(184,153,104,.1) 0%, transparent 60%);
    pointer-events: none;
}
.page-cta-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-cta .section-eyebrow { color: var(--gold-soft); margin-bottom: 16px; }
.page-cta h2 { font-size: clamp(30px, 4vw, 50px); color: #fff; margin-bottom: 20px; }
.page-cta h2 em { color: var(--gold-soft); }
.page-cta p { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 40px; }
.page-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ PROCESS STEPS ============ */
.process-section { padding: 100px 0; background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.process-step { position: relative; padding-left: 0; }
.process-step-num { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--pearl-deep); line-height: 1; margin-bottom: 16px; }
.process-step h4 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============ SIMPLE / RECHTLICHES PAGES ============ */
.simple-page { padding: 180px 0 120px; min-height: 80vh; }
.legal-content { max-width: 820px; padding: 100px 0; }
.legal-content h2 { font-size: 28px; color: var(--navy); margin: 40px 0 16px; }
.legal-content h3 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.legal-content p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 0; padding-left: 20px; list-style: disc; }
.legal-content ul li { font-size: 16px; color: var(--ink-soft); line-height: 1.7; padding: 4px 0; }
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 15px; }
.legal-content table td, .legal-content table th { padding: 12px 16px; border: 1px solid var(--line); vertical-align: top; }
.legal-content table th { background: var(--pearl); font-weight: 600; color: var(--navy); }

/* ============ LOGIN ============ */
.login-page { padding: 180px 0 120px; min-height: 90vh; background: linear-gradient(180deg, var(--pearl) 0%, #fff 100%); }
.login-box { max-width: 440px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.login-box .section-eyebrow { text-align: center; margin-bottom: 8px; }
.login-box h2 { text-align: center; font-size: 30px; margin-bottom: 8px; }
.login-box .login-sub { text-align: center; color: var(--ink-soft); font-size: 15px; margin-bottom: 36px; line-height: 1.55; }
.login-box label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-bottom: 16px; }
.login-box input { display: block; width: 100%; margin-top: 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 15px; }
.login-box input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,153,104,.15); }
.login-divider { text-align: center; margin: 20px 0; font-size: 13px; color: var(--slate); }

/* ============ PHOTO GALLERY ============ */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 60px;
}
.photo-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.photo-gallery img:hover { transform: scale(1.02); }
.photo-gallery .photo-tall { grid-row: span 2; }
.photo-gallery .photo-tall img { height: 100%; }

/* 3-col gallery variant */
.photo-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.photo-gallery-2 { grid-template-columns: repeat(2, 1fr); }
.photo-gallery-2 img { height: 420px; }

/* ============ PHOTO OVERLAY SECTION ============ */
.photo-overlay-section {
    position: relative;
    overflow: hidden;
    height: 520px;
}
.photo-overlay-section .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo-overlay-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20,33,61,.92) 45%, rgba(20,33,61,.4) 100%);
}
.photo-overlay-section .overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.photo-overlay-section .overlay-content .container { color: #fff; }
.photo-overlay-section h2 { color: #fff; font-size: clamp(28px,3.5vw,48px); margin-bottom: 20px; }
.photo-overlay-section h2 em { color: var(--gold-soft); }
.photo-overlay-section p { color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.65; max-width: 560px; margin-bottom: 32px; }

/* ============ SPLIT PHOTO SECTION ============ */
.split-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.split-photo-img { overflow: hidden; }
.split-photo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-photo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}
.split-photo-text.bg-navy { background: var(--navy); color: #fff; }
.split-photo-text.bg-navy .section-eyebrow { color: var(--gold-soft); }
.split-photo-text.bg-navy h2 { color: #fff; }
.split-photo-text.bg-navy h2 em { color: var(--gold-soft); }
.split-photo-text.bg-navy p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.7; margin-bottom: 24px; }
.split-photo-text.bg-pearl { background: var(--pearl); }
.split-photo-text.bg-pearl h2 em { color: var(--gold-deep); }
.split-photo-text.bg-pearl p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 24px; }

/* ============ KI CHECKLIST ============ */
.ki-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.ki-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.55; }
.ki-check { color: var(--gold); font-size: 18px; flex-shrink: 0; font-weight: 700; padding-top: 1px; }
.ki-checklist.light li { color: rgba(255,255,255,.85); }

/* ============ QUOTE BLOCK ============ */
.quote-block {
    border-left: 3px solid var(--gold);
    padding: 20px 32px;
    margin: 40px 0;
    background: var(--pearl);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--navy);
    line-height: 1.55;
    font-style: italic;
}
.quote-block.dark { background: rgba(255,255,255,.06); }
.quote-block.dark p { color: rgba(255,255,255,.9); }

/* ============ PHOTO MOSAIC ============ */
.photo-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 4px;
}
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-mosaic .main-photo { grid-row: span 2; }

/* ============ LEISTUNGEN OVERVIEW ============ */
.leistungen-overview { padding: 120px 0; }
.leistungen-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.leistung-block {
    padding: 56px 44px;
    border: 1px solid var(--line);
    margin: -1px 0 0 -1px;
    position: relative;
    transition: all .3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.leistung-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.leistung-block:hover { background: var(--pearl); z-index: 2; box-shadow: var(--shadow-md); }
.leistung-block:hover::before { transform: scaleX(1); }
.leistung-block-num { font-family: var(--serif); font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: .12em; margin-bottom: 20px; }
.leistung-block h3 { font-size: 24px; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.leistung-block p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 24px; flex-grow: 1; }
.leistung-block-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.leistung-block-tag { background: var(--pearl); color: var(--gold-deep); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.leistung-block a.card-link { color: var(--navy); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.leistung-block a.card-link:hover { color: var(--gold-deep); }

/* ============ KONTAKT PAGE ============ */
.kontakt-hero-img {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/office-tecis-1.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.kontakt-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,33,61,.92) 0%, rgba(20,33,61,.7) 100%);
}

/* ============ RESPONSIVE SUBPAGES ============ */
@media (max-width: 1100px) {
    .service-intro-grid { grid-template-columns: 1fr; }
    .service-features { position: static; }
    .team-card { grid-template-columns: 1fr; }
    .team-card-photo { max-width: 300px; aspect-ratio: 1/1; }
    .partner-banner { flex-direction: column; gap: 20px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .page-hero { padding: 140px 0 72px; }
    .page-hero-headline { font-size: 34px; }
    .leistungs-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .login-box { padding: 32px 24px; }
    .partner-banner { padding: 28px 24px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .main-nav { display: none; }
    .header-actions .btn-ghost { display: none; }
    .discipline-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(3, 1fr); }
    .insights-grid { grid-template-columns: 1fr; }
    .investor-grid, .contact-grid, .standort-grid { grid-template-columns: 1fr; gap: 56px; }
    .investor-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .container { padding: 0 24px; }
    .header-inner { padding: 14px 24px; }
    .header-actions .btn-gold-outline { display: none; }
    .lang-switch { margin-right: 0; }
    .hero { padding: 120px 0 60px; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-meta > div { padding: 0; border: none; }
    .hero-meta strong { font-size: 28px; }
    .section { padding: 80px 0; }
    .discipline-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .standort-facts { grid-template-columns: 1fr; }
    .standort-facts > div { padding: 16px 0 !important; border-right: none !important; }
    .contact-blocks { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================================
   MOBILE STUFE 1: Burger-Menü, Sticky-Action-Bar, Chat-Sheet
   Desktop (≥1101px) wird von diesem Block nicht berührt.
   ============================================================ */

/* ---- Burger-Button (nur ≤1100px sichtbar) ---- */
.burger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 110;
}
.burger span {
    display: block;
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s ease, opacity .25s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1100px) {
    .burger { display: block; }
    .header-actions .btn-primary { display: none; }
}

/* ---- Mobile-Nav-Overlay (Full-Screen) ---- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 105;
    background: var(--pearl);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .42s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    visibility: hidden;
    pointer-events: none;
    contain: layout paint;
}
.mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), visibility 0s linear 0s;
}
.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.mobile-nav-logo img { height: 36px; width: auto; max-width: none; display: block; }
.mobile-nav-close {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    font-size: 32px;
    line-height: 1;
    color: var(--navy);
    cursor: pointer;
    padding: 0;
}
.mobile-nav-body { flex: 1; padding: 40px 32px 24px; overflow-y: auto; }
.mobile-nav-primary { display: flex; flex-direction: column; gap: 4px; margin-bottom: 48px; }
.mobile-nav-primary a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--serif);
    font-size: clamp(28px, 7.5vw, 38px);
    font-weight: 600;
    color: var(--navy);
    padding: 14px 0;
    border-bottom: 1px solid rgba(31, 82, 120, 0.10);
    line-height: 1.1;
    letter-spacing: -0.01em;
    transition: color .2s ease, padding-left .3s ease;
}
.mobile-nav-primary a:hover,
.mobile-nav-primary a:focus { color: var(--navy-soft); padding-left: 6px; }
.mobile-nav-arrow {
    font-size: 22px;
    opacity: .4;
    transition: opacity .2s, transform .25s ease;
}
.mobile-nav-primary a:hover .mobile-nav-arrow { opacity: 1; transform: translateX(4px); }
.mobile-nav-section { margin-bottom: 24px; }
.mobile-nav-eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
    margin-bottom: 14px;
}
.mobile-nav-secondary { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-secondary a {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    padding: 11px 0;
    border-bottom: 1px solid rgba(31, 82, 120, 0.06);
    transition: color .2s ease;
}
.mobile-nav-secondary a:hover,
.mobile-nav-secondary a:focus { color: var(--navy); }
.mobile-nav-foot {
    flex-shrink: 0;
    padding: 24px 32px calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}
.mobile-nav-cta {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    text-transform: none;
    transition: background .25s ease;
}
.mobile-nav-cta:hover,
.mobile-nav-cta:focus { background: var(--navy-deep); color: #fff; }
.mobile-nav-utils {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--slate);
}
.mobile-nav-utils a { color: var(--slate); transition: color .2s; }
.mobile-nav-utils a:hover { color: var(--navy); }
.mobile-nav-dot { opacity: .5; }
.mobile-nav-lang {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-light);
    font-weight: 600;
}
.mobile-nav-lang .active { color: var(--navy); }

body.no-scroll { overflow: hidden; }

/* ---- Sticky-Mobile-Action-Bar (nur ≤768px) ---- */
.mobile-actions {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(20, 33, 61, 0.06);
}
.mobile-actions .mobile-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    padding: 6px 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background .2s ease, color .2s ease;
}
.mobile-actions .mobile-action svg { width: 22px; height: 22px; display: block; }
.mobile-actions .mobile-action:active { background: rgba(31, 82, 120, 0.08); color: var(--navy-deep); }
@media (max-width: 768px) {
    .mobile-actions { display: flex; gap: 4px; }
    body { padding-bottom: 74px; }
    /* Sara-Chat ist auf Mobile komplett ausgeblendet (zu intrusiv auf kleinem Display) */
    #chatWidget { display: none !important; }
}

/* ---- Sara-Chat als Bottom-Sheet auf Mobile (legacy — Chat ist auf Mobile aktuell display:none) ---- */
@media (max-width: 768px) {
    .chat-window {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 78vh !important;
        max-height: 78vh !important;
        border-radius: 18px 18px 0 0 !important;
        transform: translateY(100%);
        transition: transform .4s cubic-bezier(.22, 1, .36, 1);
        box-shadow: 0 -16px 48px rgba(20, 33, 61, 0.20) !important;
        padding-bottom: env(safe-area-inset-bottom);
        opacity: 1 !important;
    }
    .chat-window.is-open { transform: translateY(0); }
    .chat-window::before {
        content: '';
        position: absolute;
        top: 8px; left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 4px;
        background: rgba(31, 82, 120, 0.22);
        border-radius: 4px;
        z-index: 2;
    }
    .chat-head { padding-top: 22px !important; }
    .chat-messages { flex: 1 !important; }
}

/* ============================================================
   MOBILE STUFE 2: Premium-Mobile-Patterns
   Hero-XL · Stats-Snap · Service-Stack · Trigger-Band-Hide
   ============================================================ */

@media (max-width: 768px) {
    /* Trigger-Band ausblenden — Bottom-Action-Bar übernimmt deren Funktion */
    .trigger-band { display: none !important; }
    body.has-trigger-band { padding-bottom: 74px; }

    /* ---- Premium Hero ---- */
    .hero {
        min-height: 88vh;
        padding: 110px 0 56px;
        align-items: flex-start;
    }
    .hero-eyebrow {
        font-size: 10.5px;
        letter-spacing: 0.22em;
        margin-bottom: 22px;
        gap: 10px;
    }
    .eyebrow-line { width: 24px; }
    .hero-headline {
        font-size: clamp(44px, 11.5vw, 64px);
        line-height: 1.03;
        margin-bottom: 22px;
        max-width: 100%;
    }
    .hero-subline {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 36px;
        max-width: 100%;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 56px;
        align-items: stretch;
    }
    .hero-ctas > a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px 22px !important;
        font-size: 15px !important;
    }
    /* Hero-Disciplines: 8 Service-Buttons als kompakter 2-Spalter, kleinere Tiles */
    .hero-disciplines {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 28px 0 36px;
        max-width: 100%;
    }
    .hero-disciplines a {
        padding: 11px 12px;
        gap: 9px;
        font-size: 12.5px;
        border-radius: 9px;
    }
    .hero-disc-icon {
        width: 24px; height: 24px;
        font-size: 12px;
    }
    .hero-disc-text strong { font-size: 12.5px; }
    .hero-disc-text small {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Standort-Tag (rechts unten) auf Mobile zu klein/störend — ausblenden */
    .hero-location-tag { display: none; }

    /* Page-Hero (Unterseiten) — etwas atmen lassen */
    .page-hero { padding: 120px 0 60px; }
    .page-hero-headline { font-size: clamp(34px, 9vw, 48px); line-height: 1.05; }

    /* ---- Stats als Snap-Carousel ---- */
    .hero-meta {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 24px;
        gap: 16px;
        padding: 30px 0 8px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }
    .hero-meta::-webkit-scrollbar { display: none; }
    .hero-meta > div {
        flex: 0 0 78%;
        scroll-snap-align: start;
        padding: 22px 24px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
    .hero-meta > div::before { display: none; }
    .hero-meta strong {
        font-size: 38px;
        margin-bottom: 6px;
    }
    .hero-meta span {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.75);
    }

    /* ---- Service-Cards (Discipline-Grid) Mobile-Polish ---- */
    .discipline-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        background: transparent;
        border: none;
    }
    .discipline-card {
        padding: 32px 26px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        position: relative;
    }
    .discipline-card::before {
        height: 3px;
        transform: scaleX(1);
        opacity: 0.45;
    }
    .discipline-card h3 {
        font-size: clamp(24px, 6.5vw, 30px);
        line-height: 1.18;
        margin-bottom: 14px;
    }
    .discipline-card p { font-size: 15px; margin-bottom: 18px; }
    .card-num { margin-bottom: 16px; font-size: 13px; }
    .card-points { padding-top: 16px; margin-bottom: 20px; }
    .card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--navy);
    }
    .card-link::after {
        content: '→';
        font-size: 18px;
        transition: transform .25s ease;
    }
    .discipline-card:active .card-link::after { transform: translateX(4px); }

    /* ---- Trust-Strip auf Mobile als gestaffelte Liste statt Quetsche ---- */
    .trust-items {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 18px;
    }
    .trust-item { font-size: 13px; }
}

/* Sehr schmale Devices (Fold cover, kleine Phones) — Headline noch luftiger */
@media (max-width: 400px) {
    .hero { padding: 100px 0 48px; }
    .hero-headline { font-size: clamp(38px, 11vw, 52px); }
    .hero-meta > div { flex: 0 0 84%; }
}

