/* =================================================================
   CROWD SOLUTION — Stylesheet
   Hell, seriös-modern. Navy + Messing + Teal.
   ================================================================= */

:root {
    /* Farben */
    --bg: #FAFAF7;
    --bg-alt: #FFFFFF;
    --bg-deep: #F2F0EA;
    --ink: #0F1B2D;
    --ink-soft: #2A3546;
    --ink-muted: #5A6578;
    --line: #E4E0D5;
    --line-soft: #EEEBE1;
    --brass: #B8864E;
    --brass-soft: #D9B580;
    --brass-deep: #8F6636;
    --teal: #2A6F6A;
    --teal-soft: #5B9691;

    /* Typo */
    --serif: 'Fraunces', 'Georgia', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Masse */
    --container: 1240px;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 27, 45, 0.06);
    --shadow-lg: 0 12px 40px rgba(15, 27, 45, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Background Texture (sehr subtil) */
.bg-texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle at 25% 20%, rgba(184, 134, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(42, 111, 106, 0.03) 0%, transparent 50%);
}

/* ============ Typografie ============ */

.h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
}

h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
}

h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.005em;
    color: var(--ink);
}

.grad {
    font-style: italic;
    color: var(--brass-deep);
    position: relative;
}

.accent-italic {
    font-style: italic;
    color: var(--teal);
}

.lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 640px;
    margin-top: 1.8rem;
}

.section-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-muted);
    max-width: 720px;
    margin-top: 1.2rem;
}

.kicker {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass-deep);
    margin-bottom: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 1.8rem;
}

.eyebrow .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brass);
}

/* ============ Navigation ============ */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.logo-mark {
    color: var(--brass);
    display: flex;
    align-items: center;
}

.tabs {
    display: flex;
    gap: 0.3rem;
    flex: 1;
    justify-content: center;
}

.tab {
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-muted);
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.tab:hover {
    color: var(--ink);
    background: rgba(15, 27, 45, 0.04);
}

.tab.active {
    color: var(--ink);
    background: rgba(184, 134, 78, 0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.2rem;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-cta:hover { background: var(--brass-deep); }

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-burger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s;
}

/* ============ Pages / Tabs ============ */

main { min-height: 100vh; }

.page { display: none; }
.page.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ Hero (Übersicht) ============ */

.hero {
    max-width: var(--container);
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-copy .h1 { margin-top: 0.5rem; }

.cta-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 2.4rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.95rem 1.6rem;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--ink);
    color: var(--bg);
}
.btn-primary:hover {
    background: var(--brass-deep);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost:hover {
    border-color: var(--ink);
    background: rgba(15, 27, 45, 0.03);
}

.btn-full { width: 100%; justify-content: center; }

.trust {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--line);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-item b {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 2rem;
    color: var(--brass-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-item span {
    font-size: 0.82rem;
    color: var(--ink-muted);
    letter-spacing: 0.03em;
}

/* ============ Network Visual ============ */

.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 520px;
    justify-self: end;
}

.network-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5EC 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
}

/* Sanfte Pulse-Animation für die Schwarm-Energie */
@keyframes netGlowPulse {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}
@keyframes netNodeBreath {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.18); }
}
@keyframes netLogoSpin {
    from { transform: translate(260px, 260px) rotate(0deg); }
    to   { transform: translate(260px, 260px) rotate(360deg); }
}

.net-glow {
    animation: netGlowPulse 4s ease-in-out infinite;
}
.net-node-outer,
.net-node-inner {
    transform-box: fill-box;
    transform-origin: center;
    animation: netNodeBreath 4s ease-in-out infinite;
}
.net-node-outer:nth-child(2n)  { animation-delay: -0.7s; }
.net-node-outer:nth-child(3n)  { animation-delay: -1.4s; }
.net-node-outer:nth-child(5n)  { animation-delay: -2.1s; }
.net-node-inner:nth-child(2n)  { animation-delay: -1s; }
.net-node-inner:nth-child(3n)  { animation-delay: -2s; }

.net-center-logo {
    transform-origin: 260px 260px;
    transform-box: fill-box;
    animation: netLogoSpin 30s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .net-glow, .net-node-outer, .net-node-inner, .net-center-logo {
        animation: none;
    }
}

.network-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
}

.caption-label {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
}

.caption-sub {
    font-size: 0.78rem;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}

/* ============ Generic Section ============ */

.section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-head {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 780px;
}

/* ============ Offer Grid (Übersicht) ============ */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.offer-card {
    position: relative;
    display: block;
    padding: 2.2rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s;
    overflow: hidden;
}

.offer-card:hover {
    border-color: var(--brass);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.offer-card.primary {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.offer-card.primary:hover { background: #1a2740; }
.offer-card.primary h3 { color: var(--bg); }
.offer-card.primary p { color: rgba(250, 250, 247, 0.85); }
.offer-card.primary .offer-list li { color: rgba(250, 250, 247, 0.75); border-color: rgba(250, 250, 247, 0.15); }
.offer-card.primary .offer-link { color: var(--brass-soft); }
.offer-card.primary .offer-num { color: rgba(250, 250, 247, 0.25); }
.offer-card.primary .offer-icon { color: var(--brass-soft); }

.offer-num {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--ink-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.offer-icon {
    width: 42px;
    height: 42px;
    color: var(--brass);
    margin-bottom: 1.4rem;
}

.offer-icon svg { width: 100%; height: 100%; }

.offer-card h3 { margin-bottom: 0.7rem; }

.offer-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
}

.offer-list {
    list-style: none;
    margin-bottom: 1.8rem;
}

.offer-list li {
    font-size: 0.88rem;
    color: var(--ink-muted);
    padding: 0.4rem 0;
    border-top: 1px solid var(--line-soft);
}
.offer-list li:first-child { border-top: none; }

.offer-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--brass-deep);
    letter-spacing: 0.02em;
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass-soft);
    background: rgba(184, 134, 78, 0.15);
    padding: 0.25rem 0.55rem;
    border-radius: 2px;
}

/* ============ Band (Steps) ============ */

.band {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.band-copy p {
    color: var(--ink-muted);
    margin-top: 1rem;
    font-size: 0.98rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.step {
    padding: 1.4rem;
    background: var(--bg);
    border-radius: var(--radius);
    border-left: 2px solid var(--brass);
}

.step span {
    display: block;
    font-family: var(--serif);
    font-size: 0.82rem;
    color: var(--brass-deep);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.step b {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--ink);
    display: block;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* ============ Quote Block ============ */

.quote-block {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 0;
    text-align: center;
}

.quote-block blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    line-height: 1.45;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.quote-cite {
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}

/* ============ Page Hero (alle Unterseiten) ============ */

.page-hero {
    max-width: var(--container);
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.page-hero .lead { margin-top: 1.8rem; }

/* ============ Video Wrap (Crowd-Prinzip) ============ */

.video-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: center;
}

.video-head h2 { margin-top: 0.5rem; }
.video-head p {
    margin-top: 1.2rem;
    color: var(--ink-muted);
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--ink);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============ Principle Grid (Crowd-Prinzip) ============ */

.principle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.principle {
    padding: 2rem 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.principle:hover {
    border-color: var(--brass);
    box-shadow: var(--shadow-md);
}

.principle-num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 2.2rem;
    color: var(--brass);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.principle h3 { margin-bottom: 0.7rem; }

.principle p {
    font-size: 0.93rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* ============ Two-Col (Crowd-Prinzip) ============ */

.two-col {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    position: relative;
    padding: 1rem 0 1rem 2.2rem;
    border-top: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}

.check-list li:first-child { border-top: none; }

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.3rem;
    width: 14px;
    height: 14px;
    border: 2px solid var(--brass);
    border-radius: 50%;
}

.facts-card {
    background: var(--ink);
    color: var(--bg);
    padding: 2.2rem 2rem;
    border-radius: var(--radius-lg);
}

.facts-head {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--brass-soft);
}

.facts-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(250, 250, 247, 0.12);
}
.facts-row:first-of-type { border-top: none; }

.facts-row span {
    font-size: 0.88rem;
    color: rgba(250, 250, 247, 0.65);
    letter-spacing: 0.02em;
}

.facts-row b {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--bg);
    letter-spacing: -0.005em;
}

/* ============ Service Grid (Unternehmensberatung) ============ */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--brass);
    box-shadow: var(--shadow-md);
}

.service-num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--brass-deep);
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-lead {
    color: var(--ink-soft);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.8rem;
}

.feature-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.92rem;
    color: var(--ink-muted);
}

.feature-list li:first-child { border-top: none; }

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: var(--brass);
    border-radius: 50%;
}

.service-schwarm {
    padding: 1.2rem 1.4rem;
    background: var(--bg-deep);
    border-radius: var(--radius);
    border-left: 2px solid var(--teal);
}

.schwarm-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}

.service-schwarm p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ============ Not-Grid ============ */

.not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.not-item {
    padding: 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.not-icon {
    font-size: 2rem;
    color: var(--brass);
    font-family: var(--serif);
    line-height: 1;
    margin-bottom: 0.9rem;
}

.not-item h4 { margin-bottom: 0.6rem; }

.not-item p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* ============ KI Anchors ============ */

.ki-anchors {
    display: flex;
    gap: 0.6rem;
    margin-top: 2.4rem;
    flex-wrap: wrap;
}

.anchor-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: all 0.2s;
}

.anchor-pill:hover {
    border-color: var(--brass);
    color: var(--brass-deep);
    background: rgba(184, 134, 78, 0.04);
}

/* ============ Seminar Grid ============ */

.seminar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.seminar-card {
    padding: 2.2rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.seminar-card:hover {
    border-color: var(--brass);
    box-shadow: var(--shadow-md);
}

.seminar-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(42, 111, 106, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.seminar-tag.accent {
    color: var(--brass-deep);
    background: rgba(184, 134, 78, 0.1);
}

.seminar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.seminar-target {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.seminar-card > p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

.seminar-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.seminar-meta > div { display: flex; flex-direction: column; gap: 0.2rem; }
.seminar-meta span { font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.05em; }
.seminar-meta b { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--ink); }

/* ============ Benefit Grid (Coaching) ============ */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.benefit-card {
    padding: 2rem 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--brass);
}

.benefit-icon {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--brass);
    background: rgba(184, 134, 78, 0.08);
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.benefit-card h4 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.benefit-card p { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.6; }

/* ============ Format Band (Coaching) ============ */

.format-band {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.format-card {
    padding: 2.4rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.format-card.featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.format-card.featured h3 { color: var(--bg); }
.format-card.featured .format-subtitle { color: var(--brass-soft); }
.format-card.featured p { color: rgba(250, 250, 247, 0.8); }
.format-card.featured .format-meta { border-top-color: rgba(250, 250, 247, 0.15); }
.format-card.featured .format-meta span { color: rgba(250, 250, 247, 0.55); }
.format-card.featured .format-meta b { color: var(--bg); }

.format-num {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass-soft);
    margin-bottom: 0.9rem;
}

.format-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.format-subtitle {
    font-size: 0.9rem;
    color: var(--brass-deep);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.format-card > p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.format-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.format-meta > div { display: flex; flex-direction: column; gap: 0.2rem; }
.format-meta span { font-size: 0.72rem; letter-spacing: 0.05em; }
.format-meta b { font-family: var(--serif); font-size: 1rem; font-weight: 500; }

.quote-card {
    padding: 2.4rem;
    background: var(--bg-deep);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-card blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.quote-card .quote-cite {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-top: 0;
}

/* ============ Implementation Grid ============ */

.impl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.impl-card {
    padding: 2rem 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.impl-card:hover {
    border-color: var(--brass);
    box-shadow: var(--shadow-md);
}

.impl-num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--brass);
    line-height: 1;
    margin-bottom: 1rem;
}

.impl-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.impl-card p { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.55; margin-bottom: 1.2rem; }

.impl-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.impl-tech span {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.65rem;
    background: var(--bg-deep);
    color: var(--teal);
    border-radius: 2px;
    letter-spacing: 0.02em;
}

/* ============ Timeline ============ */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 820px;
    margin: 2rem auto 0;
}

.tl-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.5rem;
    padding: 1.6rem 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    align-items: start;
    transition: all 0.2s;
}

.tl-item:hover { border-color: var(--brass); }

.tl-num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--brass);
    line-height: 1;
}

