/* RA-MICRO Seminare — Public Styles */
/* Editorial Legal Tech — Bricolage Grotesque + Source Serif 4 */

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

:root {
    --primary: #667eea;
    --primary-dark: #764ba2;
    --text: #1c1928;
    --text-body: #4a5568;
    --text-light: #666;
    --bg: #f6f5f1;
    --bg-light: #f0f4ff;
    --white: #fff;
    --border: #e2e8f0;
    --success: #16a34a;
    --error: #dc2626;
    --warning: #f59e0b;
    --info: #2563eb;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --shadow-hover: 0 12px 32px rgba(0,0,0,.15);
    --max-width: 1400px;
    --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
    --font-body: 'Source Serif 4', 'Georgia', serif;
    --dark: #1c1928;
    --off-white: #f6f5f1;
    /* Kategoriefarben */
    --cat-orange: #e67e22;
    --cat-green: #81d742;
    --cat-violet: #8224e3;
    --cat-red: #dd3333;
    --cat-blue: #2980b9;
    --cat-darkblue: #1e73be;
    --cat-yellow: #f1c40f;
    --cat-brown: #dd9933;
    /* Neue Akzentfarben */
    --teal: #06b6d4;
    --coral: #f97316;
    --pink: #ec4899;
    --lime: #84cc16;
    --yellow-accent: #eab308;
    /* Gradient-Kombis */
    --grad-teal-primary: linear-gradient(135deg, #06b6d4, #667eea);
    --grad-primary-pink: linear-gradient(135deg, #667eea, #ec4899);
    --grad-coral-pink: linear-gradient(135deg, #f97316, #ec4899);
    --grad-teal-purple: linear-gradient(135deg, #06b6d4, #764ba2);
    --grad-multi: linear-gradient(135deg, #06b6d4, #667eea, #ec4899);
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.main-content { flex: 1; }

/* ============================================ */
/* === HEADER / NAVIGATION                  === */
/* ============================================ */
.site-header { position: sticky; top: 0; z-index: 100; }

@keyframes rms-grad-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-gradient {
    background: linear-gradient(135deg, rgba(102,126,234,.9) 0%, rgba(118,75,162,.9) 50%, rgba(102,126,234,.9) 100%);
    background-size: 400% 400%;
    animation: rms-grad-shift 12s ease infinite;
    padding: 0 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; max-width: var(--max-width); margin: 0 auto;
}

.logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-text {
    color: #fff; font-size: 22px; font-weight: 700;
    letter-spacing: -.3px; font-family: var(--font-display);
}
.logo-img {
    height: 48px; width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.3));
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(255,255,255,.9); text-decoration: none; font-size: 15px;
    font-weight: 500; transition: color .2s; position: relative;
    padding: 6px 0; font-family: var(--font-display);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: #fff; transform: scaleX(0);
    transition: transform .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-btn {
    background: rgba(255,255,255,.2) !important; padding: 8px 20px !important;
    border-radius: 6px; transition: background .2s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: rgba(255,255,255,.3) !important; }

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 8px;
}
.mobile-menu-btn span {
    width: 24px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .3s;
}

/* ============================================ */
/* === FLASH MESSAGES                       === */
/* ============================================ */
.flash-container { margin-top: 16px; }
.flash {
    padding: 12px 16px; border-radius: 8px; margin-bottom: 8px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; animation: slideDown .3s ease;
}
.flash-success { background: #d4edda; color: #155724; border-left: 4px solid var(--success); }
.flash-error { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--error); }
.flash-warning { background: #fff8e1; color: #92400e; border-left: 4px solid var(--warning); }
.flash-info { background: #eff6ff; color: #1e40af; border-left: 4px solid var(--info); }
.flash-close { background: none; border: none; font-size: 20px; cursor: pointer; color: inherit; opacity: .5; }
.flash-close:hover { opacity: 1; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================ */
/* === REVEAL ANIMATIONS                    === */
/* ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* === HOMEPAGE — SHARED ELEMENTS           === */
/* ============================================ */
.hp-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.hp-label-light { color: rgba(255,255,255,.5); }

.hp-btn-accent {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 4px 20px rgba(102,126,234,.35);
}
.hp-btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(102,126,234,.5);
    color: #fff;
}
.hp-btn-accent.hp-btn-lg {
    padding: 20px 48px;
    font-size: 17px;
}

.hp-btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.3);
    transition: transform .3s, background .3s, border-color .3s;
}
.hp-btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

/* ============================================ */
/* === HOMEPAGE — HERO (Full Viewport Dark) === */
/* ============================================ */
.hp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
    color: #fff;
}
.hp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(6,182,212,.3) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 80%, rgba(236,72,153,.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(118,75,162,.25) 0%, transparent 60%);
    pointer-events: none;
    animation: hp-hue-shift 15s ease-in-out infinite;
}
@keyframes hp-hue-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(25deg); }
}
.hp-hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px 24px;
    text-align: center;
}
.hp-hero-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--teal), var(--primary), var(--pink), transparent) 1;
}
.hp-hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6.5vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: -1px;
}
.hp-hero-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--teal), var(--primary), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin: 0 auto 40px;
}
.hp-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hp-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.35);
    font-family: var(--font-display);
}
.hp-hero-trust-stars {
    color: #fb8e28;
    font-size: 16px;
    letter-spacing: 1px;
}
.hp-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: rgba(255,255,255,.2);
    animation: hp-bounce 2s ease-in-out infinite;
}
@keyframes hp-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================ */
/* === HOMEPAGE — SEMINARTHEMEN (Dark)      === */
/* ============================================ */
.hp-topics {
    background: var(--dark);
    padding: 100px 0;
    color: #fff;
}
.hp-topics-header {
    margin-bottom: 48px;
}
.hp-topics-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
}
.hp-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.hp-topic-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-left: 4px solid var(--accent, var(--primary));
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.hp-topic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent, var(--primary)), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.hp-topic-card:hover::before { opacity: .08; }
.hp-topic-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    border-left-color: var(--accent, var(--primary));
    transform: translateX(4px);
    box-shadow: 0 4px 24px color-mix(in srgb, var(--accent, var(--primary)) 25%, transparent);
    color: #fff;
}
.hp-topic-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--accent, var(--primary));
    background: color-mix(in srgb, var(--accent, var(--primary)) 15%, transparent);
    border-radius: 50%;
    padding: 8px;
}
.hp-topic-icon svg { width: 100%; height: 100%; }
.hp-topic-text { flex: 1; }
.hp-topic-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
.hp-topic-desc {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.5);
    font-family: var(--font-body);
    margin-bottom: 6px;
}
.hp-topic-cta {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    font-family: var(--font-display);
    transition: color .3s;
}
.hp-topic-card:hover .hp-topic-cta {
    color: var(--accent, var(--primary));
}

