/* ===== Design-4: Glow & Glass – New Structure ===== */
/* Leadnet … more than expected | Frank Bormann | LN-2026-IFCON */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/inter-latin-700-normal.woff2') format('woff2'); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #332D97; --primary-glow: rgba(51,45,151,.6);
    --accent: #E8AF0F; --accent-glow: rgba(232,175,15,.5);
    --bg: #08091a;
    --bg-card: rgba(255,255,255,.04); --bg-card-hover: rgba(255,255,255,.08);
    --border-glass: rgba(255,255,255,.08);
    --text: #e2e8f0; --text-muted: #94a3b8; --text-dim: #64748b;
    --white: #ffffff;
    --radius: 20px; --radius-lg: 28px;
    --transition: .35s cubic-bezier(.25,.46,.45,.94);
}
[data-theme="light"] {
    --bg: #f0f2fa;
    --bg-card: rgba(255,255,255,.65); --bg-card-hover: rgba(255,255,255,.85);
    --border-glass: rgba(255,255,255,.5);
    --text: #1a1e2e; --text-muted: #4b5563; --text-dim: #6b7280;
}

html { scroll-behavior: smooth; font-size: 16px; }
section[id] { scroll-margin-top: 90px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-muted); line-height: 1.75;
    background: var(--bg); overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background .5s ease, color .5s ease;
}
a { text-decoration: none; color: inherit; transition: color .3s ease; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Loader ===== */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-img { max-width: 280px; max-height: 280px; border-radius: 20px; box-shadow: 0 0 40px var(--accent-glow); }

/* ===== Animated BG ===== */
.liquid-bg { position: fixed; inset: 0; z-index: -1; background: var(--bg); overflow: hidden; transition: background .5s ease; }
.liquid-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; will-change: transform; }
.blob-1 { width: 700px; height: 700px; background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%); top: -15%; right: -10%; animation: drift1 20s ease-in-out infinite; }
.blob-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); bottom: -10%; left: -12%; animation: drift2 25s ease-in-out infinite; }
.blob-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,.3) 0%, transparent 70%); top: 45%; left: 50%; animation: drift3 18s ease-in-out infinite; }
.blob-4 { width: 450px; height: 450px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); top: 20%; left: 10%; animation: drift1 22s ease-in-out infinite reverse; }
.blob-5 { width: 400px; height: 400px; background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%); bottom: 20%; right: 15%; animation: drift2 16s ease-in-out infinite reverse; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(80px,-100px) scale(1.15)} 66%{transform:translate(-60px,70px) scale(.9)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(-70px,50px) scale(1.1)} 50%{transform:translate(90px,-40px) scale(.95)} 75%{transform:translate(-40px,-70px) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,-60px) scale(1.2)} }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(8,9,26,.5); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%); border-bottom: 1px solid var(--border-glass); transition: all .3s ease; }
[data-theme="light"] .navbar { background: rgba(240,242,250,.6); }
.navbar.scrolled { background: rgba(8,9,26,.75); box-shadow: 0 0 30px rgba(51,45,151,.15); }
[data-theme="light"] .navbar.scrolled { background: rgba(240,242,250,.82); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 100px; }
.nav-logo img { height: 80px; width: auto; object-fit: contain; filter: drop-shadow(0 0 8px var(--primary-glow)); }
.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-link { padding: 10px 18px; border-radius: 12px; font-size: 1.05rem; font-weight: 600; color: var(--text-muted); transition: all .3s ease; }
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(232,175,15,.08); text-shadow: 0 0 12px var(--accent-glow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all .3s ease; }

/* ===== Glass Card Base ===== */
.glass-card {
    background: var(--bg-card); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--border-glass); border-radius: var(--radius-lg); transition: all var(--transition);
    position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(232,175,15,.2), rgba(51,45,151,.2), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none; opacity: 0; transition: opacity .4s ease;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover { background: var(--bg-card-hover); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(51,45,151,.12), 0 0 30px rgba(51,45,151,.06); }