.tl-body h4 { margin-bottom: 0.5rem; }
.tl-body p { font-size: 0.93rem; color: var(--ink-muted); line-height: 1.55; }

/* ============ CTA Band ============ */

.cta-band {
    text-align: center;
    padding: 3.5rem 2rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: var(--radius-lg);
}

.cta-band h2 {
    color: var(--bg);
    margin-bottom: 0.9rem;
}

.cta-band p {
    color: rgba(250, 250, 247, 0.75);
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.cta-band .btn-primary {
    background: var(--brass);
    color: var(--ink);
}
.cta-band .btn-primary:hover {
    background: var(--brass-soft);
}

/* ============ Team Grid ============ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    padding: 2.4rem 2rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--brass);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-deep) 0%, #E8E3D3 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    max-width: 200px;
}

.initials {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 3.8rem;
    color: var(--brass-deep);
    letter-spacing: -0.02em;
}

.team-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass-deep);
    margin-bottom: 0.7rem;
}

.team-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.team-card > p {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.team-facts {
    list-style: none;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.team-facts li {
    font-size: 0.82rem;
    color: var(--ink-soft);
    padding: 0.35rem 0;
}

.team-facts li::before {
    content: '→ ';
    color: var(--brass);
    font-weight: 600;
}

/* ============ Company Band ============ */

.company-band {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    padding: 3rem 2.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    align-items: start;
}

.company-band > div:first-child p {
    margin-top: 1.2rem;
    color: var(--ink-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.company-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.company-facts > div {
    padding: 1rem 1.2rem;
    background: var(--bg-deep);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.company-facts span {
    font-size: 0.72rem;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-facts b {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
}

/* ============ Booking / Form ============ */

.booking {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.booking-copy h2 { margin-top: 0.5rem; }
.booking-copy > p {
    margin-top: 1.2rem;
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.booking-list {
    list-style: none;
    margin: 2rem 0;
}

.booking-list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.booking-list li span {
    color: var(--brass);
    font-weight: 600;
}

.contact-block {
    margin-top: 2.5rem;
    padding: 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.contact-head {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--line-soft);
    font-size: 0.9rem;
}

.contact-item:first-of-type { border-top: none; }
.contact-item span { color: var(--ink-muted); }
.contact-item b {
    color: var(--ink);
    font-weight: 500;
    line-height: 1.4;
}
/* Telefon-/E-Mail-Links: dezenter Underline, im Ink-Ton statt Browser-Blau */
.contact-item b a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--brass-soft);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.contact-item b a:hover,
.contact-item b a:focus-visible {
    color: var(--brass);
    text-decoration-color: var(--brass);
}

.booking-form {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.field input,
.field textarea {
    padding: 0.8rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s;
    outline: none;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--brass);
}

.field textarea { resize: vertical; min-height: 100px; }

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    cursor: pointer;
}

.chip input { display: none; }

.chip span {
    display: inline-block;
    padding: 0.55rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    transition: all 0.2s;
}

.chip input:checked + span {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-top: 0.5rem;
}

/* ============ Footer ============ */

.footer {
    margin-top: 4rem;
    background: var(--ink);
    color: rgba(250, 250, 247, 0.75);
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--bg);
    margin-bottom: 0.8rem;
}

.footer-logo .logo-mark { color: var(--brass-soft); }

.footer-tag {
    font-size: 0.88rem;
    color: rgba(250, 250, 247, 0.55);
    font-style: italic;
}

.footer-head {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass-soft);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    color: rgba(250, 250, 247, 0.7);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--brass-soft); }

.footer-impressum {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(250, 250, 247, 0.6);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(250, 250, 247, 0.1);
    font-size: 0.82rem;
    color: rgba(250, 250, 247, 0.45);
    text-align: center;
}

/* ============ Responsive ============ */

@media (max-width: 1080px) {
    .tabs { gap: 0; }
    .tab { padding: 0.5rem 0.7rem; font-size: 0.85rem; }
}

@media (max-width: 980px) {
    .nav-burger { display: flex; }
    .tabs {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--line);
        gap: 0;
    }
    .tabs.open { display: flex; }
    .tab {
        width: 100%;
        text-align: left;
        padding: 0.8rem 0;
        border-radius: 0;
        border-bottom: 1px solid var(--line-soft);
    }
    .tab:last-child { border-bottom: none; }
    .nav-cta { display: none; }

    .hero-grid,
    .video-wrap,
    .two-col,
    .band,
    .booking,
    .company-band,
    .format-band {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual { max-width: 420px; justify-self: start; }

    .steps,
    .offer-grid,
    .service-grid,
    .seminar-grid,
    .not-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid,
    .impl-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-facts { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 640px) {
    .nav-inner { padding: 0.9rem 1.2rem; }
    .hero, .page-hero, .section { padding-left: 1.2rem; padding-right: 1.2rem; }
    .hero { padding-top: 3rem; }
    .page-hero { padding-top: 3rem; }
    .section { padding-top: 3rem; padding-bottom: 3rem; }

    .trust { gap: 1.2rem; flex-wrap: wrap; }
    .trust-item b { font-size: 1.6rem; }

    .band { padding: 2rem 1.5rem; }
    .service-card, .seminar-card, .format-card, .booking-form, .team-card {
        padding: 1.8rem;
    }
    .company-band { padding: 2rem 1.5rem; }

    .benefit-grid,
    .impl-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-inner { grid-template-columns: 1fr; padding-left: 1.2rem; padding-right: 1.2rem; }
}

/* =================================================================
   STRESSTEST-UPGRADES v2 — April 2026
   Accessibility · Testimonials · FAQ · Honeypot · Scroll-to-top
   ================================================================= */

/* Skip-Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--ink);
    color: var(--bg);
    padding: 0.75rem 1.25rem;
    font-family: var(--sans);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 6px 0;
    z-index: 9999;
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--brass);
    outline-offset: 2px;
}

/* Unified focus styles (Accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 2px;
    border-radius: 3px;
}

/* hide panels when inactive via `hidden` — respects tab-aria */
.page[hidden] { display: none !important; }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.5rem;
    margin: 0;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 1.25rem; left: 1.5rem;
    width: 28px; height: 22px;
    background: linear-gradient(135deg, var(--brass) 0%, var(--brass-soft) 100%);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'><path d='M0 24V14C0 6 5 0 14 0v6c-4 0-6 3-6 7h6v11H0zm18 0V14C18 6 23 0 32 0v6c-4 0-6 3-6 7h6v11H18z' fill='black'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'><path d='M0 24V14C0 6 5 0 14 0v6c-4 0-6 3-6 7h6v11H0zm18 0V14C18 6 23 0 32 0v6c-4 0-6 3-6 7h6v11H18z' fill='black'/></svg>") no-repeat center / contain;
    opacity: 0.35;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--brass-soft);
    box-shadow: 0 18px 40px -22px rgba(15, 27, 45, 0.2);
}
.testimonial-card blockquote {
    margin: 2.5rem 0 1.25rem 0;
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
    font-style: italic;
}
.testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-soft);
}
.testimonial-card .t-role {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.testimonial-card .t-meta {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--ink-muted);
}
.testimonial-note {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-top: 1.5rem;
    text-align: center;
    font-style: italic;
}

/* Video-Hinweis */
.video-note {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-top: 0.9rem;
    text-align: center;
    font-style: italic;
}

/* Contact-Hint & soon-placeholder */
.contact-item .soon {
    color: var(--ink-muted);
    font-weight: 500;
    font-style: italic;
    font-size: 0.92rem;
}
.contact-hint {
    margin-top: 1.1rem;
    padding: 0.85rem 1rem;
    background: var(--bg-deep);
    border-left: 3px solid var(--brass);
    border-radius: 0 8px 8px 0;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* Honeypot (visuell unsichtbar, screenreader-unerreichbar) */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Required-Sternchen */
.req {
    color: var(--brass);
    font-weight: 700;
    margin-left: 0.15rem;
}

/* Fieldset reset für chips */
fieldset.field {
    border: 0;
    padding: 0;
    margin: 0;
}
fieldset.field legend {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--ink);
    margin-bottom: 0.55rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0;
}

/* Consent Checkbox */
.field.consent {
    margin-top: 0.5rem;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--ink-soft);
}
.consent-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--brass);
    flex-shrink: 0;
}

/* FAQ */
.faq {
    max-width: 860px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
    border-color: var(--brass-soft);
    box-shadow: 0 12px 28px -20px rgba(15, 27, 45, 0.22);
}
.faq-item summary {
    padding: 1.1rem 1.35rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--brass);
    transition: transform 0.25s ease;
    line-height: 1;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--brass-deep); }
.faq-item p {
    padding: 0 1.35rem 1.25rem;
    margin: 0;
    font-family: var(--sans);
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: 0.94rem;
    border-top: 1px solid var(--line-soft);
    padding-top: 1rem;
    margin-top: -0.35rem;
}

/* Scroll-to-top */
.to-top {
    position: fixed;
    right: 1.6rem;
    bottom: 1.6rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 500;
    box-shadow: 0 10px 30px -14px rgba(15, 27, 45, 0.45);
}
.to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.to-top:hover {
    background: var(--brass);
    color: var(--bg);
}

/* Mobile responsive for new blocks */
@media (max-width: 980px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .to-top { right: 1rem; bottom: 1rem; width: 40px; height: 40px; }
    .faq-item summary { padding: 0.95rem 1.1rem; font-size: 0.92rem; }
    .faq-item p { padding-left: 1.1rem; padding-right: 1.1rem; }
}

/* Reduced motion — respect user preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    /* Canvas-Animation wird in script.js zusätzlich gestoppt */
}

/* Print styles */
@media print {
    .nav, .nav-burger, .to-top, .footer, .cta-band, .hero-visual,
    .booking-form, .video-embed, .bg-texture { display: none !important; }
    .page { display: block !important; page-break-after: always; }
    body { background: #fff !important; color: #000 !important; }
    a { color: #000 !important; text-decoration: underline; }
    .h1, .h2, .h3 { page-break-after: avoid; }
}

/* =================================================================
   REFRESH v3 — April 2026
   Heller, luftiger, moderner. Weniger dunkle Bänder, mehr Weißraum.
   Inspired by Linear, Vercel, Stripe Docs.
   ================================================================= */

/* ---------- CTA-Band: dunkel → hell mit Akzent ---------- */
.cta-band {
    background: linear-gradient(180deg, var(--bg-alt) 0%, #F9F6EE 100%);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(184, 134, 78, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.cta-band p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    max-width: 640px;
    margin: 0 auto 2.2rem;
    line-height: 1.6;
}
.cta-band .btn-primary {
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
    box-shadow: 0 6px 18px -8px rgba(15, 27, 45, 0.35);
}
.cta-band .btn-primary:hover {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--ink);
    transform: translateY(-1px);
}

/* ---------- Format-Card Featured: dunkel → heller Akzent ---------- */
.format-card.featured {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F1 100%);
    border: 1px solid var(--brass-soft);
    color: var(--ink);
    box-shadow: 0 28px 48px -32px rgba(184, 134, 78, 0.35);
}
.format-card.featured h3 { color: var(--ink); }
.format-card.featured .format-subtitle { color: var(--brass-deep); }
.format-card.featured p { color: var(--ink-soft); }
.format-card.featured .format-meta { border-top-color: var(--line); }
.format-card.featured .format-meta span { color: var(--ink-muted); }
.format-card.featured .format-meta b { color: var(--ink); }
.format-card.featured .format-num { color: var(--brass-deep); }

/* ---------- Quote Block: leichter, luftiger ---------- */
.quote-block {
    padding: 4rem 1.5rem;
    max-width: 780px;
}
.quote-block::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--brass);
    margin: 0 auto 2rem;
}
.quote-block blockquote {
    font-weight: 300;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    line-height: 1.5;
    color: var(--ink);
    font-style: normal;
    letter-spacing: -0.015em;
}