/* ============================================ */
/* === HOMEPAGE — EDITORIAL (Full-Bleed)    === */
/* ============================================ */
.hp-editorial {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 560px;
    background: var(--off-white);
}
.hp-editorial-img {
    overflow: hidden;
}
.hp-editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp-editorial-text {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hp-editorial-text h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -.5px;
    padding-bottom: 16px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--teal), var(--coral)) 1;
    border-image-width: 0 0 3px 0;
    display: inline-block;
}
.hp-editorial-text .hp-label { color: var(--teal); }
.hp-editorial-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}
.hp-editorial-text .hp-btn-accent {
    align-self: flex-start;
    margin-top: 12px;
}

/* ============================================ */
/* === HOMEPAGE — AKTUELLE TERMINE          === */
/* ============================================ */
.hp-events {
    background: var(--off-white);
    padding: 100px 0;
}
.hp-events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.hp-events-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
}
.hp-events-header .hp-btn-outline {
    color: var(--text);
    border-color: var(--border);
}
.hp-events-header .hp-btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}
.hp-events-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp-event-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all .3s;
    border: 1px solid var(--border);
    border-left: 4px solid var(--card-color, var(--primary));
}
.hp-event-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-2px);
    color: var(--text);
}
.hp-event-date-big {
    min-width: 100px;
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.hp-event-day {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--card-color, var(--primary));
    line-height: 1;
}
.hp-event-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-body);
    margin-top: 4px;
    letter-spacing: .5px;
}
.hp-event-info {
    flex: 1;
    padding: 20px 24px;
}
.hp-event-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--card-color, var(--primary)) 40%, transparent);
}
.hp-event-info h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}
.hp-event-meta {
    font-size: 14px;
    color: var(--text-body);
}
.hp-event-arrow {
    font-size: 20px;
    color: var(--border);
    padding: 20px 24px;
    transition: color .3s, transform .3s;
}
.hp-event-card:hover .hp-event-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ============================================ */
/* === HOMEPAGE — FEATURES (Dark)           === */
/* ============================================ */
.hp-features {
    background: var(--dark);
    padding: 100px 0;
    color: #fff;
}
.hp-features h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.hp-features-intro {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.65);
    max-width: 720px;
    margin-bottom: 48px;
}
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-feature-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-top: 3px solid var(--primary);
    border-radius: 16px;
    padding: 40px 32px;
    text-decoration: none;
    color: #fff;
    transition: all .3s;
}
.hp-feature-card:nth-child(1) { border-top-color: var(--teal); }
.hp-feature-card:nth-child(2) { border-top-color: var(--coral); }
.hp-feature-card:nth-child(3) { border-top-color: var(--pink); }
.hp-feature-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.15);
    transform: translateY(-4px);
    color: #fff;
    backdrop-filter: blur(8px);
}
.hp-feature-card:nth-child(1):hover { border-top-color: var(--teal); }
.hp-feature-card:nth-child(2):hover { border-top-color: var(--coral); }
.hp-feature-card:nth-child(3):hover { border-top-color: var(--pink); }
.hp-feature-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .5;
    margin-bottom: 24px;
}
.hp-feature-card:nth-child(1) .hp-feature-num {
    background: linear-gradient(135deg, var(--teal), var(--primary));
}
.hp-feature-card:nth-child(2) .hp-feature-num {
    background: linear-gradient(135deg, var(--coral), var(--pink));
}
.hp-feature-card:nth-child(3) .hp-feature-num {
    background: linear-gradient(135deg, var(--pink), var(--primary-dark));
}
.hp-feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.hp-feature-card p {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}
.hp-feature-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: color .3s;
}
.hp-feature-card:hover .hp-feature-link {
    color: #a78bfa;
}

/* ============================================ */
/* === HOMEPAGE — ZAHLEN (Gradient-Text)    === */
/* ============================================ */
.hp-numbers {
    padding: 80px 0;
    background: var(--off-white);
}
.hp-numbers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}
.hp-number-item { text-align: center; }
.hp-number-big {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hp-number-item:nth-child(1) .hp-number-big {
    background: linear-gradient(135deg, var(--teal), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
}
.hp-number-item:nth-child(3) .hp-number-big {
    background: linear-gradient(135deg, var(--coral), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
}
.hp-number-item:nth-child(5) .hp-number-big {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
}
.hp-number-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-body);
}
.hp-number-divider {
    width: 2px;
    height: 64px;
    background: linear-gradient(180deg, var(--teal), var(--pink));
    border-radius: 2px;
}

/* ============================================ */
/* === HOMEPAGE — REVIEWS                   === */
/* ============================================ */
.hp-reviews {
    padding: 100px 0;
    background: var(--white);
}
.hp-reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.hp-reviews-top h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
}
.hp-reviews-score {
    text-align: right;
    font-size: 15px;
    color: var(--text-body);
}
.hp-reviews-stars {
    display: block;
    color: #fb8e28;
    font-size: 24px;
    margin-bottom: 4px;
    letter-spacing: 2px;
}
/* Reviews Carousel */
.hp-reviews-carousel {
    position: relative;
    overflow: hidden;
}
.hp-reviews-track {
    display: flex;
    gap: 20px;
    transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.hp-reviews-track .review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    border-top: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s, transform .25s;
}
.hp-reviews-track .review-card:hover {
    border-top-color: var(--primary);
}
.hp-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: all .2s;
}
.hp-reviews-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.hp-reviews-prev { left: -8px; }
.hp-reviews-next { right: -8px; }
.hp-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.hp-reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.hp-reviews-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}
.hp-reviews-dot:hover {
    background: var(--primary-dark);
}

/* ============================================ */
/* === HOMEPAGE — VENUE (Full-Bleed)        === */
/* ============================================ */
.hp-venue {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}
.hp-venue-image {
    position: absolute;
    inset: 0;
}
.hp-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp-venue-overlay {
    position: relative;
    min-height: 480px;
    background: linear-gradient(135deg, rgba(6,182,212,.15), rgba(28,25,40,.85), rgba(118,75,162,.2));
    display: flex;
    align-items: center;
}
.hp-venue-text {
    padding: 80px 64px;
    max-width: 600px;
    color: #fff;
}
.hp-venue-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.hp-venue-text p {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    margin-bottom: 28px;
}