/* ===== HERO: Split Layout ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

.hero-text { position: relative; z-index: 1; }
.intro-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 26px; border-radius: 100px;
    background: rgba(232,175,15,.1); color: var(--accent);
    font-size: .95rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
    margin-bottom: 32px; border: 1px solid rgba(232,175,15,.2);
    box-shadow: 0 0 20px rgba(232,175,15,.1);
}
.hero-text h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; color: var(--white);
    line-height: 1.08; margin-bottom: 24px; letter-spacing: -.04em;
}
[data-theme="light"] .hero-text h1 { color: var(--text); }
.hero-text h1 .highlight { color: var(--accent); text-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(232,175,15,.2); }
.hero-sub { font-size: 1.1rem; color: var(--text-dim); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.glow-orb {
    position: absolute; width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(40px); animation: pulse 4s ease-in-out infinite;
}
.glow-ring {
    position: absolute; width: 420px; height: 420px; border-radius: 50%;
    border: 2px solid rgba(232,175,15,.15);
    box-shadow: 0 0 30px var(--accent-glow), inset 0 0 30px rgba(232,175,15,.05);
    animation: spin 20s linear infinite;
}
.hero-rotator {
    position: relative; z-index: 2;
    font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
    color: var(--accent); text-align: center;
    text-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(232,175,15,.15);
    min-height: 1.2em;
}
[data-theme="light"] .hero-rotator {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}
[data-theme="light"] .glow-orb {
    background: radial-gradient(circle, rgba(51,45,151,.2) 0%, transparent 70%);
    opacity: .8;
}
.rotator-word {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}
.rotator-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.rotator-word.out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.85);
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.15);opacity:.7} }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ===== STATS BANNER ===== */
.stats-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(51,45,151,.15), rgba(232,175,15,.08));
    border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.stats-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.8rem; font-weight: 700; color: var(--accent); letter-spacing: -.03em; text-shadow: 0 0 20px var(--accent-glow); }
.stat-label { font-size: .9rem; color: var(--text-dim); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 60px; background: var(--border-glass); }

/* ===== ABOUT: Split ===== */
.about-section { padding: 120px 0; }
.about-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.about-left .section-title { margin-bottom: 28px; }
.about-left p { margin-bottom: 18px; font-size: 1.02rem; color: var(--text-muted); line-height: 1.85; }
.about-right { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 120px; }
.about-card { padding: 32px; }
.about-card-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(232,175,15,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-card-icon svg { width: 24px; height: 24px; }
.about-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
[data-theme="light"] .about-card h3 { color: var(--text); }
.about-card p { font-size: .9rem; color: var(--text-dim); }

/* ===== SERVICES: Bento Grid ===== */
.services-section { padding: 120px 0; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -.035em; text-wrap: balance; }
[data-theme="light"] .section-title { color: var(--text); }
.section-subtitle { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 56px; font-weight: 500; }

.bento-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.bento-large { grid-row: 1 / 3; }
.bento-card { padding: 40px 32px; }
.bento-card .service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(232,175,15,.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; box-shadow: 0 0 16px rgba(232,175,15,.08);
    transition: all var(--transition);
}
.bento-card:hover .service-icon { background: var(--accent); color: #1a1600; box-shadow: 0 0 30px var(--accent-glow); }
.bento-card .service-icon svg { width: 26px; height: 26px; }
.bento-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -.02em; }
[data-theme="light"] .bento-card h3 { color: var(--text); }
.bento-card p { font-size: .93rem; color: var(--text-dim); line-height: 1.75; }
.card-link { display: inline-block; margin-top: 20px; color: var(--accent); font-weight: 700; font-size: .9rem; transition: all .3s ease; }
.card-link:hover { text-shadow: 0 0 12px var(--accent-glow); }

/* Card mit Link = komplett klickbar */
.glass-card:has(.card-link) { cursor: pointer; }

/* ===== PHILOSOPHY ===== */
.philosophy-section { padding: 120px 0 80px; }
.philosophy-quote {
    max-width: 700px; margin: 0 auto 48px; text-align: center;
    font-size: 1.15rem; font-style: italic; color: var(--text-muted); line-height: 1.8;
    padding: 32px; border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--bg-card);
}
.scroll-track {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; padding: 0;
}
.scroll-card {
    padding: 28px 24px;
    display: flex; gap: 16px; align-items: flex-start;
    text-decoration: none; color: inherit; cursor: pointer;
}
.scroll-card:hover { transform: translateY(-4px); box-shadow: 0 0 30px var(--accent-glow), 0 12px 32px rgba(232,175,15,.1); border-color: rgba(232,175,15,.2); }
.scroll-card p { font-size: .9rem; color: var(--accent); line-height: 1.7; font-weight: 500; transition: color .3s ease; }
.scroll-card:hover p { color: var(--accent); }
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f0c040); color: #1a1600;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem; flex-shrink: 0;
    box-shadow: 0 0 16px var(--accent-glow);
}