/* ---------- Testimonials: weg von der Box, rein typografisch ---------- */
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.2rem;
    margin-top: 3rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    transition: none;
}
.testimonial-card::before { display: none; }
.testimonial-card:hover {
    transform: none;
    border: 0;
    box-shadow: none;
}
.testimonial-card blockquote {
    margin: 0 0 1.6rem 0;
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.005em;
    position: relative;
    padding-top: 1.5rem;
}
.testimonial-card blockquote::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--brass);
}
.testimonial-card figcaption {
    padding-top: 0;
    border-top: 0;
    gap: 0.3rem;
}
.testimonial-card .t-role {
    font-size: 0.82rem;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.testimonial-card .t-meta {
    font-size: 0.78rem;
    color: var(--ink-muted);
}
.testimonial-note {
    max-width: 640px;
    margin: 3rem auto 0;
    font-size: 0.82rem;
}

/* ---------- FAQ: ohne Boxen, nur Trennlinien ---------- */
.faq {
    max-width: 780px;
    border-top: 1px solid var(--line);
    gap: 0;
}
.faq-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none !important;
}
.faq-item[open] {
    border-bottom-color: var(--brass-soft);
    box-shadow: none;
}
.faq-item summary {
    padding: 1.4rem 0.25rem;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.08rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.faq-item summary:hover { color: var(--brass-deep); }
.faq-item[open] summary { color: var(--brass-deep); }
.faq-item p {
    padding: 0 0.25rem 1.5rem;
    margin: 0;
    border-top: 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 680px;
}

/* ---------- Section-Padding: mehr Weißraum ---------- */
.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (max-width: 980px) {
    .section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

/* ---------- Typografie-Rhythmus: subtiler ---------- */
.kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--brass-deep);
    font-weight: 600;
    text-transform: uppercase;
}
.section-head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-head .h2 {
    margin-top: 0.9rem;
    letter-spacing: -0.025em;
}
.section-head .section-lead {
    margin-top: 1.2rem;
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Hero: luftigere Typo ---------- */
.h1 {
    letter-spacing: -0.035em;
    font-weight: 400;
}
.h2 {
    letter-spacing: -0.025em;
    font-weight: 400;
}

/* ---------- Contact-Hint: weniger Balken-Stil ---------- */
.contact-hint {
    background: transparent;
    border-left: 0;
    padding: 0.85rem 0 0;
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--ink-muted);
    border-top: 1px solid var(--line-soft);
    font-style: normal;
}

/* ---------- Buttons: etwas weicher, moderner ---------- */
.btn {
    border-radius: 100px;
    padding: 0.85rem 1.6rem;
    font-weight: 500;
    letter-spacing: 0;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

/* ---------- Cards: weichere Schatten ---------- */
.offer-card,
.service-card,
.seminar-card,
.impl-card,
.team-card,
.principle,
.benefit-card {
    box-shadow: 0 1px 0 rgba(15, 27, 45, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover,
.service-card:hover,
.seminar-card:hover,
.impl-card:hover,
.team-card:hover,
.principle:hover,
.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px -28px rgba(15, 27, 45, 0.22);
}

/* ---------- Navigation: subtiler Glas-Look ---------- */
.nav {
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    background: rgba(250, 250, 247, 0.82);
    border-bottom: 1px solid rgba(228, 224, 213, 0.6);
}

/* ---------- Trust-Zeile im Hero luftiger ---------- */
.trust { gap: 2.5rem; }
.trust-item b {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* ---------- Mobile Adjustments ---------- */
@media (max-width: 980px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cta-band { padding: 3rem 1.5rem; }
    .quote-block { padding: 3rem 1rem; }
}

/* ---------- Fade-In beim ersten Paint ----------
   Wichtig: NUR auf .hero-copy, NICHT auf .hero-visual.
   Das Canvas (im .hero-visual) wird sonst vom Browser als GPU-Layer
   gesnapshottet, BEVOR bootCanvas() das erste Frame gezeichnet hat —
   Folge: leere Karte trotz aktiver RAF-Schleife. */
@keyframes fadeInSoft {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-copy {
    animation: fadeInSoft 0.6s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy { animation: none; }
}

/* ---------- Footer: "folgt"-Platzhalter für noch fehlende Rechtsseiten ---------- */
.footer-link-soon {
    color: var(--mute);
    cursor: not-allowed;
    user-select: none;
    display: block;
    padding: 0.1rem 0;
}
.footer-link-soon em {
    font-style: normal;
    font-size: 0.78em;
    color: var(--mute);
    opacity: 0.75;
    margin-left: 0.3rem;
}

/* ---------- Kontrast-Boost: Brass auf Off-White ist grenzwertig AA ----------
   Aktueller Brass #B8864E auf Off-White #FAFAF7 → ~3.8:1 (FAIL für Fließtext).
   Für dekorative Elemente OK, aber nicht für Links/CTAs. Dort nutzen wir eine
   dunklere Brass-Variante — nur für Text. */
:root {
    --brass-text: #8E6432;
}
a.footer-link,
.footer-col a,
.muted-link {
    color: var(--brass-text);
}
a.footer-link:hover,
.footer-col a:hover {
    color: var(--ink);
}

/* ---------- Touch-Targets mobil ≥ 44px (WCAG 2.5.5 AAA / Apple HIG) ---------- */
@media (max-width: 720px) {
    .tab,
    .nav-cta,
    .btn,
    .faq-item summary,
    .footer-col a {
        min-height: 44px;
    }
    .nav-burger {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ---------- Form Validation States ---------- */
.booking-form input.invalid,
.booking-form textarea.invalid {
    border-color: #C94B3C;
    box-shadow: 0 0 0 3px rgba(201, 75, 60, 0.12);
}
.form-error-note {
    background: #FDEEEB;
    color: #8B2A1E;
    border: 1px solid #F1C7BF;
    border-radius: var(--radius);
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.form-error-note[hidden] { display: none; }

/* =================================================================
   v4 — POLITUR-PASS: Eleganz, Atem, Ruhe.
   Vorbild: Stripe, Linear, Vercel — leise, nicht laut.
   ================================================================= */

/* Größerer, ruhigerer Hero */
.hero {
    padding-top: 6rem;
    padding-bottom: 7rem;
}
.h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 350;
}
.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 36em;
    color: var(--ink-muted);
}
.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.eyebrow .dot {
    background: var(--brass);
    box-shadow: 0 0 0 4px rgba(184, 134, 78, 0.15);
}

/* Trust-Zeile: serifige Zahlen, mehr Atem */
.trust {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    gap: 3rem;
}
.trust-item b {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--ink);
    display: block;
    margin-bottom: 0.3rem;
}
.trust-item span {
    font-size: 0.82rem;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
}

/* Buttons: ruhiger, weniger Schatten */
.btn {
    border-radius: 6px;
    padding: 0.95rem 1.6rem;
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    transition: all 0.18s ease;
}
.btn-primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 1px 2px rgba(15,27,45,0.08);
}
.btn-primary:hover {
    background: #1A2940;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15,27,45,0.18);
}
.btn-ghost {
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
}
.btn-ghost:hover {
    background: var(--bg-alt);
    border-color: var(--ink-muted);
}

/* Section-Headers: zentrierter, ruhiger Stil */
.section { padding: 6rem 1.5rem; }
.section-head {
    max-width: 780px;
    margin: 0 auto 4rem;
    text-align: center;
}
.section-head .kicker {
    color: var(--brass-deep);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}
.section-lead {
    color: var(--ink-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Offer-Cards: subtiler, eleganter Hover */
.offer-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2.2rem 1.8rem;
    box-shadow: none;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}
.offer-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(15,27,45,0.07);
    border-color: var(--brass-soft);
}
.offer-card:hover::before {
    transform: scaleX(1);
}
.offer-card.primary {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F1 100%);
    border-color: var(--brass-soft);
}
.offer-card.primary::before { transform: scaleX(1); }
.offer-num {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--brass-deep);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.offer-icon { color: var(--brass); margin-bottom: 1.2rem; }
.offer-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.offer-card p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Network-Card: noch dezenter Rahmen */
.network-card {
    border: 1px solid var(--line-soft);
    box-shadow: 0 20px 50px rgba(15, 27, 45, 0.06), inset 0 0 0 1px rgba(255,255,255,0.5);
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F1E2 100%);
}
.network-caption {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(228, 224, 213, 0.5);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(15,27,45,0.04);
}
.caption-label {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 400;
}
.caption-sub {
    font-size: 0.74rem;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    margin-top: 0.1rem;
}

/* Accent-italic schöner */
.accent-italic {
    font-style: italic;
    font-weight: 300;
    color: var(--ink-muted);
}

/* Gradient-Text auf Headlines: dezenter */
.grad {
    background: linear-gradient(90deg, var(--brass-deep) 0%, var(--brass) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 350;
}

/* CTA-Row: mehr Abstand */
.cta-row { gap: 1rem; margin-top: 2.5rem; }

/* Footer ruhiger */
.footer {
    padding: 5rem 1.5rem 3rem;
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}
.footer-head {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.footer-col a {
    color: var(--ink-soft);
    transition: color 0.15s ease;
    text-decoration: none;
    display: block;
    padding: 0.15rem 0;
}
.footer-col a:hover { color: var(--brass-deep); }
.footer-impressum {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 0.82rem;
    color: var(--ink-muted);
}

/* Tabs: noch dezenter, ruhiger Active-State */
.tab {
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding: 0.6rem 0.9rem;
    transition: color 0.15s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); font-weight: 500; }
.tab.active::after {
    content: "";
    position: absolute;
    left: 0.9rem; right: 0.9rem;
    bottom: -2px;
    height: 2px;
    background: var(--brass);
    border-radius: 2px;
}

/* Logo dezenter */
.logo { color: var(--ink); font-weight: 500; }
.logo-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: -0.005em;
    font-weight: 400;
}
.logo-mark { color: var(--brass); }

/* Mobile Hero: Visual unter Text statt nebeneinander, schmaler */
@media (max-width: 980px) {
    .hero { padding-top: 3rem; padding-bottom: 4rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 360px; margin: 0 auto; justify-self: center; }
    .trust { gap: 2rem; flex-wrap: wrap; }
    .trust-item b { font-size: 1.7rem; }
    .section { padding: 4rem 1.25rem; }
    .section-head { margin-bottom: 2.5rem; }
    .footer { padding: 3rem 1.25rem 2rem; }
}

/* Selection-Color */
::selection { background: rgba(184, 134, 78, 0.25); color: var(--ink); }

/* Smooth focus ohne Klotz-Outline */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 2px;
    border-radius: 3px;
}

/* =================================================================
   v5 — FINAL CLEAN-UP
   Alle bekannten Bugs zentral fixen:
   - Footer-Texte (Logo, Tag, Impressum, Bottom) waren weiß auf hell
   - facts-card war navy (passt nicht zu hellem Design)
   - video-embed Hintergrund war navy
   - Mobile-Layouts mussten konsolidiert werden
   ================================================================= */