/* ============================================ */
/* === HOMEPAGE — NEWSLETTER (Dark)         === */
/* ============================================ */
.hp-newsletter {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hp-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(6,182,212,.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(118,75,162,.1) 0%, transparent 50%);
    pointer-events: none;
}
.hp-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    color: #fff;
}
.hp-newsletter-text h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.hp-newsletter-text p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
}
.hp-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hp-newsletter-form input {
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: inherit;
    transition: border-color .3s, background .3s;
}
.hp-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.hp-newsletter-form input:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(255,255,255,.1);
}
.hp-newsletter-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}
.hp-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6,182,212,.4);
}

/* ============================================ */
/* === HOMEPAGE — CTA (Huge, Minimal)       === */
/* ============================================ */
.hp-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--off-white);
}
.hp-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--text), var(--primary), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-cta p {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ============================================ */
/* === HOMEPAGE — STAGGER ANIMATIONS       === */
/* ============================================ */
@keyframes hp-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.hp-stagger-in {
    animation: hp-fade-up .5s ease forwards;
    opacity: 0;
}

/* ============================================ */
/* === HERO SECTION (Unterseiten)           === */
/* ============================================ */
.hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--primary) 30%, var(--primary-dark) 70%, var(--primary) 100%);
    background-size: 400% 400%;
    animation: rms-grad-shift 12s ease infinite;
    color: #fff; padding: 80px 20px; text-align: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(6,182,212,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(236,72,153,.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero h1 {
    font-size: 42px; font-weight: 700; margin-bottom: 16px;
    color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.15);
    position: relative; font-family: var(--font-display);
}
.hero p {
    font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto;
    color: #ddd5f5; position: relative;
}
.hero-subtitle {
    font-size: 24px; font-weight: 600;
    color: rgba(255,255,255,.95) !important; opacity: 1 !important;
    margin-bottom: 12px;
}
.hero-buttons {
    margin-top: 32px; display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap; position: relative;
}
.btn-hero-primary {
    display: inline-block; padding: 14px 32px; background: #fff;
    color: var(--primary); font-size: 16px; font-weight: 600;
    border-radius: 8px; text-decoration: none; border: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    font-family: var(--font-display);
}
.btn-hero-primary:hover {
    transform: translateY(-2px); color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.btn-hero-ghost {
    display: inline-block; padding: 14px 32px; background: transparent;
    color: #fff; font-size: 16px; font-weight: 600;
    border-radius: 8px; text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    transition: transform .25s, background .25s, border-color .25s;
    font-family: var(--font-display);
}
.btn-hero-ghost:hover {
    transform: translateY(-2px); background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.8); color: #fff;
}

/* Hero small (Unterseiten-Header) */
.hero-small {
    padding: 48px 20px;
}
.hero-small h1 { font-size: 32px; }

/* ============================================ */
/* === INFO SECTION (Unterseiten)           === */
/* ============================================ */
.info-section {
    background: var(--white); padding: 64px 0;
}
.info-section-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center; max-width: var(--max-width); margin: 0 auto;
}
.info-text h2 {
    font-size: 28px; font-weight: 700; color: var(--text);
    margin-bottom: 16px; font-family: var(--font-display);
}
.info-text p {
    font-size: 15px; line-height: 1.8; color: var(--text-body);
    margin-bottom: 16px;
}
.info-text a.btn { margin-top: 8px; }
.info-image img {
    width: 100%; border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(61,69,146,.15);
}

/* ============================================ */
/* === SECTION                              === */
/* ============================================ */
.section { padding: 64px 0; }
.section-title {
    font-size: 28px; font-weight: 700; margin-bottom: 32px;
    color: var(--text); text-align: center; font-family: var(--font-display);
}
.section-subtitle {
    text-align: center; color: var(--text-body);
    max-width: 600px; margin: -16px auto 32px; font-size: 16px;
}

/* Section auf Gradient-Hintergrund */
.section-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    background-size: 400% 400%;
    animation: rms-grad-shift 12s ease infinite;
    padding: 64px 0;
}
.section-gradient .section-title { color: #fff; }
.section-gradient .section-subtitle { color: rgba(255,255,255,.8); }

/* ============================================ */
/* === SEMINAR EVENT CARDS (5er Grid)       === */
/* ============================================ */
.event-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.event-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer; text-decoration: none; color: var(--text);
    display: flex; flex-direction: column;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.event-card-header {
    padding: 14px 16px; color: #fff;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 600;
}
.event-card-date {
    display: flex; flex-direction: column; align-items: flex-start;
    line-height: 1.2;
}
.event-card-date .day { font-size: 22px; font-weight: 700; font-family: var(--font-display); }
.event-card-date .month { font-size: 12px; text-transform: uppercase; opacity: .9; }
.event-card-type {
    font-size: 11px; text-transform: uppercase; letter-spacing: .5px;
    opacity: .9; text-align: right;
}
.event-card-body { padding: 16px; }
.event-card-title {
    font-size: 15px; font-weight: 600; color: var(--text);
    margin-bottom: 8px; line-height: 1.4; font-family: var(--font-display);
}
.event-card-title a { color: inherit; text-decoration: none; }
.event-card-title a:hover { color: var(--primary); }
.event-card-meta {
    font-size: 13px; color: var(--text-body);
    display: flex; flex-direction: column; gap: 4px;
}
.event-card-meta span { display: flex; align-items: center; gap: 6px; }
.event-card-meta .meta-icon { font-size: 14px; opacity: .7; width: 16px; text-align: center; }

/* ============================================ */
/* === CATEGORY TILES (3er Grid)            === */
/* ============================================ */
.category-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.category-tile {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none; color: var(--text);
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; border-left: 4px solid var(--primary);
    position: relative;
}
.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    color: var(--text);
}
.category-icon {
    width: 48px; height: 48px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.category-content { flex: 1; min-width: 0; }
.category-content h3 {
    font-size: 16px; font-weight: 600; color: var(--text);
    margin-bottom: 4px; font-family: var(--font-display);
}
.category-content p {
    font-size: 13px; color: var(--text-body); line-height: 1.5;
    margin-bottom: 8px;
}
.category-link {
    font-size: 13px; font-weight: 600; color: var(--primary);
    display: inline-flex; align-items: center; gap: 4px;
}
.category-link:hover { color: var(--primary-dark); }
.category-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--bg); padding: 3px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 600; color: var(--text-body);
}