/* ===== CONTACT: Full-Width CTA ===== */
.contact-section { padding: 120px 0; }
.contact-banner.glass-card {
    padding: 56px 48px; display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap; margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(51,45,151,.2), rgba(232,175,15,.08));
    border: 1px solid rgba(51,45,151,.2);
}
.contact-banner:hover { box-shadow: 0 0 60px rgba(51,45,151,.15), 0 20px 50px rgba(0,0,0,.1); }
.contact-banner h2 { font-size: 1.8rem; font-weight: 700; color: var(--white); letter-spacing: -.03em; margin-bottom: 8px; }
[data-theme="light"] .contact-banner h2 { color: var(--text); }
.contact-banner-text > p { color: var(--text-dim); font-size: 1rem; margin-bottom: 20px; }
.contact-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-inline { display: flex; gap: 28px; flex-wrap: wrap; }
.contact-inline-item { display: flex; align-items: center; gap: 10px; }
.contact-inline-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-inline-item a { font-size: .95rem; color: var(--white); font-weight: 600; }
[data-theme="light"] .contact-inline-item a { color: var(--text); }
.contact-inline-item a:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }

.contact-address {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 20px; text-align: center;
    color: var(--text-dim); font-size: .9rem;
}
.contact-address svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-address p { margin: 0; }