/* ---------- FOOTER: alle Texte für hellen Hintergrund ---------- */
.footer { background: var(--bg-deep); color: var(--ink-soft); }
.footer-logo { color: var(--ink); }
.footer-logo .logo-mark { color: var(--brass); }
.footer-tag { color: var(--ink-muted); font-style: italic; }
.footer-head { color: var(--ink-muted); }
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--brass-deep); }
.footer-impressum { color: var(--ink-muted); }
.footer-bottom {
    color: var(--ink-muted);
    border-top: 1px solid var(--line);
}
.footer-link-soon { color: var(--ink-muted); }
.footer-link-soon em { color: var(--ink-muted); }

/* ---------- FACTS-CARD: vom navy Klotz zu hellem Premium-Card ---------- */
.facts-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F1 100%);
    color: var(--ink);
    border: 1px solid var(--brass-soft);
    box-shadow: 0 14px 36px -18px rgba(184, 134, 78, 0.35);
    padding: 2.4rem 2rem;
    border-radius: var(--radius-lg);
}
.facts-head {
    color: var(--brass-deep);
    font-family: var(--serif);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.facts-row {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
}
.facts-row:first-of-type { border-top: none; padding-top: 0; }
.facts-row.last { border-bottom: none; }
.facts-row span { color: var(--ink-muted); }
.facts-row b {
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 500;
}

/* ---------- VIDEO-EMBED: heller, ruhiger Hintergrund (Loading-Zustand) ---------- */
.video-embed {
    background: linear-gradient(180deg, #F4EFE2 0%, #E8E0CC 100%);
    box-shadow: 0 18px 44px -20px rgba(15, 27, 45, 0.25);
}

/* ---------- BAND (Übersicht: "Vier Schritte") konsistenter ---------- */
.band {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF7EC 100%);
    border: 1px solid var(--line);
    box-shadow: 0 6px 22px -16px rgba(15, 27, 45, 0.08);
}

/* ---------- PRINCIPLE-Cards: konsistenter Hover ---------- */
.principle {
    transition: all 0.22s ease;
}
.principle:hover {
    border-color: var(--brass-soft);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -18px rgba(184, 134, 78, 0.3);
}

/* ---------- MOBILE: alle Tab-Hero-Layouts und Grids konsolidieren ---------- */
@media (max-width: 980px) {
    .video-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .band { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
    .steps { grid-template-columns: 1fr; gap: 1rem; }
    .principle-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 3.5rem 1.25rem 2rem; }
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 1.25rem 2rem;
        gap: 2rem;
    }
    .cta-band { padding: 2.5rem 1.5rem; border-radius: 14px; }
    .cta-band h2 { font-size: 1.5rem; }
    .h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
    .h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
    .lead { font-size: 1rem; }
}

/* ---------- HERO-VISUAL: Mobile-fix für SVG-Sichtbarkeit ---------- */
.hero-visual {
    position: relative;
    min-height: 320px;
}
#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
}

/* ---------- EYEBROW-DOT auf hellem Hintergrund ---------- */
.eyebrow .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brass);
    margin-right: 0.4rem;
    vertical-align: middle;
    box-shadow: 0 0 0 4px rgba(184, 134, 78, 0.15);
}

/* ---------- KICKER-Style überall einheitlich ---------- */
.kicker {
    color: var(--brass-deep);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

/* ---------- TWO-COL Layout (Crowd-Prinzip "Für wen") ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: var(--container);
    margin: 0 auto;
}

/* ---------- CHECK-LIST sauber ---------- */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.check-list li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    color: var(--ink-soft);
    line-height: 1.55;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1em;
    width: 12px;
    height: 2px;
    background: var(--brass);
}

/* =================================================================
   v6 — BRAND-COLORS aus dem echten Logo
   Pink → Orange → Gelb → Grün → Cyan → Blau → Violett
   Dezent eingesetzt: Logo, Akzente, Gradients. Grundton bleibt ruhig.
   ================================================================= */
:root {
    --brand-pink:   #FF2E7E;
    --brand-orange: #FF8A1F;
    --brand-yellow: #FFD93D;
    --brand-green:  #5DD168;
    --brand-cyan:   #1FE1E1;
    --brand-blue:   #5B7BFF;
    --brand-violet: #C857F0;
}

/* Logo im Header sauber platzieren */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}
img.logo-mark {
    display: block;
    flex-shrink: 0;
}
img.logo-mark.small { width: 26px; height: 26px; }