/* ============================================ */
/* === CARDS (generisch)                    === */
/* ============================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    border-left: 4px solid var(--primary);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-body { padding: 20px; }
.card-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); font-family: var(--font-display); }
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--primary); }
.card-meta { font-size: 13px; color: var(--text-body); margin-bottom: 12px; }
.card-meta span { margin-right: 12px; }
.card-text { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.card-footer {
    padding: 14px 20px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
}

/* ============================================ */
/* === BADGES                               === */
/* ============================================ */
.badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
}
.badge-open { background: #d4edda; color: #155724; }
.badge-full { background: #fef2f2; color: #991b1b; }
.badge-cancelled { background: #f3f4f6; color: #6b7280; }
.badge-online { background: #eff6ff; color: #1e40af; }

/* ============================================ */
/* === BUTTONS                              === */
/* ============================================ */
.btn {
    display: inline-block; padding: 10px 22px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    border: none; cursor: pointer; transition: all .25s;
    font-family: var(--font-display);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: #e2e8f0; }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--error); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

.btn-link {
    background: none; border: none; color: var(--primary);
    font-weight: 600; padding: 0; font-size: 14px;
}
.btn-link:hover { color: var(--primary-dark); }

.btn-center { text-align: center; margin-top: 32px; }

/* ============================================ */
/* === FORMS                                === */
/* ============================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); font-family: var(--font-display); }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: 8px; font-size: 15px; font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,.15);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--text-body); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================ */
/* === TABLE                                === */
/* ============================================ */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { text-align: left; font-weight: 600; padding: 12px; border-bottom: 2px solid var(--border); color: var(--text-body); font-size: 13px; font-family: var(--font-display); }
td { padding: 12px; border-bottom: 1px solid var(--border); }
tr:hover td { background: #f8f9fb; }

/* ============================================ */
/* === CALENDAR                             === */
/* ============================================ */
.calendar {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
}
.calendar-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.calendar-header h2 { font-size: 22px; font-weight: 700; font-family: var(--font-display); }
.calendar-nav { display: flex; gap: 8px; }
.calendar-nav a {
    color: #fff; text-decoration: none; padding: 8px 16px;
    background: rgba(255,255,255,.2); border-radius: 6px; font-size: 14px;
    font-weight: 500; transition: background .2s;
}
.calendar-nav a:hover { background: rgba(255,255,255,.3); }
.calendar-body { padding: 24px; }

/* Kalender-Grid (Monat) */
.cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 1px; background: var(--border); border-radius: 8px;
    overflow: hidden; margin-bottom: 32px;
}
.cal-header-cell {
    background: var(--bg); padding: 10px; text-align: center;
    font-size: 13px; font-weight: 600; color: var(--text-body);
    font-family: var(--font-display);
}
.cal-cell {
    background: var(--white); min-height: 90px; padding: 8px;
    position: relative;
}
.cal-cell.other-month { background: #fafafa; }
.cal-cell.today { background: #f0f4ff; }
.cal-day { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cal-event {
    display: block; font-size: 11px; padding: 2px 6px;
    border-radius: 4px; margin-bottom: 2px; color: #fff;
    text-decoration: none; white-space: nowrap; overflow: hidden;
    text-overflow: ellipsis; font-weight: 500;
}
.cal-event:hover { opacity: .85; color: #fff; }

/* Kalender-Legende */
.cal-legend {
    display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
    padding: 16px; background: var(--bg); border-radius: 8px;
}
.cal-legend-item {
    display: flex; align-items: center; gap: 8px; font-size: 13px;
    color: var(--text-body);
}
.cal-legend-dot {
    width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0;
}

/* Event-Liste unter Kalender */
.event-list { margin-top: 32px; }
.event-list-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 20px; font-family: var(--font-display); }

.event-item {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
}
.event-item:last-child { border-bottom: none; }
.event-date-box {
    min-width: 64px; text-align: center; padding: 10px 12px;
    border-radius: 10px; background: var(--bg);
}
.event-date-box .day { font-size: 26px; font-weight: 700; color: var(--primary); line-height: 1; font-family: var(--font-display); }
.event-date-box .month { font-size: 12px; color: var(--text-body); text-transform: uppercase; margin-top: 2px; }
.event-info { flex: 1; }
.event-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; font-family: var(--font-display); }
.event-info h3 a { color: var(--text); text-decoration: none; }
.event-info h3 a:hover { color: var(--primary); }
.event-info .meta { font-size: 13px; color: var(--text-body); }
.event-actions { display: flex; gap: 8px; align-items: center; }

/* Farbiger Streifen für Kategorie */
.event-date-box-colored {
    min-width: 64px; text-align: center; padding: 10px 12px;
    border-radius: 10px; color: #fff;
}
.event-date-box-colored .day { font-size: 26px; font-weight: 700; line-height: 1; font-family: var(--font-display); }
.event-date-box-colored .month { font-size: 12px; text-transform: uppercase; margin-top: 2px; opacity: .9; }

/* ============================================ */
/* === INSTRUCTOR CARD                      === */
/* ============================================ */
.instructor-card {
    display: flex; gap: 20px; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 24px; transition: transform .25s;
}
.instructor-card:hover { transform: translateY(-4px); }
.instructor-photo {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    background: var(--bg); flex-shrink: 0;
}
.instructor-info h3 { font-size: 18px; margin-bottom: 4px; color: var(--text); font-family: var(--font-display); }
.instructor-info .title { color: var(--text-body); font-size: 14px; }

/* === INSTRUCTOR V2 — Dozenten-Übersicht (bunt) === */
.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.instructor-card-v2 {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    text-decoration: none;
    color: var(--text);
    transition: transform .3s, box-shadow .3s;
    border-top: 4px solid var(--accent, var(--primary));
    position: relative;
    overflow: hidden;
}
.instructor-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent);
    pointer-events: none;
}
.instructor-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    color: var(--text);
}
.instructor-avatar-v2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, var(--accent, var(--primary)), color-mix(in srgb, var(--accent) 60%, var(--primary-dark)));
    display: flex;
    align-items: center;
    justify-content: center;
}
.instructor-avatar-v2 img {
    width: 100%; height: 100%; object-fit: cover;
}
.instructor-avatar-v2 span {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
}
.instructor-info-v2 { flex: 1; position: relative; }
.instructor-info-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    font-family: var(--font-display);
}
.instructor-title-v2 {
    font-size: 14px;
    color: var(--accent, var(--primary));
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-display);
}
.instructor-bio-v2 {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}
.instructor-link-v2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent, var(--primary));
    margin-top: 16px;
    font-family: var(--font-display);
    transition: color .3s;
}
.instructor-card-v2:hover .instructor-link-v2 {
    color: var(--primary-dark);
}

/* === INSTRUCTOR DETAIL — Hero + Bio === */
.instructor-hero-layout {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.instructor-hero-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,.3);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}
.instructor-hero-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.instructor-hero-avatar span {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
}
.instructor-bio-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 32px;
    border-left: 4px solid var(--teal);
}
.instructor-bio-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    font-family: var(--font-display);
}
.instructor-bio-card p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 16px;
}