/* ===== FOOTER: Compact ===== */
.footer { background: rgba(4,5,14,.8); backdrop-filter: blur(12px); border-top: 1px solid var(--border-glass); padding: 32px 0; }
[data-theme="light"] .footer { background: #0a0e1a; }
.footer-compact { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-logo { height: 32px; width: auto; object-fit: contain; }
.footer-left p { font-size: .88rem; color: #94a3b8; }
.footer-center { display: flex; gap: 24px; }
.footer-center a { font-size: .88rem; color: #94a3b8; font-weight: 600; transition: color .3s ease; }
.footer-center a:hover { color: var(--accent); }
.footer-right { text-align: right; }
.footer-right p { font-size: .85rem; color: #94a3b8; }
.footer-credit { margin-top: 4px; font-size: .78rem; opacity: .7; }
.footer-credit a { color: #94a3b8; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; border-radius: 14px; font-size: .95rem; font-weight: 700; transition: all var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: #1a1600; box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(232,175,15,.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px var(--accent-glow), 0 8px 24px rgba(232,175,15,.35); }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid rgba(232,175,15,.3); }
.btn-secondary:hover { background: rgba(232,175,15,.08); border-color: rgba(232,175,15,.5); transform: translateY(-3px); box-shadow: 0 0 24px rgba(232,175,15,.15); }
[data-theme="light"] .btn-secondary { color: var(--primary); border-color: rgba(51,45,151,.3); }
[data-theme="light"] .btn-secondary:hover { background: rgba(51,45,151,.06); border-color: rgba(51,45,151,.5); }

/* ===== Theme & Lang Toggle ===== */
.theme-toggle { position: relative; width: 52px; height: 28px; background: rgba(255,255,255,.08); border-radius: 14px; border: 1px solid var(--border-glass); cursor: pointer; padding: 0; margin-left: 14px; transition: all .3s ease; flex-shrink: 0; }
.theme-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); transition: transform .35s cubic-bezier(.4,0,.2,1); }
[data-theme="light"] .theme-toggle { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .theme-toggle::after { transform: translateX(24px); background: var(--primary); box-shadow: 0 0 10px var(--primary-glow); }
.theme-toggle-icon { position: absolute; top: 50%; transform: translateY(-50%); font-size: 13px; line-height: 1; pointer-events: none; }
.theme-toggle-icon.sun { left: 5px; } .theme-toggle-icon.moon { right: 5px; }

.lang-toggle { display: inline-flex; align-items: center; margin-left: 10px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-glass); flex-shrink: 0; }
.lang-toggle a { padding: 6px 14px; font-size: .8rem; font-weight: 700; color: var(--text-dim); transition: all .3s ease; cursor: pointer; }
.lang-toggle a.active { background: var(--primary); color: #fff; box-shadow: 0 0 12px var(--primary-glow); cursor: default; }
.lang-toggle a:focus-visible { outline: 3px solid var(--accent); outline-offset: -2px; }
.lang-toggle a:not(.active):hover { background: rgba(255,255,255,.06); color: var(--accent); }

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Skip Link (a11y) ===== */
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--accent); color: #1a1600;
    padding: 12px 24px; border-radius: 0 0 12px 12px;
    font-weight: 700; font-size: .9rem; z-index: 9999;
    transition: top .3s ease;
}
.skip-link:focus { top: 0; }

/* ===== Focus Styles (a11y) ===== */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
.nav-link:focus-visible { outline-offset: 2px; }

/* ===== Reduced Motion (a11y) ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in { opacity: 1; transform: none; }
    .liquid-blob { animation: none; opacity: .3; }
    .glow-orb, .glow-ring { animation: none; }
    .rotator-word { transition: none; }
    html { scroll-behavior: auto; }
}

/* ===== Legal Pages ===== */
.legal-page { padding: 120px 24px 80px; min-height: 100vh; }
.legal-page h1 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 32px; }
[data-theme="light"] .legal-page h1 { color: var(--text); }
.legal-page h2 { font-size: 1.2rem; font-weight: 600; color: var(--white); margin: 28px 0 12px; }
[data-theme="light"] .legal-page h2 { color: var(--text); }
.legal-page p, .legal-page ul { margin-bottom: 12px; color: var(--text-muted); }
.legal-page ul { padding-left: 24px; }
.legal-page li { margin-bottom: 6px; }
.legal-content { max-width: 800px; margin: 0 auto; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { min-height: 280px; }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-row: auto; }
    .about-split { grid-template-columns: 1fr; }
    .about-right { position: static; flex-direction: row; }
    .scroll-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-container { height: 76px; padding: 0 16px; }
    .nav-logo img { height: 56px; object-fit: contain; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 76px; left: 0; right: 0;
        background: rgba(8,9,26,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px; gap: 4px;
        border-bottom: 1px solid var(--border-glass);
        opacity: 0; visibility: hidden; transform: translateY(-16px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s ease; z-index: 999;
    }
    [data-theme="light"] .nav-menu { background: rgba(240,242,250,.95); }
    .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-link { padding: 14px 18px; font-size: 1rem; display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 110px 0 60px; min-height: auto; }
    .hero-text h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero-visual { min-height: 220px; }
    .glow-orb { width: 200px; height: 200px; }
    .glow-ring { width: 180px; height: 180px; }
    .hero-logo-float { width: 120px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 320px; }

    .stats-row { gap: 24px; }
    .stat-number { font-size: 2rem; }
    .stat-divider { display: none; }

    .about-section, .services-section, .philosophy-section, .contact-section { padding: 80px 0; }
    .about-right { flex-direction: column; }
    .bento-card { padding: 28px 24px; }
    .scroll-track { grid-template-columns: 1fr; }

    .contact-banner { padding: 36px 28px; flex-direction: column; text-align: center; }
    .contact-banner-actions { justify-content: center; }
    .contact-inline { justify-content: center; }
    .contact-address { flex-direction: column; }

    .footer-compact { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; }
    .footer-right { text-align: center; }

    .liquid-blob { filter: blur(60px); opacity: .3; }
    .glass-card { backdrop-filter: blur(12px); }
    .fade-in { transition-duration: .5s; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .intro-badge { font-size: .82rem; padding: 8px 18px; }
}

/* ===== News Page ===== */
.news-page { padding: 140px 0 80px; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card { overflow: hidden; }
.news-card:hover { transform: translateY(-6px); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: 28px; }
.news-date { display: block; font-size: .8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.news-card h2 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.3; }
[data-theme="light"] .news-card h2 { color: var(--text); }
.news-excerpt { font-size: .9rem; color: var(--text-dim); line-height: 1.7; }

/* News Detail View */
.news-detail { max-width: 800px; margin: 0 auto; }
.news-detail h1 { font-size: 2rem; margin: 16px 0 8px; }
.news-detail .news-date { display: block; color: var(--text-dim); font-size: .9rem; margin-bottom: 24px; }
.news-detail-content { line-height: 1.8; font-size: 1.05rem; }
.news-detail-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }
.news-back-link { display: inline-block; color: var(--accent); text-decoration: none; font-weight: 600; margin-bottom: 8px; transition: opacity .2s; }
.news-back-link:hover { opacity: .8; }
.news-card h2 a { color: inherit; text-decoration: none; transition: color .2s; }
.news-card h2 a:hover { color: var(--accent); }

/* News Shortcode Styles */
.news-glass-card { padding: 24px; margin: 16px 0; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border-glass); }
.news-highlight { color: var(--accent); font-weight: 700; }
.news-badge { display: inline-block; padding: 4px 14px; border-radius: 100px; background: rgba(232,175,15,.1); color: var(--accent); font-size: .85rem; font-weight: 700; }
.news-glow { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }

@media (max-width: 768px) {
    .news-page { padding: 110px 0 60px; }
    .news-grid { grid-template-columns: 1fr; }
}

/* ===== Utility Classes ===== */
.link-primary { color: var(--accent); }
.link-primary:hover { text-shadow: 0 0 10px var(--accent-glow); }
.footer-bottom--borderless { border: none; }
.footer-bottom {
    padding: 28px 0; text-align: center;
    font-size: .85rem; color: #94a3b8;
}

/* ===== Philosophy Page ===== */
.philosophy-page { padding: 140px 0 80px; }
.page-header { text-align: center; margin-bottom: 80px; }
.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
    color: var(--white); letter-spacing: -.04em; margin-bottom: 20px;
}
[data-theme="light"] .page-header h1 { color: var(--text); }
.page-intro {
    font-size: 1.12rem; color: var(--text-dim);
    max-width: 740px; margin: 0 auto; line-height: 1.8;
}

.value-section {
    padding: 48px; margin-bottom: 24px;
    scroll-margin-top: 100px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all .35s ease;
}
.value-section:hover {
    background: var(--bg-card-hover);
    box-shadow: 0 16px 48px rgba(51,45,151,.1);
}

.value-header {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 24px;
}
.value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(232,175,15,.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.value-icon svg { width: 26px; height: 26px; }
.value-header h2 {
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); letter-spacing: -.02em;
}
[data-theme="light"] .value-header h2 { color: var(--text); }

.value-body p {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.85; margin-bottom: 14px;
}
.value-body p:last-child { margin-bottom: 0; }

.value-cta {
    text-align: center; padding: 60px 0 20px;
}
.value-cta p {
    font-size: 1.1rem; color: var(--text-dim);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .philosophy-page { padding: 110px 0 60px; }
    .value-section { padding: 32px 24px; }
    .value-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .page-header { margin-bottom: 48px; }
}

/* ===== Training Page ===== */
.training-page { padding: 140px 0 80px; }
.training-intro { padding: 32px 36px; margin-bottom: 32px; }
.training-intro p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; margin: 0; }

.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.training-card { padding: 36px 32px; }
.training-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.training-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.training-icon svg { width: 26px; height: 26px; }
.training-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
[data-theme="light"] .training-card h3 { color: var(--text); }
.training-card p { font-size: .93rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.training-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.training-tags li {
    padding: 4px 12px; border-radius: 8px; font-size: .78rem; font-weight: 600;
    background: rgba(232,175,15,.08); color: var(--accent); border: 1px solid rgba(232,175,15,.12);
}

.workshop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.workshop-card { padding: 32px; }
.workshop-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(232,175,15,.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.workshop-icon svg { width: 22px; height: 22px; }
.workshop-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
[data-theme="light"] .workshop-card h3 { color: var(--text); }
.workshop-card p { font-size: .9rem; color: var(--text-dim); line-height: 1.7; margin: 0; }

.training-cta {
    padding: 48px; text-align: center;
    background: linear-gradient(135deg, rgba(51,45,151,.15), rgba(232,175,15,.06)) !important;
    border: 1px solid rgba(51,45,151,.15) !important;
}
.training-cta h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
[data-theme="light"] .training-cta h2 { color: var(--text); }
.training-cta p { color: var(--text-dim); margin-bottom: 28px; font-size: 1rem; }

@media (max-width: 1024px) {
    .training-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .training-page { padding: 110px 0 60px; }
    .workshop-grid { grid-template-columns: 1fr; }
    .training-cta { padding: 32px 24px; }
}

/* ===== Team Page ===== */
.team-page { padding: 140px 0 80px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.team-card { padding: 0; overflow: hidden; border-radius: var(--radius-lg); }
.team-card:hover { transform: translateY(-6px); }
.team-photo { width: 100%; display: block; }
.team-photo-placeholder { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: rgba(232,175,15,.05); }
.team-info { padding: 24px; flex: 1; overflow: hidden; }
.team-info h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
[data-theme="light"] .team-info h3 { color: var(--text); }
.team-role { color: var(--accent); font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.team-bio { color: var(--text-dim); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.team-bio img { max-width: 100% !important; height: auto !important; width: auto !important; border-radius: 12px; }
.team-bio div { max-width: 100%; }
.team-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.team-contact-link { display: inline-flex; align-items: center; gap: 4px; padding: 6px 14px; border-radius: 8px; font-size: .82rem; font-weight: 600; background: rgba(232,175,15,.08); color: var(--accent); border: 1px solid rgba(232,175,15,.12); text-decoration: none; transition: all .2s; cursor: pointer; }
.team-contact-link:hover { background: rgba(232,175,15,.15); box-shadow: 0 0 10px var(--accent-glow); }
.team-certs { display: flex; flex-wrap: wrap; gap: 6px; }
.team-cert { display: inline-block; padding: 4px 12px; border-radius: 8px; font-size: .78rem; font-weight: 600; background: rgba(232,175,15,.08); color: var(--accent); border: 1px solid rgba(232,175,15,.12); text-decoration: none; transition: all .2s; }
a.team-cert:hover { background: rgba(232,175,15,.15); box-shadow: 0 0 10px var(--accent-glow); }

/* Team Card: Übersicht (gekürzt) */
.team-card { display: flex; flex-direction: column; }
.team-badge {
    display: inline-block; margin-bottom: 8px;
    padding: 4px 12px; border-radius: 100px;
    background: rgba(232,175,15,.1); color: var(--accent);
    font-size: .75rem; font-weight: 700; letter-spacing: .02em;
    border: 1px solid rgba(232,175,15,.15);
}
.team-bio-short { color: var(--text-dim); font-size: .88rem; line-height: 1.6; margin-bottom: 12px; }
.team-info { display: flex; flex-direction: column; }

/* Team Detail: Vollansicht */
.team-detail { max-width: 800px; margin: 0 auto; }
.team-detail h1 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
[data-theme="light"] .team-detail h1 { color: var(--text); }
.team-detail-header { display: flex; gap: 32px; align-items: flex-start; margin: 24px 0 32px; }
.team-detail-photo { width: 200px; height: 200px; border-radius: 20px; object-fit: cover; flex-shrink: 0; }
.team-detail-intro { flex: 1; }
.team-detail-content { line-height: 1.85; font-size: 1.02rem; color: var(--text-muted); }
.team-detail-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 28px 0 10px; }
[data-theme="light"] .team-detail-content h3 { color: var(--text); }
.team-detail-content ul { padding-left: 20px; margin-bottom: 12px; }
.team-detail-content li { margin-bottom: 4px; }
.team-detail-content img { max-width: 100%; height: auto !important; border-radius: 12px; margin: 12px 0; }

@media (max-width: 768px) {
    .team-page { padding: 110px 0 60px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card { display: flex; flex-direction: column; }
    .team-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
    .team-photo-placeholder { width: 100%; aspect-ratio: 4/3; font-size: 3rem; }
    .team-info { padding: 20px; }
    .team-info h3 { font-size: 1.05rem; }
    .team-role { font-size: .82rem; margin-bottom: 8px; }
    .team-bio { font-size: .82rem; margin-bottom: 10px; }
    .team-bio img { width: 100% !important; height: auto !important; max-width: 100% !important; object-fit: contain; }
    .team-info img:not(.team-photo) { width: 100% !important; height: auto !important; max-width: 100% !important; object-fit: contain; }
    .team-detail-header { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .team-detail-photo { width: 160px; height: 160px; }
    .team-detail-content { font-size: .92rem; }
    .team-detail-content img { max-width: 100%; height: auto !important; }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.news-loading { color: var(--text-dim); text-align: center; }

/* ===== 404 Page ===== */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.error-code { font-size: 6rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 16px; text-shadow: 0 0 40px rgba(232,175,15,.3); }
.error-title { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
[data-theme="light"] .error-title { color: var(--text); }
.error-text { color: var(--text-dim); margin-bottom: 32px; max-width: 400px; }

/* ===== Cookie Hint ===== */
.cookie-hint {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
    padding: 14px 24px;
    background: rgba(8,9,26,.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-glass);
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap;
    font-size: .85rem; color: #94a3b8;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.cookie-hint.visible { transform: translateY(0); }
.cookie-hint.hidden { display: none; }
[data-theme="light"] .cookie-hint { background: rgba(240,242,250,.95); color: var(--text-dim); }
.cookie-hint a { color: var(--accent); font-weight: 600; }
.cookie-hint a:hover { text-shadow: 0 0 8px var(--accent-glow); }
.cookie-hint button {
    padding: 8px 20px; border-radius: 8px; border: none; cursor: pointer;
    background: var(--accent); color: #1a1600; font-weight: 700; font-size: .82rem;
    transition: all .2s ease;
}
.cookie-hint button:hover { box-shadow: 0 0 16px var(--accent-glow); }