/* Regenbogen-Gradient für Headlines (.grad) statt nur brass */
.grad {
    background: linear-gradient(95deg,
        var(--brand-pink) 0%,
        var(--brand-orange) 25%,
        var(--brand-yellow) 45%,
        var(--brand-green) 65%,
        var(--brand-blue) 85%,
        var(--brand-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 350;
}

/* Eyebrow-Dot zyklisch in Logo-Farben statt nur brass */
@keyframes dotCycle {
    0%   { background: var(--brand-pink);   box-shadow: 0 0 0 4px rgba(255, 46, 126, 0.18); }
    20%  { background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.18); }
    40%  { background: var(--brand-green);  box-shadow: 0 0 0 4px rgba(93, 209, 104, 0.18); }
    60%  { background: var(--brand-cyan);   box-shadow: 0 0 0 4px rgba(31, 225, 225, 0.18); }
    80%  { background: var(--brand-violet); box-shadow: 0 0 0 4px rgba(200, 87, 240, 0.18); }
    100% { background: var(--brand-pink);   box-shadow: 0 0 0 4px rgba(255, 46, 126, 0.18); }
}
.eyebrow .dot {
    animation: dotCycle 12s ease-in-out infinite;
}

/* Kicker (Sektion-Eyebrows) abwechselnd Logo-Farben — sehr dezent */
.section:nth-of-type(1) .kicker { color: var(--brand-pink); }
.section:nth-of-type(2) .kicker { color: var(--brand-orange); }
.section:nth-of-type(3) .kicker { color: var(--brand-green); }
.section:nth-of-type(4) .kicker { color: var(--brand-blue); }
.section:nth-of-type(5) .kicker { color: var(--brand-violet); }

/* Offer-Cards: Akzent-Linien in Logo-Farben (eine pro Card) */
.offer-card:nth-child(1)::before { background: var(--brand-pink); }
.offer-card:nth-child(2)::before { background: var(--brand-orange); }
.offer-card:nth-child(3)::before { background: var(--brand-green); }
.offer-card:nth-child(4)::before { background: var(--brand-blue); }

/* Principle-Cards: Nummern in Logo-Farben statt nur brass */
.principle:nth-child(1) .principle-num { color: var(--brand-pink); }
.principle:nth-child(2) .principle-num { color: var(--brand-orange); }
.principle:nth-child(3) .principle-num { color: var(--brand-green); }
.principle:nth-child(4) .principle-num { color: var(--brand-blue); }
.principle:nth-child(5) .principle-num { color: var(--brand-violet); }

/* Steps in der Übersicht: linke Akzent-Linie zyklisch */
.steps .step:nth-child(1) { border-left-color: var(--brand-pink); }
.steps .step:nth-child(2) { border-left-color: var(--brand-orange); }
.steps .step:nth-child(3) { border-left-color: var(--brand-green); }
.steps .step:nth-child(4) { border-left-color: var(--brand-blue); }

@media (prefers-reduced-motion: reduce) {
    .eyebrow .dot { animation: none; background: var(--brand-pink); }
}

/* Selection-Color heller, Logo-Pink */
::selection { background: rgba(255, 46, 126, 0.22); color: var(--ink); }

/* ---------- TESTIMONIAL-Note: dezent ---------- */
.testimonial-note {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.82rem;
    font-style: italic;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- OFFER-CARD.PRIMARY: Texte überschreiben (war WEISS auf jetzt hellem Hintergrund) ---------- */
.offer-card.primary {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F1 100%) !important;
    color: var(--ink) !important;
    border-color: var(--brass-soft) !important;
}
.offer-card.primary:hover {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5EFE0 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(184,134,78,0.15);
}
.offer-card.primary h3 { color: var(--ink) !important; }
.offer-card.primary p { color: var(--ink-soft) !important; }
.offer-card.primary .offer-list li {
    color: var(--ink-soft) !important;
    border-color: var(--line) !important;
}
.offer-card.primary .offer-link { color: var(--brass-deep) !important; }
.offer-card.primary .offer-num { color: var(--brass-deep) !important; }
.offer-card.primary .offer-icon { color: var(--brass) !important; }

/* =================================================================
   v10 — DARK THEME (final)
   Hintergrund schwarz, Text hell, ein einziger ruhiger Akzent (Cyan).
   Alle Regenbogen-Spielereien deaktiviert. Logo bleibt bunt.
   ================================================================= */

:root {
    --bg:          #08080B;
    --bg-alt:      #101015;
    --bg-deep:     #0C0C10;
    --bg-card:     #131319;
    --ink:         #F5F5F7;
    --ink-soft:    #B8BBC2;
    --ink-muted:   #7F8289;
    --line:        #25252D;
    --line-soft:   #1C1C23;
    --accent:      #5BA8C9;       /* dezentes Cyan, statt Regenbogen */
    --accent-soft: #8BC8DC;
    --accent-deep: #2A6F8F;
}

html, body {
    background: var(--bg);
    color: var(--ink);
}

/* Background-Texture: leichte Glow-Wolken statt Brass-Sun */
.bg-texture {
    background-image:
        radial-gradient(circle at 20% 15%, rgba(91, 168, 201, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 85%, rgba(200, 87, 240, 0.05) 0%, transparent 50%);
}

/* Headlines: kein Regenbogen mehr — dezenter Cyan-Akzent */
.grad {
    background: linear-gradient(95deg, var(--ink) 0%, var(--accent-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 350;
}
.accent-italic {
    font-style: italic;
    font-weight: 300;
    color: var(--ink-muted);
}

/* Eyebrow-Dot: einfarbig, kein Cycle */
.eyebrow .dot {
    animation: none !important;
    background: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(91, 168, 201, 0.18) !important;
}
.eyebrow {
    color: var(--ink-muted);
}

/* Kicker einheitlich, kein Section-Cycling */
.section:nth-of-type(n) .kicker {
    color: var(--accent) !important;
}

/* NAV: dunkles Glass */
.nav {
    background: rgba(8, 8, 11, 0.85) !important;
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line-soft) !important;
}
.logo, .logo-text { color: var(--ink) !important; }
.tab { color: var(--ink-soft) !important; }
.tab:hover, .tab.active { color: var(--ink) !important; }
.tab.active::after { background: var(--accent) !important; }
.nav-cta {
    background: var(--ink) !important;
    color: var(--bg) !important;
    border: 1px solid var(--ink) !important;
}
.nav-cta:hover {
    background: var(--accent) !important;
    color: var(--bg) !important;
    border-color: var(--accent) !important;
}

/* Buttons */
.btn-primary {
    background: var(--ink) !important;
    color: var(--bg) !important;
    border: 1px solid var(--ink);
}
.btn-primary:hover {
    background: var(--accent) !important;
    color: var(--bg) !important;
    border-color: var(--accent) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(91,168,201,0.25);
}
.btn-ghost {
    background: transparent !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.04) !important;
    border-color: var(--ink-muted) !important;
}

/* Trust-Items */
.trust { border-top-color: var(--line) !important; }
.trust-item b { color: var(--ink) !important; }
.trust-item span { color: var(--ink-muted) !important; }

/* Cards generell auf dunkel */
.offer-card,
.principle,
.format-card,
.team-card,
.facts-card,
.band,
.cta-band,
.video-embed {
    background: var(--bg-card) !important;
    border: 1px solid var(--line) !important;
    color: var(--ink);
}
.offer-card h3, .principle h3, .format-card h3, .team-card h3, .facts-head { color: var(--ink) !important; }
.offer-card p, .principle p, .format-card p, .team-card p { color: var(--ink-soft) !important; }

/* Step-Cards in der Übersicht */
.step {
    background: var(--bg-alt) !important;
    border-left: 2px solid var(--accent) !important;
}
.step b { color: var(--ink) !important; }
.step span { color: var(--accent) !important; }
.step p { color: var(--ink-muted) !important; }
.steps .step:nth-child(n) { border-left-color: var(--accent) !important; }

/* Offer-Cards: nur EIN Akzent, einheitlich */
.offer-card::before { background: var(--accent) !important; }
.offer-card:nth-child(n)::before { background: var(--accent) !important; }
.offer-card:hover {
    border-color: var(--accent) !important;
    box-shadow: 0 14px 34px rgba(91, 168, 201, 0.12) !important;
}
.offer-num { color: var(--accent-deep) !important; font-weight: 500; }
.offer-icon { color: var(--accent) !important; }

/* Primary Card: subtil heller, kein Brass mehr */
.offer-card.primary {
    background: linear-gradient(180deg, #15151C 0%, #1A1A24 100%) !important;
    border-color: rgba(91, 168, 201, 0.35) !important;
}
.offer-card.primary h3 { color: var(--ink) !important; }
.offer-card.primary p { color: var(--ink-soft) !important; }
.offer-card.primary .offer-num { color: var(--accent) !important; }
.offer-card.primary .offer-icon { color: var(--accent-soft) !important; }
.offer-card.primary .offer-link { color: var(--accent-soft) !important; }
.offer-card.primary .offer-list li {
    color: var(--ink-soft) !important;
    border-color: var(--line) !important;
}

/* Principle-Nummern einheitlich Cyan */
.principle:nth-child(n) .principle-num {
    color: var(--accent) !important;
}

/* Facts-Card */
.facts-card {
    background: var(--bg-card) !important;
    border-color: var(--line) !important;
    color: var(--ink) !important;
}
.facts-head { color: var(--accent) !important; }
.facts-row { border-top-color: var(--line) !important; }
.facts-row span { color: var(--ink-muted) !important; }
.facts-row b { color: var(--ink) !important; }

/* CTA-Band */
.cta-band {
    background: linear-gradient(180deg, #14141B 0%, #1B1B25 100%) !important;
    border: 1px solid var(--line) !important;
    color: var(--ink);
}
.cta-band::before {
    background: radial-gradient(circle at 50% -20%, rgba(91, 168, 201, 0.15) 0%, transparent 55%) !important;
}
.cta-band h2 { color: var(--ink) !important; }
.cta-band p { color: var(--ink-soft) !important; }

/* Quote-Block */
.quote-block blockquote { color: var(--ink) !important; }
.quote-block::before { background: var(--accent) !important; }
.quote-cite { color: var(--ink-muted) !important; }

/* Testimonials */
.testimonial-card blockquote { color: var(--ink) !important; }
.testimonial-card blockquote::before { background: var(--accent) !important; }
.testimonial-card .t-role { color: var(--ink) !important; }
.testimonial-card .t-meta { color: var(--ink-muted) !important; }
.testimonial-note { color: var(--ink-muted) !important; }

/* Page-Hero und Section-Lead */
.lead, .section-lead { color: var(--ink-soft) !important; }
.h1, .h2, .h3 { color: var(--ink) !important; }

/* FAQ */
.faq-item { border-bottom-color: var(--line) !important; }
.faq-item summary { color: var(--ink) !important; }
.faq-item[open] summary { color: var(--accent) !important; }
.faq-item .faq-body { color: var(--ink-soft) !important; }

/* Form-Inputs */
.booking-form input,
.booking-form textarea,
.booking-form select {
    background: var(--bg-alt) !important;
    border: 1px solid var(--line) !important;
    color: var(--ink) !important;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--ink-muted) !important; }
.booking-form label { color: var(--ink-soft) !important; }
.booking-form .chip {
    background: var(--bg-alt) !important;
    border: 1px solid var(--line) !important;
    color: var(--ink-soft) !important;
}
.booking-form .chip:has(input:checked) {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--bg) !important;
}
.booking-form input:focus,
.booking-form textarea:focus { border-color: var(--accent) !important; }

/* Team-Cards */
.team-card .initials {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: var(--ink) !important;
}
.team-card .team-role { color: var(--accent) !important; }
.team-card .team-facts li { color: var(--ink-muted) !important; border-top-color: var(--line); }

/* Footer */
.footer {
    background: var(--bg-deep) !important;
    border-top: 1px solid var(--line) !important;
    color: var(--ink-soft);
}
.footer-logo { color: var(--ink) !important; }
.footer-tag { color: var(--ink-muted) !important; }
.footer-head { color: var(--ink-muted) !important; }
.footer-col a { color: var(--ink-soft) !important; }
.footer-col a:hover { color: var(--accent) !important; }
.footer-impressum { color: var(--ink-muted) !important; }
.footer-bottom {
    color: var(--ink-muted) !important;
    border-top: 1px solid var(--line) !important;
}
.footer-link-soon, .footer-link-soon em { color: var(--ink-muted) !important; }

/* Scroll-to-top */
.to-top {
    background: var(--bg-alt) !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
}
.to-top:hover {
    background: var(--accent) !important;
    color: var(--bg) !important;
    border-color: var(--accent) !important;
}

/* Selection */
::selection { background: rgba(91, 168, 201, 0.30); color: var(--ink); }

/* Hero-Network-Card: schwarz mit dezentem Glow */
.network-card {
    background: radial-gradient(circle at 50% 50%, #131319 0%, #08080B 80%) !important;
    border: 1px solid var(--line) !important;
    box-shadow: 0 30px 60px -30px rgba(91,168,201,0.15) !important;
}
.network-caption {
    background: rgba(8, 8, 11, 0.7) !important;
    border: 1px solid var(--line) !important;
    backdrop-filter: blur(10px);
    color: var(--ink);
}
.caption-label { color: var(--ink) !important; }
.caption-sub { color: var(--ink-muted) !important; }

/* Skip-Link */
.skip-link { background: var(--ink); color: var(--bg); }

/* Form-Error-Note auf dunkel */
.form-error-note {
    background: rgba(201, 75, 60, 0.15) !important;
    color: #FFB4A8 !important;
    border-color: rgba(201, 75, 60, 0.4) !important;
}
.booking-form input.invalid,
.booking-form textarea.invalid {
    border-color: #C94B3C !important;
    box-shadow: 0 0 0 3px rgba(201, 75, 60, 0.2) !important;
}

/* Print bleibt hell — Kontext: Druck */
@media print {
    html, body { background: white !important; color: black !important; }
}

/* =================================================================
   v-DYN-1 — Dynamische Webseite: Hero, Reveal, Magnet, Counter
   ================================================================= */

/* ========== STICKY HERO ========== */
.hero-sticky-wrap {
    position: relative;
    min-height: 100svh;
    height: 100vh;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-bg #particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: auto;
    cursor: crosshair;
}
.hero-fullbleed {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}
.hero-content {
    max-width: 760px;
    text-align: left;
    position: relative;
    pointer-events: auto;
}

.hero-headline {
    font-size: clamp(2.6rem, 6.2vw, 5.6rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 350;
    margin-bottom: 2rem;
}

/* Particle-Card der statischen Version deaktivieren */
.network-card { display: none; }
.hero-visual { display: none; }

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink-muted);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    animation: fadeInScroll 1.2s ease-out 1.4s forwards;
}
.scroll-arrow {
    font-size: 1.1rem;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes fadeInScroll { to { opacity: 0.7; } }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%      { transform: translateY(8px); opacity: 1; }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}
.reveal-stagger {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--stagger-delay, 0ms);
    will-change: opacity, transform;
}
.reveal-stagger.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Hero Word-by-Word reveal */
.hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}
.hero-headline.is-visible .word { opacity: 1; transform: translateY(0); filter: blur(0); }
.hero-headline.is-visible .word:nth-child(1)  { transition-delay: 0ms; }
.hero-headline.is-visible .word:nth-child(2)  { transition-delay: 80ms; }
.hero-headline.is-visible .word:nth-child(3)  { transition-delay: 160ms; }
.hero-headline.is-visible .word:nth-child(4)  { transition-delay: 280ms; }
.hero-headline.is-visible .word:nth-child(5)  { transition-delay: 360ms; }
.hero-headline.is-visible .word:nth-child(6)  { transition-delay: 440ms; }
.hero-headline.is-visible .word:nth-child(7)  { transition-delay: 580ms; }
.hero-headline.is-visible .word:nth-child(8)  { transition-delay: 660ms; }
.hero-headline.is-visible .word:nth-child(9)  { transition-delay: 740ms; }

/* Hero Reveal-Delays */
.reveal[data-reveal-delay="0"]    { transition-delay: 0ms; }
.reveal[data-reveal-delay="100"]  { transition-delay: 100ms; }
.reveal[data-reveal-delay="600"]  { transition-delay: 1100ms; }
.reveal[data-reveal-delay="800"]  { transition-delay: 1300ms; }
.reveal[data-reveal-delay="1000"] { transition-delay: 1500ms; }

/* ========== MAGNETIC BUTTONS ========== */
.btn-magnetic {
    transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.18s ease,
                box-shadow 0.18s ease,
                color 0.18s ease;
    will-change: transform;
}

/* ========== Mobile reduzieren ========== */
@media (max-width: 720px) {
    .hero-headline {
        font-size: clamp(2.2rem, 9vw, 3rem);
        line-height: 1.08;
        margin-bottom: 1.5rem;
    }
    .scroll-indicator { bottom: 1.5rem; font-size: 0.62rem; }
    .hero-fullbleed { padding: 5rem 1.25rem 4rem; }
}
@media (max-height: 640px) {
    .hero-fullbleed { align-items: flex-start; padding-top: 5rem; }
    .scroll-indicator { display: none; }
}
/* Fix: Auf nicht-hohen Viewports (Laptops) ist der zentrierte Hero-Inhalt
   ~730px hoch und überlappt sonst mit dem absolut positionierten
   Scroll-Indikator (er lief über die "Erstgespräch buchen"-CTA).
   Erst ab ~922px Viewport-Höhe sitzt er überlappungsfrei darunter. */
@media (max-height: 940px) {
    .scroll-indicator { display: none; }
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hero-headline .word { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
    .scroll-indicator { animation: none; opacity: 0.5; }
    .scroll-arrow { animation: none; }
}

/* =================================================================
   v-DYN-2 — Globaler animierter Hintergrund (blueyard-Style)
   Canvas läuft fixed über alle Sektionen. Inhalte schweben darüber.
   ================================================================= */

/* Global background canvas */
.global-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 30%, #0E0E14 0%, #050508 80%);
    overflow: hidden;
}
.global-bg #particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}
.global-bg-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 90%);
    /* Tint-Color wird per JS gesetzt (--bg-tint), morpht beim Scrollen sanft */
    box-shadow: inset 0 0 250px var(--bg-tint, transparent);
    transition: box-shadow 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Body wird transparent — Hintergrund kommt vom global-bg */