/* === CMS PAGE === */
.cms-content {
    max-width: 800px;
    margin: 0 auto;
}
.cms-content h1, .cms-content h2, .cms-content h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 32px 0 12px;
}
.cms-content h1:first-child, .cms-content h2:first-child { margin-top: 0; }
.cms-content p {
    line-height: 1.8;
    margin-bottom: 16px;
}
.cms-content ul, .cms-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.cms-content li { margin-bottom: 8px; }
.cms-content a { color: var(--primary); }
.cms-content a:hover { color: var(--primary-dark); }

/* ============================================ */
/* === SEMINAR DETAIL                       === */
/* ============================================ */
.seminar-header {
    padding: 48px 20px;
    background: linear-gradient(135deg, var(--teal), var(--primary) 50%, var(--primary-dark));
    color: #fff; position: relative; overflow: hidden;
}
.seminar-header::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(236,72,153,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(6,182,212,.12) 0%, transparent 50%);
    pointer-events: none;
}
.seminar-header .container { position: relative; }
.seminar-header .breadcrumb {
    color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 12px;
}
.seminar-header .breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.seminar-header .breadcrumb a:hover { color: #fff; }
.seminar-header h1 { font-size: 32px; margin-bottom: 8px; font-family: var(--font-display); }
.seminar-header .subtitle { font-size: 18px; opacity: .9; }
.seminar-header .subtitle .badge-category {
    display: inline-block; background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
    padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 600;
    margin-left: 8px; vertical-align: middle;
}

.seminar-content { padding: 40px 0; }
.seminar-layout {
    display: grid; grid-template-columns: 1fr 380px; gap: 40px;
    max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.seminar-main { }
.seminar-aside { align-self: flex-start; position: sticky; top: 88px; }
.seminar-main h2 {
    font-size: 20px; font-weight: 700; color: var(--text);
    margin: 32px 0 12px; font-family: var(--font-display);
    padding-bottom: 8px; border-bottom: 2px solid var(--border);
}
.seminar-main h2:first-child { margin-top: 0; }
.seminar-main p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.seminar-main ul, .seminar-main ol {
    margin: 16px 0; padding-left: 24px;
}
.seminar-main li { margin-bottom: 8px; }

.seminar-sidebar {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 24px;
    border-top: 4px solid var(--teal);
}
.seminar-sidebar h3 {
    font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 16px;
    font-family: var(--font-display);
}

.sidebar-event {
    padding: 16px 0; border-bottom: 1px solid var(--border);
    transition: background .2s;
}
.sidebar-event:last-child { border-bottom: none; }
.sidebar-event-date {
    font-weight: 700; color: var(--teal); font-size: 15px;
    font-family: var(--font-display);
}
.sidebar-event-meta { font-size: 13px; color: var(--text-body); margin: 4px 0 8px; }
.sidebar-event-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* Dozent in Sidebar */
.sidebar-instructor {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--text);
    padding: 16px; border-radius: 10px;
    transition: background .2s;
}
.sidebar-instructor:hover { background: var(--bg); color: var(--text); }
.sidebar-instructor-avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 20px; font-family: var(--font-display);
}
.sidebar-instructor-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.sidebar-instructor-photo {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    object-fit: cover;
}
.sidebar-instructor-name {
    font-weight: 600; font-size: 15px; font-family: var(--font-display);
}
.sidebar-instructor-title {
    font-size: 13px; color: var(--text-body); margin-top: 1px;
}
.sidebar-instructor-link {
    font-size: 13px; color: var(--teal); font-weight: 600;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--teal), var(--primary) 60%, var(--primary-dark));
    color: #fff; border-radius: var(--radius); padding: 28px;
    text-align: center; margin-top: 20px; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.1), transparent 60%);
    pointer-events: none;
}
.cta-box h3 { color: #fff; margin-bottom: 8px; font-family: var(--font-display); position: relative; }
.cta-box p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 16px; position: relative; }
.cta-box .btn {
    background: #fff; color: var(--primary); font-weight: 600; position: relative;
    transition: transform .25s, box-shadow .25s;
}
.cta-box .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.25); }

/* ============================================ */
/* === PRICING                              === */
/* ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 32px; text-align: center;
    transition: transform .25s;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured { border: 2px solid var(--primary); }
.pricing-price { font-size: 36px; font-weight: 700; color: var(--primary); margin: 16px 0; font-family: var(--font-display); }
.pricing-price span { font-size: 16px; color: var(--text-body); font-weight: 400; }

/* ============================================ */
/* === AUTH PAGES                           === */
/* ============================================ */
.auth-page { max-width: 440px; margin: 60px auto; padding: 0 20px; }
.auth-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 40px;
}
.auth-card h1 { font-size: 24px; margin-bottom: 24px; text-align: center; color: var(--text); font-family: var(--font-display); }

/* ============================================ */
/* === NEWSLETTER SECTION (Unterseiten)     === */
/* ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 64px 20px; text-align: center; color: #fff;
    border-radius: var(--radius); margin: 0;
}
.newsletter-section h2 { font-size: 28px; margin-bottom: 12px; font-weight: 700; font-family: var(--font-display); }
.newsletter-section p { opacity: .9; margin-bottom: 32px; font-size: 16px; }
.newsletter-form-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px; max-width: 800px; margin: 0 auto;
}
.newsletter-form-grid input {
    padding: 14px 18px; border: 2px solid rgba(255,255,255,.3); border-radius: 8px;
    font-size: 15px; background: rgba(255,255,255,.15); color: #fff;
    font-family: inherit;
}
.newsletter-form-grid input::placeholder { color: rgba(255,255,255,.7); }
.newsletter-form-grid input:focus {
    outline: none; border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.2);
}
.newsletter-form-grid button {
    padding: 14px 28px; background: #fff; color: var(--primary);
    border: none; border-radius: 8px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: transform .2s, box-shadow .2s;
    white-space: nowrap; font-family: var(--font-display);
}
.newsletter-form-grid button:hover {
    transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* Simple newsletter form (fallback) */
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; padding: 12px 16px; border: none; border-radius: 8px;
    font-size: 15px;
}
.newsletter-form button {
    padding: 12px 24px; background: rgba(255,255,255,.2);
    color: #fff; border: 2px solid rgba(255,255,255,.4);
    border-radius: 8px; font-weight: 600; cursor: pointer;
    transition: background .2s;
}
.newsletter-form button:hover { background: rgba(255,255,255,.3); }

/* ============================================ */
/* === GOOGLE REVIEWS                       === */
/* ============================================ */
.reviews-section { padding: 64px 0; background: var(--white); }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-stars { color: #fb8e28; font-size: 28px; margin-bottom: 8px; letter-spacing: 2px; }
.reviews-rating {
    font-size: 16px; color: var(--text-body);
}
.reviews-rating strong { color: var(--text); font-size: 20px; }
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.review-card {
    background: var(--bg); border-radius: var(--radius);
    padding: 24px; border: 1px solid var(--border);
    transition: transform .25s;
}
.review-card:hover { transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px; flex-shrink: 0;
    font-family: var(--font-display);
}
.review-name { font-weight: 600; color: var(--text); font-size: 15px; font-family: var(--font-display); }
.review-date { font-size: 12px; color: var(--text-body); }
.review-stars { color: #fb8e28; font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ============================================ */
/* === FOOTER                               === */
/* ============================================ */
.site-footer {
    background: var(--dark); color: #a0aec0; padding: 48px 0 24px; margin-top: 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.footer-col h4 { color: #e2e8f0; margin-bottom: 16px; font-size: 16px; font-family: var(--font-display); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #a0aec0; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
    font-size: 14px;
}
.footer-contact-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    margin-top: 32px; padding-top: 20px; border-top: 1px solid #4a5568;
    text-align: center; font-size: 13px;
    max-width: var(--max-width); margin-left: auto; margin-right: auto;
    padding-left: 20px; padding-right: 20px;
}

/* ============================================ */
/* === CMS PAGE                             === */
/* ============================================ */
.cms-content { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.cms-content h1 { font-size: 28px; margin-bottom: 24px; color: var(--text); font-family: var(--font-display); }
.cms-content h2 { font-size: 22px; margin: 24px 0 12px; color: var(--text); font-family: var(--font-display); }
.cms-content p { margin-bottom: 16px; line-height: 1.8; }
.cms-content ul, .cms-content ol { margin: 16px 0; padding-left: 24px; }
.cms-content li { margin-bottom: 8px; }
.cms-content a { color: var(--primary); }

/* ============================================ */
/* === BOOKING FORM                         === */
/* ============================================ */
.booking-page { max-width: 700px; margin: 40px auto; padding: 0 20px; }
.booking-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 0; overflow: hidden;
}
.booking-card-header {
    background: linear-gradient(135deg, var(--teal), var(--primary) 60%, var(--primary-dark));
    padding: 28px 32px; color: #fff; position: relative; overflow: hidden;
}
.booking-card-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 90% 30%, rgba(236,72,153,.12), transparent 50%);
    pointer-events: none;
}
.booking-card-header h1 {
    font-size: 24px; margin-bottom: 0; color: #fff;
    font-family: var(--font-display); position: relative;
}
.booking-card-body { padding: 32px; }
.booking-card .event-info-bar {
    background: var(--bg); padding: 16px 18px; border-radius: 10px;
    margin-bottom: 24px; font-size: 14px; border-left: 4px solid var(--teal);
}

.ticket-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.ticket-option {
    border: 2px solid var(--border); border-radius: 12px; padding: 20px 16px;
    cursor: pointer; transition: all .25s; text-align: center;
    position: relative; overflow: hidden;
}
.ticket-option::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--primary));
    opacity: 0; transition: opacity .25s;
}
.ticket-option:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6,182,212,.12); }
.ticket-option:hover::before { opacity: 1; }
.ticket-option.selected {
    border-color: var(--teal); background: color-mix(in srgb, var(--teal) 6%, white);
}
.ticket-option.selected::before { opacity: 1; }
.ticket-option input { display: none; }
.ticket-option .price { font-size: 22px; font-weight: 700; color: var(--teal); font-family: var(--font-display); }

.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.payment-option {
    border: 2px solid var(--border); border-radius: 12px; padding: 16px;
    cursor: pointer; text-align: center; transition: all .25s;
    position: relative; overflow: hidden;
}
.payment-option::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--pink));
    opacity: 0; transition: opacity .25s;
}
.payment-option:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249,115,22,.12); }
.payment-option:hover::before { opacity: 1; }
.payment-option.selected {
    border-color: var(--coral); background: color-mix(in srgb, var(--coral) 6%, white);
}
.payment-option.selected::before { opacity: 1; }
.payment-option input { display: none; }

.booking-submit {
    width: 100%; padding: 16px 28px; font-size: 16px; font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    color: #fff; border: none; border-radius: 10px; cursor: pointer;
    font-family: var(--font-display); transition: transform .25s, box-shadow .25s;
}
.booking-submit:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,182,212,.3);
}

/* ============================================ */
/* === VIDEO PLAYER                         === */
/* ============================================ */
.video-player-wrap {
    background: #000; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 16/9; position: relative;
}
.video-player-wrap video { width: 100%; height: 100%; }
.video-locked {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; color: #fff; gap: 16px;
    position: absolute; inset: 0; background: rgba(0,0,0,.8);
}
.video-locked .lock-icon { font-size: 48px; }

/* ============================================ */
/* === 404                                  === */
/* ============================================ */
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 72px; color: var(--primary); margin-bottom: 16px; font-family: var(--font-display); }
.error-page p { font-size: 18px; color: var(--text-body); margin-bottom: 24px; }

/* ============================================ */
/* === PARTICIPANT DASHBOARD                === */
/* ============================================ */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.stat-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 24px;
}
.stat-card .stat-value { font-size: 32px; font-weight: 700; color: var(--primary); font-family: var(--font-display); }
.stat-card .stat-label { font-size: 14px; color: var(--text-body); }

/* ============================================ */
/* === CONFIRMATION                         === */
/* ============================================ */
.confirmation-page { max-width: 600px; margin: 40px auto; padding: 0 20px; }
.confirmation-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 0; text-align: center;
    overflow: hidden;
}
.confirmation-card-header {
    background: linear-gradient(135deg, var(--teal), var(--primary) 60%, var(--primary-dark));
    padding: 40px 32px 32px; color: #fff; position: relative; overflow: hidden;
}
.confirmation-card-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.1), transparent 60%);
    pointer-events: none;
}
.confirmation-card .check-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
    color: #fff; border: 3px solid rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; margin: 0 auto 16px; position: relative;
}
.confirmation-card-body { padding: 32px; }
.confirmation-details {
    text-align: left; background: var(--bg); border-radius: 10px;
    padding: 20px; margin-bottom: 24px; border-left: 4px solid var(--teal);
}
.confirmation-details table { width: 100%; font-size: 14px; }
.confirmation-details td { padding: 8px 0; border: none; }
.confirmation-details td:first-child { color: var(--text-light); width: 140px; }
.confirmation-details td:last-child { font-weight: 600; }