body { background: transparent !important; }
html { background: #050508; }

/* Hero-Wrap: braucht keine eigene Höhe-Reservierung mehr,
   aber wir lassen es 100vh damit Hero-Content zentriert bleibt */
.hero-sticky-wrap {
    position: relative;
    min-height: 100svh;
    overflow: visible;
}
.hero-bg { display: none; } /* alter Hero-Bg deaktiviert */
.hero-fullbleed {
    background: transparent;
}

/* Sektionen darüber: semi-transparent, so dass das Netzwerk durchschimmert.
   Aber Cards bleiben solide für Lesbarkeit. */
.section,
.page-hero,
section.page > .section {
    background: transparent;
}

/* Cards bekommen leichten frosted-glass-Effekt */
.offer-card,
.principle,
.format-card,
.team-card,
.facts-card,
.band,
.cta-band,
.video-embed,
.testimonial-card,
.faq-item {
    background: rgba(19, 19, 25, 0.78) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.offer-card.primary {
    background: linear-gradient(180deg, rgba(21,21,28,0.85) 0%, rgba(26,26,36,0.85) 100%) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Quote, Testimonials ohne Box bleiben transparent — der Hintergrund leuchtet durch */
.quote-block { background: transparent !important; }

/* Footer auf solidem dunkel — soll nicht mehr durchscheinen */
.footer {
    background: rgba(8, 8, 11, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

/* Nav: noch leichteres Glas, leuchtet vom Netzwerk */
.nav {
    background: rgba(8, 8, 11, 0.7) !important;
    backdrop-filter: saturate(180%) blur(18px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(18px) !important;
}

/* Wenn keine backdrop-filter: dezenter Schatten unter den Cards */
@supports not (backdrop-filter: blur(1px)) {
    .offer-card, .principle, .format-card, .team-card, .facts-card,
    .band, .cta-band, .video-embed, .testimonial-card, .faq-item {
        background: rgba(19, 19, 25, 0.95) !important;
    }
}

/* Mobile: weniger Glas-Effekt für Performance */
@media (max-width: 720px) {
    .offer-card, .principle, .format-card, .team-card, .facts-card,
    .band, .cta-band, .video-embed, .testimonial-card, .faq-item {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}

/* =================================================================
   v-DYN-4 — Stresstest-Fixes + optische Politur
   ================================================================= */

/* SAFETY: Globaler Canvas darf KEINE Klicks blockieren */
.global-bg, .global-bg * { pointer-events: none !important; }

/* Alle interaktiven Elemente sicher klickbar */
.hero-content, .hero-fullbleed, .hero-sticky-wrap,
.section, .page-hero, .page,
header, .nav, .nav-inner, footer, main {
    pointer-events: auto;
}

/* Cards: einheitlicher Premium-Hover mit subtle Glow */
.offer-card,
.principle,
.team-card,
.format-card,
.testimonial-card,
.faq-item {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease,
                box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease;
}
.offer-card:hover,
.principle:hover,
.team-card:hover,
.format-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 168, 201, 0.35) !important;
    box-shadow: 0 18px 40px -16px rgba(91, 168, 201, 0.18),
                0 0 0 1px rgba(91, 168, 201, 0.12) inset;
    background: rgba(22, 22, 30, 0.85) !important;
}
.offer-card.primary:hover {
    border-color: rgba(255, 100, 200, 0.4) !important;
    box-shadow: 0 22px 48px -18px rgba(255, 100, 200, 0.25),
                0 0 0 1px rgba(255, 100, 200, 0.15) inset;
}

/* Buttons: alle Hover-States sauber */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(91, 168, 201, 0.35) !important;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: translateY(-2px);
}
.btn-magnetic { will-change: transform; }

/* Tab-Buttons: klare Hover- und Focus-States */
.tab {
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}
.tab:hover {
    color: var(--ink) !important;
    background: rgba(91, 168, 201, 0.06) !important;
    border-radius: 6px;
}
.tab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Nav-CTA Hover */
.nav-cta {
    transition: all 0.2s ease;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(91, 168, 201, 0.3);
}

/* Logo-Link im Header: Hover-Glow */
.logo {
    transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }

/* FAQ summary: deutlich klickbar markieren */
.faq-item summary {
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent) !important; }

/* Form-Inputs: bessere Focus-States */
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(91, 168, 201, 0.18) !important;
}

/* Chip-Radios: aktive Chips sichtbarer */
.booking-form .chip {
    cursor: pointer;
    transition: all 0.2s ease;
}
.booking-form .chip:hover {
    border-color: var(--accent) !important;
    color: var(--ink) !important;
}

/* Footer-Links Hover */
.footer-col a {
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover {
    transform: translateX(2px);
}

/* Burger-Menü: bessere Hover-Indikation */
.nav-burger {
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.nav-burger:hover { opacity: 0.7; }

/* Scroll-to-top Button */
.to-top { transition: all 0.25s ease; }
.to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(91, 168, 201, 0.3) !important;
}

/* Trust-Items: subtle Hover */
.trust-item {
    transition: transform 0.25s ease;
}
.trust-item:hover { transform: translateY(-2px); }
.trust-item b { color: var(--accent) !important; }

/* CTA-Band Button: eigener Glow */
.cta-band .btn-primary:hover {
    box-shadow: 0 14px 32px rgba(91, 168, 201, 0.4) !important;
}

/* Quote-Block: subtiler Effekt beim Scroll */
.quote-block blockquote {
    transition: opacity 0.6s ease;
}

/* Selection-Color synchron */
::selection { background: rgba(91, 168, 201, 0.3); color: var(--ink); }

/* Mobile: Hover-States entfernen damit Cards nicht "stuck" wirken nach Tap */
@media (hover: none) {
    .offer-card:hover,
    .principle:hover,
    .team-card:hover,
    .format-card:hover,
    .faq-item:hover {
        transform: none;
    }
}

/* Visual-Polish: Section-Heads bekommen leichten Glow auf der Brand-Linie */
.section-head .h2 {
    text-shadow: 0 0 30px rgba(91, 168, 201, 0.12);
}

/* Page-Hero auf Sub-Tabs: dezenter Padding-Boost */
.page-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

/* Cards bekommen einen subtilen oberen Akzent statt einer kompletten Border-Linie */
.offer-card::before {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%) !important;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.offer-card:hover::before { transform: scaleX(1) !important; }

/* =================================================================
   v-DYN-5 — FINAL OVERRIDES (höchste Priorität, am Ende des Files)
   Räumt Konflikte aus älteren Politur-Pässen auf.
   ================================================================= */

/* PRIMARY-Card: dunkel halten — auch bei Hover — KEINE white-Rückfälle mehr */
html body .offer-card.primary,
html body .offer-card.primary:hover {
    background: linear-gradient(180deg, rgba(20,20,28,0.88) 0%, rgba(28,28,40,0.88) 100%) !important;
    color: var(--ink) !important;
    border-color: rgba(91, 168, 201, 0.32) !important;
}
html body .offer-card.primary:hover {
    border-color: rgba(91, 168, 201, 0.55) !important;
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -18px rgba(91, 168, 201, 0.28),
                0 0 0 1px rgba(91, 168, 201, 0.18) inset !important;
}

html body .offer-card.primary h3,
html body .offer-card.primary:hover h3 { color: var(--ink) !important; }

html body .offer-card.primary p,
html body .offer-card.primary:hover p,
html body .offer-card.primary .offer-list li {
    color: var(--ink-soft) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
html body .offer-card.primary .offer-num    { color: var(--accent) !important; background: transparent !important; }
html body .offer-card.primary .offer-icon   { color: var(--accent-soft) !important; }
html body .offer-card.primary .offer-link   { color: var(--accent-soft) !important; }

/* KERN-Label oben: kein heller Kasten mehr, sondern kleines Pill */
.offer-num {
    background: transparent !important;
    padding: 0 !important;
    color: var(--accent) !important;
    font-family: var(--serif);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* "KERN"-Marker (falls als Pill gerendert wurde): subtiler dunkler Pill */
.offer-card .kern-pill,
.offer-card[data-kern]::after {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--accent);
    background: rgba(91, 168, 201, 0.12);
    border: 1px solid rgba(91, 168, 201, 0.25);
    border-radius: 4px;
    text-transform: uppercase;
}

/* Sicherheit: Alle Cards beim Hover NIEMALS hell werden */
html body .offer-card:hover,
html body .principle:hover,
html body .team-card:hover,
html body .format-card:hover {
    background: rgba(22, 22, 32, 0.88) !important;
    color: var(--ink) !important;
}
html body .offer-card:hover h3,
html body .principle:hover h3,
html body .team-card:hover h3 { color: var(--ink) !important; }
html body .offer-card:hover p,
html body .principle:hover p,
html body .team-card:hover p { color: var(--ink-soft) !important; }

/* Offer-Icon (das Symbol oben links): einheitlich Cyan, kein heller Kasten */
.offer-icon {
    background: transparent !important;
    padding: 0 !important;
    color: var(--accent) !important;
    margin-bottom: 1.2rem;
}
.offer-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; }

/* Sicher-stellen: alle h3 in Cards bleiben hell-weiß (war stellenweise grau) */
html body .offer-card h3,
html body .principle h3,
html body .format-card h3,
html body .team-card h3,
html body .faq-item summary {
    color: var(--ink) !important;
}

/* Sicherheit: Section "section-head" hat keine versehentliche helle Background */
.section-head, .section-head .h2, .section-head .kicker,
.section-head .section-lead {
    background: transparent !important;
}

/* Trust-Item-Zahlen: Cyan ja, aber nicht zu Neon */
.trust-item b { color: var(--accent) !important; }

/* =================================================================
   v-DYN-6 — Responsive Final-Politur
   Tablet (720-1080), Mobile (<720) — alle Breakpoints sauber
   ================================================================= */

/* TABLET — zwischen Mobile und Desktop */
@media (min-width: 721px) and (max-width: 1080px) {
    .hero-headline {
        font-size: clamp(2.4rem, 5vw, 3.8rem);
    }
    .nav-inner {
        padding: 0.7rem 1.25rem;
    }
    .tabs { gap: 0.3rem; }
    .tab { font-size: 0.86rem; padding: 0.5rem 0.7rem; }
    .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
    .section { padding: 4rem 1.5rem; }
    .section-head { margin-bottom: 3rem; }
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
    .principle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .video-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* MOBILE FINAL */
@media (max-width: 720px) {
    /* Hero — kleinere Headline, mehr Atem */
    .hero-headline {
        font-size: clamp(2rem, 8.5vw, 2.6rem);
        line-height: 1.1;
    }
    .hero-fullbleed { padding: 6rem 1.25rem 5rem; }
    .lead { font-size: 0.96rem; line-height: 1.65; }

    /* Nav: Burger-Menü */
    .nav-inner { padding: 0.6rem 1rem; }
    .logo-text { font-size: 1rem; }
    .nav-cta { display: none; }  /* CTA passt nicht in Mobile-Header */

    /* Tabs in mobiles Burger-Panel — seitlich rein */
    .tabs.open {
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        width: min(280px, 75vw);
        background: rgba(8, 8, 11, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 1rem;
        border-left: 1px solid var(--line);
        z-index: 100;
    }
    .tabs.open .tab {
        width: 100%;
        text-align: left;
        padding: 1rem 0.8rem;
        font-size: 1rem;
        border-radius: 6px;
    }
    .tabs.open .tab.active::after {
        left: 0.8rem;
        right: auto;
        bottom: 0.5rem;
        width: 24px;
    }

    /* Section / Spacing */
    .section { padding: 3.5rem 1.25rem; }
    .section-head { margin-bottom: 2rem; }
    .page-hero { padding: 4.5rem 1.25rem 2rem; }

    /* Cards: mehr Padding-Inhalt, alles auf 1 Spalte */
    .offer-grid,
    .principle-grid,
    .team-grid,
    .format-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .offer-card, .principle, .team-card, .format-card {
        padding: 1.6rem 1.3rem !important;
    }

    /* Video-Embed */
    .video-wrap { grid-template-columns: 1fr !important; gap: 1.5rem; }

    /* Two-col -> 1-col */
    .two-col { grid-template-columns: 1fr !important; gap: 2rem; }

    /* CTA-Band */
    .cta-band { padding: 2.2rem 1.25rem !important; }
    .cta-band h2 { font-size: 1.4rem; }
    .cta-band p { font-size: 0.94rem; }

    /* Forms */
    .booking-form { gap: 1rem; }
    .booking-form input,
    .booking-form textarea,
    .booking-form select {
        font-size: 16px !important; /* iOS verhindert Auto-Zoom bei <16px */
    }
    .booking-form .chip { font-size: 0.85rem; padding: 0.45rem 0.8rem; }

    /* Footer auf 1-Spalte */
    .footer-inner {
        grid-template-columns: 1fr !important;
        padding: 0 1.25rem 2rem;
        gap: 2rem;
    }
    .footer { padding: 3rem 0 0 !important; }

    /* Touch-Target Sicherheit: alle Buttons + Tabs ≥ 44px */
    .tab, .btn, .nav-cta, .nav-burger,
    .faq-item summary,
    .booking-form button,
    .to-top {
        min-height: 44px;
    }

    /* Trust-Items: Wrapping erlauben */
    .trust { gap: 1.5rem; flex-wrap: wrap; }
    .trust-item { min-width: 30%; }
    .trust-item b { font-size: 1.7rem; }

    /* Scroll-indicator auf Mobile dezenter */
    .scroll-indicator {
        bottom: 1.2rem;
        font-size: 0.6rem;
    }

    /* Quote-Block kompakter */
    .quote-block { padding: 2.5rem 1rem; }
    .quote-block blockquote { font-size: 1.1rem; }

    /* Testimonial-Grid auf 1 Spalte */
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Hero-Visual ist auf Mobile out (das echte Logo wird ja im Canvas zentral gezeigt) */
    .hero-visual { display: none; }
}

/* SUPER-SMALL Phones (≤ 380px) */
@media (max-width: 380px) {
    .hero-headline {
        font-size: clamp(1.7rem, 9vw, 2.1rem);
    }
    .h2 { font-size: 1.4rem; }
    .lead { font-size: 0.92rem; }
    .section-head { margin-bottom: 1.5rem; }
    .nav-inner { padding: 0.5rem 0.85rem; }
    .logo-text { font-size: 0.92rem; }
}

/* DESKTOP-XL */
@media (min-width: 1440px) {
    .nav-inner, .section, .footer-inner {
        max-width: 1320px;
    }
    .hero-content { max-width: 820px; }
    .hero-headline {
        font-size: clamp(3.5rem, 5.5vw, 6.2rem);
    }
}

/* LANDSCAPE-Mobile (kurzes Hero) */
@media (max-width: 920px) and (max-height: 540px) and (orientation: landscape) {
    .hero-fullbleed {
        align-items: flex-start;
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
    .hero-headline { font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: 1rem; }
    .lead { font-size: 0.88rem; }
    .scroll-indicator { display: none; }
}

/* SAFARI-Fallback für hero-sticky-wrap mit svh */
@supports not (height: 100svh) {
    .hero-sticky-wrap, .hero-fullbleed { min-height: 100vh; }
}

/* Print */
@media print {
    .global-bg, .scroll-indicator, .to-top, .nav-burger { display: none !important; }
    body { background: white !important; color: black !important; }
}

/* =================================================================
   v-DYN-8 — Cookie-Banner + KERN-Badge entfernt + Legal-Polish
   ================================================================= */

/* KERN-Badge: existiert noch im CSS aber wird nicht mehr genutzt — sicher abschalten */
.offer-badge { display: none !important; }

/* Cookie-Banner: schlank, unten, dunkel-glas */
.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    max-width: 720px;
    width: calc(100% - 2.5rem);
    background: rgba(14, 14, 20, 0.95);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: 0 18px 48px -16px rgba(0,0,0,0.6),
                0 0 0 1px rgba(91, 168, 201, 0.12) inset;
    animation: cookieFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
@keyframes cookieFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-inner {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1rem 1.2rem;
}
.cookie-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--ink-soft);
}
.cookie-text strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-accept {
    flex-shrink: 0;
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 0.7rem 1.3rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--sans);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
}
.cookie-accept:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(91, 168, 201, 0.4);
}

/* Mobile: Banner stapelt vertikal */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 0.75rem;
        width: calc(100% - 1.5rem);
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        padding: 0.9rem 1rem;
    }
    .cookie-accept { width: 100%; }
}