/* ============================================ */
/* === "ALLE SEMINARTERMINE" Button         === */
/* ============================================ */
.btn-all-events {
    display: inline-block; padding: 14px 32px; background: #fff;
    color: var(--primary); font-size: 15px; font-weight: 600;
    border-radius: 8px; text-decoration: none; border: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    font-family: var(--font-display);
}
.btn-all-events:hover {
    transform: translateY(-2px); color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

/* ============================================ */
/* === SEMINAR TILES (Unterseiten)          === */
/* ============================================ */
.seminar-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--max-width);
}
.seminar-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: 15px;
    padding: 20px 24px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 12px rgba(61,69,146,.12);
    text-decoration: none;
    color: var(--text);
    transition: transform .25s, box-shadow .25s;
}
.seminar-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61,69,146,.2);
    color: var(--text);
}
.seminar-tile-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.seminar-tile-icon svg {
    width: 100%;
    height: 100%;
}
.seminar-tile-title {
    font: 600 15px/1.4 var(--font-display), sans-serif;
    color: var(--text);
}

/* ============================================ */
/* === FEATURED SEMINAR CARDS               === */
/* ============================================ */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.featured-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 24px;
    text-decoration: none; color: var(--text);
    transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
}
.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    color: var(--text);
}
.featured-card h3 {
    font-size: 16px; font-weight: 700;
    color: var(--text); margin-bottom: 8px;
    font-family: var(--font-display);
}
.featured-card p {
    font-size: 13px; color: var(--text-body);
    line-height: 1.6; flex: 1; margin-bottom: 16px;
}
.featured-btn {
    display: inline-block; padding: 8px 16px;
    background: var(--primary); color: #fff;
    border-radius: 6px; font-size: 13px;
    font-weight: 600; text-align: center;
    transition: background .2s;
}
.featured-card:hover .featured-btn {
    background: var(--primary-dark);
}

/* ============================================ */
/* === FEATURE SECTION (Unterseiten)        === */
/* ============================================ */
.feature-section {
    background: var(--bg-light); padding: 64px 0;
}
.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.feature-box {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 32px; text-align: center;
    transition: transform .25s;
}
.feature-box:hover { transform: translateY(-4px); }
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-box h3 {
    font-size: 18px; font-weight: 700;
    color: var(--text); margin-bottom: 12px;
    font-family: var(--font-display);
}
.feature-box p {
    font-size: 14px; color: var(--text-body);
    line-height: 1.7; margin-bottom: 20px;
}

/* ============================================ */
/* === STATISTICS (Unterseiten)             === */
/* ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    background-size: 400% 400%;
    animation: rms-grad-shift 12s ease infinite;
    padding: 64px 0; color: #fff;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; text-align: center;
}
.stat-counter { padding: 24px; }
.stat-number { font-size: 48px; font-weight: 700; margin-bottom: 8px; font-family: var(--font-display); }
.stat-text {
    font-size: 18px; opacity: .85;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================ */
/* === CTA SECTION (Unterseiten)            === */
/* ============================================ */
.cta-section {
    padding: 80px 0; text-align: center; background: var(--white);
}
.cta-content {
    max-width: 700px; margin: 0 auto;
}
.cta-content h2 {
    font-size: 32px; font-weight: 700;
    color: var(--text); margin-bottom: 16px;
    font-family: var(--font-display);
}
.cta-content p {
    font-size: 18px; color: var(--text-body);
    line-height: 1.8; margin-bottom: 32px;
}

/* ============================================ */
/* === SEMINARRAUM (Unterseiten)            === */
/* ============================================ */
.seminarraum-section { padding: 64px 0; background: var(--bg); }
.seminarraum-content { text-align: center; }
.seminarraum-content h2 {
    font-size: 28px; font-weight: 700;
    color: var(--text); margin-bottom: 8px;
    font-family: var(--font-display);
}
.seminarraum-subtitle {
    font-size: 16px; color: var(--text-body); margin-bottom: 32px;
}
.seminarraum-img {
    width: 100%; max-width: 900px;
    border-radius: var(--radius); box-shadow: var(--shadow);
}

/* ============================================ */
/* === RESPONSIVE                           === */
/* ============================================ */

/* Tablet */
@media (max-width: 1200px) {
    .event-card-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-grid { grid-template-columns: repeat(3, 1fr); }
    .seminar-tiles-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .seminar-layout { grid-template-columns: 1fr; }
    .seminar-aside { position: static; }
    .info-section-inner { grid-template-columns: 1fr; }
    .newsletter-form-grid { grid-template-columns: 1fr 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .seminar-tiles-grid { grid-template-columns: repeat(2, 1fr); }
    /* Homepage tablet */
    .hp-editorial { grid-template-columns: 1fr; }
    .hp-editorial-img { max-height: 400px; }
    .hp-editorial-text { padding: 48px 24px; }
    .hp-newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
    .hp-newsletter-text { text-align: center; }
    .hp-events-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hp-reviews-top { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hp-reviews-track .review-card { flex: 0 0 calc((100% - 20px) / 2); }
    .hp-features-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 72px; left: 0; right: 0;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        padding: 16px 20px; gap: 12px; box-shadow: 0 8px 20px rgba(0,0,0,.2);
    }
    .nav-links.open { display: flex; }
    .nav-links a::after { display: none; }

    .hero { padding: 48px 20px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section { padding: 40px 0; }
    .section-title { font-size: 22px; }

    .event-card-grid { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    .cal-grid { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .event-item { flex-direction: column; align-items: flex-start; gap: 12px; }
    .event-actions { width: 100%; }

    .newsletter-form-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .seminar-tiles-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-number { font-size: 36px; }

    .booking-card { padding: 20px; }
    .payment-options { grid-template-columns: 1fr; }
    .ticket-options { grid-template-columns: 1fr; }

    /* Homepage mobile */
    .hp-hero { min-height: 80vh; }
    .hp-hero-h1 { font-size: 36px; letter-spacing: -.5px; }
    .hp-hero-actions { flex-direction: column; align-items: center; }
    .hp-topics { padding: 64px 0; }
    .hp-topics-grid { grid-template-columns: 1fr; }
    .hp-editorial { grid-template-columns: 1fr; }
    .hp-editorial-img { max-height: 280px; }
    .hp-editorial-text { padding: 40px 20px; }
    .hp-events { padding: 64px 0; }
    .hp-event-card { flex-direction: column; }
    .hp-event-date-big { border-right: none; border-bottom: 1px solid var(--border); }
    .hp-event-arrow { display: none; }
    .hp-features { padding: 64px 0; }
    .hp-features-grid { grid-template-columns: 1fr; }
    .hp-numbers-grid { flex-direction: column; gap: 24px; }
    .hp-number-divider { width: 64px; height: 1px; }
    .hp-reviews-track .review-card { flex: 0 0 100%; }
    .hp-reviews-arrow { display: none; }
    .hp-reviews-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .hp-reviews-track { transition: none; }
    .hp-venue-overlay { min-height: 360px; }
    .hp-venue-text { padding: 40px 24px; }
    .hp-newsletter { padding: 64px 0; }
    .hp-newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
    .hp-cta { padding: 80px 0; }
    .hp-cta h2 { font-size: 32px; }
}

/* Print */
@media print {
    .site-header, .site-footer, .newsletter-section, .hero-buttons, .hp-newsletter, .hp-hero-actions { display: none; }
    .hero, .hp-hero { padding: 20px; background: none !important; color: #000 !important; min-height: auto; }
    .hero h1, .hp-hero-h1 { color: #000 !important; text-shadow: none; -webkit-text-fill-color: #000; }
    body { font-size: 12pt; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}


/* ============================== */
/* Webinar                        */
/* ============================== */

.webinar-body {
    background: #0f0d17;
    color: #e0dfe6;
    font-family: var(--font-display);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.webinar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(28, 25, 40, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
}
.webinar-header-instructor {
    border-bottom-color: rgba(102, 126, 234, 0.3);
}
.webinar-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.webinar-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.webinar-back-link {
    color: #999;
    text-decoration: none;
    font-size: 20px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.webinar-back-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.webinar-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.webinar-meta {
    font-size: 13px;
    color: #888;
}

/* Status Badge */
.webinar-status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.webinar-status-live {
    background: rgba(22, 163, 106, 0.2);
    color: #4ade80;
    animation: webinar-pulse 2s ease-in-out infinite;
}
.webinar-status-connecting {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}
.webinar-status-disconnected,
.webinar-status-error {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
}
.webinar-status-ended {
    background: rgba(255,255,255,0.05);
    color: #666;
}

@keyframes webinar-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.webinar-participant-count {
    font-size: 13px;
    color: #888;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
}
.webinar-participant-count::before {
    content: "\1F465 ";
}

/* Container */
.webinar-container {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Video Area */
.webinar-video-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #000;
    position: relative;
}
.webinar-video {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}
.webinar-video-stream {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}
.webinar-video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #555;
}
.webinar-video-placeholder-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.webinar-video-placeholder p {
    font-size: 14px;
}
.webinar-local-preview {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    border: 2px solid rgba(102, 126, 234, 0.5);
    object-fit: cover;
    z-index: 5;
    display: none;
    background: #000;
}
.webinar-local-stream {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Chat Panel */
.webinar-chat {
    width: 340px;
    display: flex;
    flex-direction: column;
    background: rgba(28, 25, 40, 0.95);
    border-left: 1px solid rgba(255,255,255,0.08);
}
.webinar-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.webinar-chat-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin: 0;
}
.webinar-chat-toggle {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
}
.webinar-chat-tabs {
    display: flex;
    gap: 4px;
}
.webinar-tab {
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-display);
}
.webinar-tab.active {
    background: rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
}

/* Chat Messages */
.webinar-chat-messages,
.webinar-participants-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    font-size: 13px;
    line-height: 1.5;
}
.webinar-chat-system {
    color: #666;
    font-style: italic;
    padding: 4px 0;
    font-size: 12px;
}
.webinar-chat-msg {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.webinar-chat-private {
    background: rgba(118, 75, 162, 0.1);
    border-radius: 6px;
    padding: 6px 8px;
    margin: 2px 0;
}
.webinar-chat-name {
    font-weight: 600;
    color: #a5b4fc;
    margin-right: 6px;
}
.webinar-chat-name::after {
    content: ":";
}
.webinar-chat-text {
    color: #d0cfe0;
    word-break: break-word;
}

/* Chat Input */
.webinar-chat-input {
    display: flex;
    padding: 8px 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 8px;
}
.webinar-chat-input input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #e0dfe6;
    font-size: 13px;
    font-family: var(--font-display);
    outline: none;
}
.webinar-chat-input input:focus {
    border-color: rgba(102, 126, 234, 0.5);
}
.webinar-chat-send {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.2s;
}
.webinar-chat-send:hover {
    opacity: 0.9;
}

/* Participants List */
.webinar-participant-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: #ccc;
}
.webinar-participant-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.webinar-participant-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}
.webinar-participant-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.webinar-mod-btn {
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s;
}
.webinar-mod-btn:hover {
    background: rgba(255,255,255,0.2);
}
.webinar-mod-btn-ban:hover {
    background: rgba(239, 68, 68, 0.4);
}

/* Toolbar */
.webinar-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(28, 25, 40, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.webinar-toolbar-instructor {
    justify-content: space-between;
}
.webinar-toolbar-group {
    display: flex;
    gap: 8px;
    align-items: center;
}
.webinar-tool-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px 16px;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-display);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.webinar-tool-btn:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
}
.webinar-tool-btn.active {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    color: #a5b4fc;
}
.webinar-tool-icon {
    font-size: 18px;
}
.webinar-tool-label {
    font-size: 12px;
}
.webinar-tool-btn-start {
    background: rgba(22, 163, 106, 0.2);
    border-color: rgba(22, 163, 106, 0.4);
    color: #4ade80;
    font-weight: 600;
}
.webinar-tool-btn-start:hover {
    background: rgba(22, 163, 106, 0.35);
}
.webinar-tool-btn-end {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #f87171;
    font-weight: 600;
}
.webinar-tool-btn-end:hover {
    background: rgba(220, 38, 38, 0.35);
}

/* Aufnahme-Button */
.webinar-tool-btn.recording {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
    color: #f87171;
    animation: webinar-pulse 1.5s infinite;
}
@keyframes webinar-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Webinar Responsive */
@media (max-width: 768px) {
    .webinar-container {
        flex-direction: column;
    }
    .webinar-chat {
        width: 100%;
        max-height: 40vh;
        display: none;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .webinar-chat.webinar-chat-open {
        display: flex;
    }
    #btnChatMobile {
        display: flex;
    }
    .webinar-toolbar {
        flex-wrap: wrap;
        gap: 8px;
    }
    .webinar-tool-label {
        display: none;
    }
    .webinar-local-preview {
        width: 120px;
        height: 90px;
    }
}
@media (min-width: 769px) {
    #btnChatMobile {
        display: none;
    }
}

.webinar-chat-collapsed .webinar-chat-messages,
.webinar-chat-collapsed .webinar-chat-input,
.webinar-chat-collapsed .webinar-participants-list {
    display: none;
}