/* Legal-Pages styling — bestehende Variablen aus dem Hauptstil wiederverwenden */
.legal-page { color: var(--ink-soft); }

/* =================================================================
   v-DYN-10 — Sprint 2: Cases, Vergleich, Insights, Whitepaper, Newsletter, EN
   ================================================================= */
.case-grid, .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: var(--container);
    margin: 0 auto;
}
.case-card, .insight-card {
    background: rgba(19, 19, 25, 0.78) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.8rem 1.6rem;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.32s ease;
}
.case-card:hover, .insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 168, 201, 0.4);
    box-shadow: 0 18px 40px -16px rgba(91, 168, 201, 0.18);
}
.case-tag, .insight-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    background: rgba(91, 168, 201, 0.12);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}
.case-card h3, .insight-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.25;
}
.case-card p, .insight-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 0.6rem;
}
.case-card p b { color: var(--ink); font-weight: 500; }
.insight-card { display: flex; flex-direction: column; gap: 0.6rem; }
.insight-meta {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
}
.insight-card p { flex: 1; }
.insight-tag {
    display: inline-block;
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(91, 168, 201, 0.3);
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* COMPARE */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    max-width: 1080px;
    margin: 0 auto;
}
.compare-col {
    background: rgba(19, 19, 25, 0.78) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem 1.8rem;
}
.compare-col.compare-swarm {
    border-color: rgba(91, 168, 201, 0.35);
    background: linear-gradient(180deg, rgba(20,20,30,0.85) 0%, rgba(28,30,42,0.85) 100%) !important;
}
.compare-head {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 1.4rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
}
.compare-swarm .compare-head { color: var(--accent); border-bottom-color: rgba(91, 168, 201, 0.3); }
.compare-col ul { list-style: none; padding: 0; }
.compare-col li {
    padding: 0.7rem 0 0.7rem 1.4rem;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--line-soft);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li::before { content: "—"; position: absolute; left: 0; color: var(--ink-muted); }
.compare-swarm li::before { content: "→"; color: var(--accent); }
.compare-col li b { color: var(--ink); font-weight: 500; }

/* WHITEPAPER */
.whitepaper-band {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.92) 0%, rgba(40, 30, 60, 0.85) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(91, 168, 201, 0.25);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
}
.whitepaper-copy h2 { margin-top: 0.5rem; }
.whitepaper-copy p { color: var(--ink-soft); margin-top: 1rem; line-height: 1.6; }
.whitepaper-form { display: flex; flex-direction: column; gap: 0.8rem; }
.whitepaper-form input {
    padding: 0.95rem 1.1rem;
    background: rgba(8,8,11,0.6) !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    color: var(--ink) !important;
    font-size: 1rem;
    font-family: var(--sans);
}
.whitepaper-form input:focus {
    outline: none;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(91, 168, 201, 0.18);
}
.whitepaper-form button { padding: 0.95rem 1.6rem !important; width: 100%; cursor: pointer; }
.whitepaper-note { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.45; margin-top: 0.4rem; }
.whitepaper-note a { color: var(--accent); text-decoration: underline; }

/* NEWSLETTER */
.newsletter-band {
    padding: 5rem 1.5rem 4rem;
    border-top: 1px solid var(--line-soft);
    background: rgba(10, 10, 14, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}
.newsletter-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.newsletter-copy h2 { margin-top: 0.4rem; }
.newsletter-copy p { color: var(--ink-soft); margin-top: 0.8rem; line-height: 1.6; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 0.6rem; }
.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem !important;
    background: rgba(8,8,11,0.6) !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    color: var(--ink) !important;
    font-family: var(--sans);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent) !important; box-shadow: 0 0 0 3px rgba(91, 168, 201, 0.18); }
.newsletter-form button { padding: 0.85rem 1.4rem !important; cursor: pointer; white-space: nowrap; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* LANG-SWITCH */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0 0.6rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.lang-link {
    color: var(--ink-muted);
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}
.lang-link.active, .lang-link[aria-current="true"] { color: var(--accent); }
.lang-link:hover { color: var(--ink); }
.lang-divider { color: var(--ink-muted); opacity: 0.5; }

/* RESPONSIVE für neue Elemente */
@media (max-width: 1080px) {
    .case-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .whitepaper-band { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 720px) {
    .case-grid, .insights-grid, .compare-grid { grid-template-columns: 1fr !important; }
    .whitepaper-band { padding: 2rem 1.5rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
    .lang-switch { display: none; }
}
@media (max-width: 600px) {
    .compare-col { padding: 1.5rem 1.2rem; }
}

/* =================================================================
   v-DYN-11 — Dropdown-Nav "Leistungen"
   ================================================================= */
.tab-dropdown {
    position: relative;
    display: inline-block;
}
.tab-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}
.dropdown-caret {
    font-size: 0.7em;
    transition: transform 0.25s ease;
    color: var(--ink-muted);
}
.tab-dropdown.open .dropdown-caret,
.tab-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Active-Indikator wenn ein Sub-Tab aktiv ist */
.tab-dropdown.has-active > .tab-dropdown-trigger {
    color: var(--ink) !important;
    font-weight: 500;
}
.tab-dropdown.has-active > .tab-dropdown-trigger::after {
    content: "";
    position: absolute;
    left: 0.9rem; right: 0.9rem;
    bottom: -2px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Menü selbst */
.tab-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 280px;
    background: rgba(14, 14, 20, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 40px -12px rgba(0,0,0,0.6),
                0 0 0 1px rgba(91, 168, 201, 0.08) inset;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
}
.tab-dropdown:hover .tab-dropdown-menu,
.tab-dropdown.open .tab-dropdown-menu,
.tab-dropdown:focus-within .tab-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Hover-Schutz: nach Sub-Tab-Klick kurz alle Open-Trigger neutralisieren,
   sonst hält der Cursor das Menü via :hover weiterhin offen */
.tab-dropdown.just-clicked .tab-dropdown-menu,
.tab-dropdown.just-clicked:hover .tab-dropdown-menu,
.tab-dropdown.just-clicked:focus-within .tab-dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(-8px) !important;
}

/* Sub-Tab innerhalb Dropdown — andere Optik als Top-Level Tab */
.tab-sub {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    text-align: left;
    padding: 0.7rem 0.9rem !important;
    border-radius: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--ink-soft);
    transition: background 0.18s ease, color 0.18s ease;
    width: 100%;
    min-height: auto;
}
.tab-sub::after { display: none !important; }
.tab-sub:hover {
    background: rgba(91, 168, 201, 0.1);
    color: var(--ink) !important;
}
.tab-sub.active {
    background: rgba(91, 168, 201, 0.12);
    color: var(--accent) !important;
}
.tab-sub-title {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink);
}
.tab-sub-desc {
    font-size: 0.75rem;
    color: var(--ink-muted);
    line-height: 1.3;
}
.tab-sub.active .tab-sub-title { color: var(--accent); }

/* Mobile: Dropdown wird zu einem flachen Stack im Burger-Menü */
@media (max-width: 720px) {
    .tab-dropdown {
        display: contents;
    }
    .tab-dropdown-trigger {
        display: none;  /* Header zeigt nur die echten Tabs */
    }
    .tab-dropdown-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 0;
        min-width: 0;
    }
    .tab-sub {
        padding: 1rem 0.8rem !important;
        border-radius: 6px;
    }
    .tab-sub-desc { display: none; } /* mobile: nur Titel */
}

/* ========== ARTICLE-PAGES (Insights/-Ordner) ========== */
/* Outer-Wrapper hält Abstand vom Header, kein eigener Background */
.article-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 6rem 1.25rem 4rem;
    position: relative;
    z-index: 1;
}
/* Lese-Karte: solider, leicht transparenter Hintergrund mit Blur — Particles
   schimmern durch, aber Text bleibt ruhig und klar lesbar. */
.article-page .article {
    background: rgba(12, 12, 18, 0.88);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 3.5rem 3rem;
    box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(91, 168, 201, 0.05) inset;
}
/* Article-Nav am Ende: gleiche Optik wie die Reader-Card, eigener Container */
.article-page .article-nav {
    margin-top: 2rem;
}
.article-page .article-back {
    margin-bottom: 1.2rem;
}
@media (max-width: 720px) {
    .article-page .article {
        padding: 2.2rem 1.4rem;
        border-radius: 10px;
    }
    .article-page { padding: 5rem 0.9rem 3rem; }
}
@media (max-width: 380px) {
    .article-page .article {
        padding: 1.8rem 1.1rem;
    }
}
.article-back {
    display: inline-block;
    margin-bottom: 2.5rem;
    color: var(--ink-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.article-back:hover { color: var(--accent); }
.article-meta {
    color: var(--ink-muted);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.article-title {
    font-family: var(--serif);
    font-weight: 350;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.article-lead {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 3rem;
    border-left: 2px solid var(--accent);
    padding-left: 1.2rem;
}
.article h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--ink);
    margin-top: 2.8rem;
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}
.article h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent);
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}
.article p {
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.1rem;
}
.article p b, .article li b { color: var(--ink); font-weight: 500; }
.article ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}
.article li {
    color: var(--ink-soft);
    padding: 0.5rem 0 0.5rem 1.4rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.96rem;
}
.article li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}
.article a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.18s ease;
}
.article a:hover { color: var(--accent-soft); }
.article-cta {
    margin-top: 3rem;
    padding: 1.4rem 1.5rem;
    background: rgba(91, 168, 201, 0.08);
    border-left: 2px solid var(--accent);
    border-radius: 4px;
    font-size: 0.96rem !important;
}

/* Article-Navigation unten */
.article-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}
.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 1.2rem;
    background: rgba(19, 19, 25, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none !important;
    transition: border-color 0.2s, transform 0.2s;
    flex: 1;
}
.article-nav-prev { text-align: left; }
.article-nav-next { text-align: right; }
.article-nav-prev:hover, .article-nav-next:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.article-nav-prev span, .article-nav-next span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.article-nav-prev strong, .article-nav-next strong {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .article-nav { flex-direction: column; }
    .article-page { padding: 5rem 1.25rem 3rem; }
}

/* Insight-Card als Link statt Button */
.insight-card {
    text-decoration: none !important;
    color: inherit;
}
.insight-link {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 0.5rem;
    transition: gap 0.2s ease;
}
.insight-card:hover .insight-link {
    color: var(--accent-soft);
}

/* =================================================================
   v-DYN-15 — Mobile-Politur Insights & Article-Nav
   ================================================================= */

/* Article-CTA: auf Mobile etwas mehr Atem */
@media (max-width: 600px) {
    .article-cta {
        padding: 1.2rem 1.1rem !important;
        font-size: 0.92rem !important;
    }
    /* Article-Nav: im Column-Layout sollen beide Seiten links-bündig stehen */
    .article-nav-prev,
    .article-nav-next {
        text-align: left !important;
    }
    /* Article-Lead: auf Mobile kleinerer Padding-Left */
    .article-lead {
        padding-left: 0.9rem;
        font-size: 1.05rem;
    }
    /* Article-Title: noch kleiner auf engsten Bildschirmen */
    .article-title {
        font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    }
    /* Article-Body: H2 etwas kompakter */
    .article h2 {
        font-size: 1.35rem;
        margin-top: 2.2rem;
    }
}

/* Insight-Cards auf Tablet (2-Col) und Mobile (1-Col) — Padding ein wenig anpassen */
@media (max-width: 1080px) and (min-width: 721px) {
    .insight-card {
        padding: 1.6rem 1.4rem;
    }
}
@media (max-width: 720px) {
    .insight-card {
        padding: 1.5rem 1.25rem;
    }
    .insight-card h3 {
        font-size: 1.1rem;
    }
    /* Insights-Grid: etwas weniger Gap auf Mobile */
    .insights-grid, .case-grid {
        gap: 1rem !important;
    }
}

/* Touch-Target-Sicherheit auch bei Insight-Card-Link (≥ 44px Touch-Höhe) */
@media (max-width: 720px) {
    .insight-link {
        padding: 0.6rem 0;
        margin-top: 0.4rem;
    }
}

/* Backdrop-Blur auf älteren Mobile-Browsern: Fallback dunkler Hintergrund */
@supports not (backdrop-filter: blur(24px)) {
    .article-page .article {
        background: rgba(8, 8, 12, 0.96) !important;
    }
    .tab-dropdown-menu {
        background: rgba(8, 8, 12, 0.98) !important;
    }
}

/* iOS Safe-Area-Insets respektieren (Notch/Home-Bar) */
@supports (padding: env(safe-area-inset-bottom)) {
    .nav-inner {
        padding-left: max(1.6rem, env(safe-area-inset-left));
        padding-right: max(1.6rem, env(safe-area-inset-right));
    }
    .footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
    @media (max-width: 720px) {
        .article-page {
            padding-bottom: calc(3rem + env(safe-area-inset-bottom));
        }
    }
}

/* =================================================================
   v-DYN-16 — Case-Cards als Links (klickbar)
   ================================================================= */
a.case-card {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
a.case-card .insight-link {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 0.3rem;
}
a.case-card:hover .insight-link {
    color: var(--accent-soft);
}

/* =================================================================
   v-DYN-17 — Mobile Burger-Menü, vollständig überarbeitet
   Probleme zuvor: Container-Höhe nur 62px, display:contents brach
   das Layout der Sub-Tabs, Schrift schlecht lesbar.
   Lösung: alle Position-Werte mit !important, .tab-dropdown als
   sichtbarer Flex-Container, deutlich kontrastreiche Schrift.
   Fix v-dyn-28: Breakpoint 720 -> 980. Der Burger ist bereits ab
   <=980px sichtbar; zuvor war das Panel im Bereich 721-980px
   durchsichtig (Seite schien durch das Menü). Block ist rein
   menü-spezifisch, keine Layout-Nebenwirkungen.
   ================================================================= */
@media (max-width: 980px) {
    /* Fix: .nav hat z-index:50 + backdrop-filter -> eigener Stacking-
       Context. Das Menü-Panel (z-index:100) stackt damit im Body-
       Kontext nur auf Level 50. Der Backdrop (body::before, z-index:99)
       überdeckt sonst die gesamte Navi inkl. Panel = schwarzer
       Bildschirm. .nav z-index hochziehen, damit Panel über Backdrop. */
    .nav { z-index: 200 !important; }

    /* Burger-Menü-Panel — vollständige Position + Optik */
    .tabs.open {
        position: fixed !important;
        top: 60px !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        width: min(320px, 85vw) !important;
        height: calc(100vh - 60px) !important;
        max-height: calc(100dvh - 60px) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        padding: 0.6rem 0.9rem 2rem !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        background: #08080B !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
        box-shadow: -16px 0 40px -12px rgba(0, 0, 0, 0.7) !important;
        z-index: 100 !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
    }

    /* Top-Level-Tabs */
    .tabs.open .tab {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        font-family: var(--sans);
        font-size: 1.05rem !important;
        font-weight: 500 !important;
        color: var(--ink) !important;
        padding: 0.95rem 1rem !important;
        border-radius: 8px;
        background: transparent !important;
        border: 1px solid transparent !important;
        transition: background 0.18s ease, color 0.18s ease;
        min-height: 44px;
    }
    .tabs.open .tab:hover,
    .tabs.open .tab:focus-visible {
        background: rgba(91, 168, 201, 0.10) !important;
        color: var(--accent) !important;
    }
    .tabs.open .tab.active {
        background: rgba(91, 168, 201, 0.16) !important;
        color: var(--accent) !important;
        border-color: rgba(91, 168, 201, 0.25) !important;
    }
    .tabs.open .tab.active::after { display: none; }

    /* Dropdown-Wrapper auf Mobile: sichtbarer Flex-Container statt display:contents.
       Dadurch werden Sub-Tabs sichtbar und LEISTUNGEN-Header lässt sich anhängen. */
    .tabs.open .tab-dropdown {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.1rem !important;
        position: static !important;
        margin: 0.6rem 0 0.4rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .tabs.open .tab-dropdown::before {
        content: "LEISTUNGEN";
        display: block;
        font-family: var(--sans);
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        color: var(--brass);
        font-weight: 600;
        padding: 0.4rem 1rem 0.4rem;
        opacity: 0.85;
    }
    /* Trigger im Burger ausblenden (Sub-Tabs sind direkt sichtbar) */
    .tabs.open .tab-dropdown-trigger { display: none !important; }

    /* Dropdown-Menu auf Mobile: kein eigener Container mehr */
    .tabs.open .tab-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 0.1rem !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Sub-Tabs (Crowd-Prinzip / Beratung / KI) */
    .tabs.open .tab-sub {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.85rem 1rem 0.85rem 1.6rem !important;
        text-align: left !important;
        background: transparent !important;
        border: none !important;
        border-radius: 6px;
        color: var(--ink-soft) !important;
        font-family: var(--sans);
        position: relative;
        min-height: 44px;
        width: 100%;
    }
    .tabs.open .tab-sub::before {
        content: "·";
        position: absolute;
        left: 0.7rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--brass);
        font-size: 1.4rem;
        opacity: 0.6;
    }
    .tabs.open .tab-sub:hover,
    .tabs.open .tab-sub:focus-visible {
        background: rgba(91, 168, 201, 0.10) !important;
        color: var(--ink) !important;
    }
    .tabs.open .tab-sub.active {
        background: rgba(91, 168, 201, 0.16) !important;
    }
    .tabs.open .tab-sub.active::before { color: var(--accent); opacity: 1; }
    .tabs.open .tab-sub-title {
        font-family: var(--sans) !important;
        font-size: 0.98rem !important;
        font-weight: 500 !important;
        color: var(--ink) !important;
    }
    .tabs.open .tab-sub.active .tab-sub-title { color: var(--accent) !important; }
    .tabs.open .tab-sub-desc { display: none !important; }

    /* "Trennlinie" nach Leistungen vor Insights */
    .tabs.open .tab-dropdown + .tab {
        margin-top: 0.6rem;
        padding-top: 0.95rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 8px;
    }

    /* Burger-Icon → X bei aktivem Menü */
    .nav-burger span {
        transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
                    opacity 0.18s ease;
    }
    .nav-burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .nav-burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Backdrop hinter Burger-Menü — kräftig, damit die Seite klar
       hinter dem Menü verschwindet (auch ohne backdrop-filter-Support). */
    body:has(.tabs.open)::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 99;
        pointer-events: none;
    }
}

@media (max-width: 380px) {
    .tabs.open {
        width: min(295px, 88vw) !important;
        padding: 1.2rem 0.9rem 1.6rem !important;
    }
    .tabs.open .tab {
        font-size: 1rem !important;
        padding: 0.85rem 0.9rem !important;
    }
    .tabs.open .tab-sub {
        padding: 0.78rem 0.9rem 0.78rem 1.5rem !important;
    }
    .tabs.open .tab-sub-title {
        font-size: 0.94rem !important;
    }
}
