/* ============================================
   ASCHERL WEBINARE – Clean Nautical
   Montserrat (headings) + DM Sans (body)
   Self-hosted fonts, no Google dependency
   ============================================ */

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
    src: url('../fonts/montserrat.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/dmsans.woff2') format('woff2');
}

:root {
    --bg-deep: #0b1829;
    --bg-card: #ffffff;
    --brand-blue: #1a5dae;
    --brand-blue-dark: #0e3d75;
    --brand-blue-light: #3d8be8;
    --brand-red: #ed1c24;
    --text-white: #ffffff;
    --text-light: #bcc8d8;
    --text-muted: #7a8da6;
    --text-dark: #1a2332;
    --text-body: #3d4f63;
    --font-heading: 'Montserrat', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: var(--brand-blue-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--text-white); }
img { max-width: 100%; height: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── Background ── */
.page-bg {
    position: fixed; inset: 0; z-index: 0;
    background: radial-gradient(ellipse at 50% 30%, #162a45 0%, #0b1829 60%, #060e18 100%);
}
.depth-lines {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1; pointer-events: none; overflow: hidden;
}
.depth-lines svg { width: 100%; height: 100%; display: block; }
.depth-line {
    fill: none; stroke: rgba(140, 190, 255, 0.6); stroke-width: 1;
}
.depth-number {
    fill: rgba(140, 190, 255, 0.3); font-size: 12px; font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* ── Header ── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    padding: 1.1rem 0;
    background: rgba(11, 24, 41, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: padding 0.3s, background 0.3s;
}
.site-header.scrolled { padding: 0.7rem 0; background: rgba(11, 24, 41, 0.92); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; color: var(--text-white); }
.logo:hover { color: var(--text-white); }
.logo-img { height: 24px; width: auto; filter: brightness(0) invert(1); }
.logo-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.logo-sub {
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 400;
    color: var(--text-muted); letter-spacing: 0.03em;
}
.header-nav { display: flex; gap: 1.5rem; }
.header-nav a { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.header-nav a:hover { color: var(--text-white); }
.header-nav a.nav-subtle { font-size: 0.78rem; opacity: 0.5; }
.header-nav a.nav-subtle:hover { opacity: 1; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.6rem 1.4rem; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
    color: var(--text-light); background: transparent; cursor: pointer;
    transition: all 0.3s var(--ease); text-decoration: none;
}
.btn:hover { background: rgba(255,255,255,0.08); color: var(--text-white); }
.btn-primary { background: var(--brand-blue); color: white; border: none; }
.btn-primary:hover { background: var(--brand-blue-light); box-shadow: 0 4px 16px rgba(26,93,173,0.25); }
.btn-lg { padding: 0.8rem 1.8rem; font-size: 0.95rem; font-weight: 600; }
.btn-full { width: 100%; }
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.2); color: var(--text-white); background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { border: 1.5px solid var(--brand-blue); color: var(--brand-blue); background: white; }
.btn-outline-dark:hover { background: var(--brand-blue); color: white; }
.btn-ghost-light {
    border: 1.5px solid #dce1e8; color: var(--text-body); background: transparent;
    padding: 0.8rem 1.8rem; font-size: 0.95rem; border-radius: 8px;
}
.btn-ghost-light:hover { border-color: var(--brand-blue); color: var(--brand-blue); background: rgba(26,93,174,0.04); }
.btn-cta { background: var(--brand-red); color: white; border: none; font-weight: 600; }
.btn-cta:hover { background: #d41920; }

/* ── Badges ── */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 11px; border-radius: 100px;
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-live { background: rgba(237,28,36,0.1); color: var(--brand-red); }
.badge-upcoming { background: rgba(26,93,173,0.1); color: var(--brand-blue); }
.badge-completed { background: rgba(122,141,166,0.1); color: var(--text-muted); }
.badge-free { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-lg { padding: 5px 14px; font-size: 0.75rem; }
.pulse {
    width: 7px; height: 7px; border-radius: 50%; background: var(--brand-red);
    animation: pulse-anim 1.5s ease-in-out infinite;
}
@keyframes pulse-anim {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.4); }
}

/* ══════════════════════════════════
   LANDING PAGE
   ══════════════════════════════════ */

.landing-hero {
    position: relative; z-index: 1; padding: 5rem 0 3rem;
}
.landing-hero-inner {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 13px; border: 1px solid rgba(26,93,173,0.2); border-radius: 100px;
    font-size: 0.72rem; font-weight: 500; color: var(--brand-blue-light);
    background: rgba(26,93,173,0.06); margin-bottom: 1.25rem;
}
.landing-title {
    font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900; color: var(--text-white); line-height: 1.15; text-transform: uppercase;
}
.landing-title .accent { color: var(--brand-blue-light); }
.landing-subtitle {
    margin-top: 1.25rem; font-size: 1rem; color: var(--text-muted);
    line-height: 1.7; max-width: 480px;
}
.landing-features { display: flex; gap: 1.25rem; margin-top: 1.75rem; }
.landing-feature {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 500; color: var(--text-light);
}
.feature-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(26,93,173,0.1); color: var(--brand-blue-light);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Stats */
.stats-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 2rem; backdrop-filter: blur(8px);
}
.stat-big { text-align: center; padding: 0.75rem 0; }
.stat-big-num {
    display: block; font-family: var(--font-heading); font-size: 2.25rem;
    font-weight: 700; color: var(--text-white);
}
.stat-big-label {
    display: block; font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem;
}
.stats-divider { height: 1px; background: rgba(255,255,255,0.06); }

/* Featured */
.featured-section { position: relative; z-index: 1; padding: 1.5rem 0 3rem; }
.featured-label {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
}
.featured-label-text {
    font-family: var(--font-heading); font-size: 0.82rem; font-weight: 400;
    color: var(--text-muted); font-style: italic; white-space: nowrap;
}
.featured-label-line { flex: 1; height: 1px; background: rgba(255,255,255,0.06); }

.featured-card {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--bg-card); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(0,0,0,0.15); }
.featured-image { position: relative; overflow: hidden; }
.featured-image img {
    width: 100%; height: 100%; object-fit: cover; min-height: 380px;
    transition: transform 5s ease;
}
.featured-card:hover .featured-image img { transform: scale(1.03); }
.featured-next-badge, .featured-live-badge {
    position: absolute; top: 1rem; left: 1rem;
    padding: 5px 12px; border-radius: 6px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.featured-next-badge { background: var(--brand-blue); color: white; }
.featured-live-badge { background: var(--brand-red); color: white; display: flex; align-items: center; gap: 5px; }

.featured-content {
    padding: 2.25rem; display: flex; flex-direction: column; justify-content: center;
    color: var(--text-body);
}
.featured-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.85rem; align-items: center; }
.featured-date {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.82rem; font-weight: 500; color: var(--text-dark);
}
.featured-duration, .featured-free {
    font-size: 0.72rem; padding: 2px 9px; border-radius: 100px; font-weight: 600;
}
.featured-duration { background: #f0f2f5; color: var(--text-muted); }
.featured-free { background: rgba(34,197,94,0.08); color: #16a34a; }
.featured-title {
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
    color: var(--text-dark); line-height: 1.3; margin-bottom: 1.1rem;
}
.featured-speakers { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.featured-speaker { display: flex; align-items: center; gap: 0.5rem; }
.featured-speaker-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.featured-speaker-img.placeholder {
    display: flex; align-items: center; justify-content: center;
    background: rgba(26,93,173,0.06); color: var(--brand-blue); font-weight: 700; font-size: 0.75rem;
}
.featured-speaker strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.featured-speaker span { display: block; font-size: 0.72rem; color: var(--text-muted); }
.featured-actions { display: flex; gap: 0.6rem; }

/* Card Grid */
.webinars-section { position: relative; z-index: 1; padding: 1.5rem 0 3rem; }
.section-heading {
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 400;
    color: var(--text-muted); font-style: italic; margin-bottom: 1.25rem;
}
.webinar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.25rem; }
.webinar-card {
    background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); display: flex; flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.webinar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-image-wrap { overflow: hidden; }
.card-image { width: 100%; height: 175px; object-fit: cover; display: block; transition: transform 4s ease; }
.webinar-card:hover .card-image { transform: scale(1.03); }
.card-image-placeholder {
    width: 100%; height: 175px; background: linear-gradient(135deg, #152238, #0b1829);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.08);
}
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; color: var(--text-body); }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.card-date { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: var(--text-muted); }
.card-title {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    color: var(--text-dark); line-height: 1.3; margin-bottom: 0.4rem;
}
.card-speakers { margin-bottom: 0.4rem; }
.speaker-chip {
    display: inline-block; font-size: 0.72rem; font-weight: 500;
    color: var(--brand-blue); background: rgba(26,93,173,0.05);
    padding: 2px 7px; border-radius: 100px; margin-right: 3px;
}
.card-desc { font-size: 0.85rem; color: var(--text-body); opacity: 0.75; line-height: 1.55; margin-bottom: 1rem; flex: 1; }
.card-footer { margin-top: auto; }
.card-trust { display: flex; align-items: center; gap: 5px; margin-bottom: 0.6rem; font-size: 0.7rem; color: var(--text-muted); }
.card-trust-item { font-weight: 500; }
.card-trust-sep { opacity: 0.3; }

/* Social Proof Bar */
.social-proof-section { position: relative; z-index: 1; padding: 1rem 0 1.5rem; }
.proof-bar {
    display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
    padding: 1.25rem 2rem; background: rgba(11,24,41,0.8);
    border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
    backdrop-filter: blur(12px);
}
.proof-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--text-light);
}
.proof-item svg { color: var(--brand-blue-light); flex-shrink: 0; }
.proof-item strong { color: var(--text-white); }

/* Bottom CTA */
.bottom-cta { position: relative; z-index: 1; padding: 1.5rem 0 4rem; }
.bottom-cta-card {
    text-align: center; padding: 3rem 2rem;
    background: rgba(11, 24, 41, 0.85); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); backdrop-filter: blur(16px);
}
.bottom-cta-card h2 {
    font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700;
    color: var(--text-white); margin-bottom: 0.6rem;
}
.bottom-cta-card p {
    font-size: 0.95rem; color: var(--text-muted); max-width: 440px;
    margin: 0 auto 1.25rem; line-height: 1.6;
}
.newsletter-form {
    display: flex; gap: 0.5rem; max-width: 440px; margin: 0 auto;
}
.newsletter-form input {
    flex: 1; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem;
    color: var(--text-white); background: rgba(255,255,255,0.06);
}
.newsletter-form input:focus {
    outline: none; border-color: var(--brand-blue-light);
    box-shadow: 0 0 0 3px rgba(26,93,173,0.15);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-hint {
    display: block; text-align: center; margin-top: 0.6rem;
    font-size: 0.72rem; color: var(--text-muted);
}

/* ══════════════════════════════════
   DETAIL PAGE
   ══════════════════════════════════ */

.detail-hero-full {
    position: relative; z-index: 1; min-height: 400px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-deep) 0%, rgba(11,24,41,0.85) 35%, rgba(11,24,41,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 3.5rem 0 2.5rem; }
.back-link-hero {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.75rem;
}
.back-link-hero:hover { color: white; }
.hero-badges { display: flex; gap: 7px; margin-bottom: 0.85rem; }
.hero-title-lg {
    font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-white); line-height: 1.15; max-width: 650px;
}
.hero-date-bar {
    display: inline-flex; align-items: center; gap: 0.65rem; margin-top: 1.25rem;
    padding: 0.6rem 1rem; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius);
}
.hero-date-icon {
    width: 34px; height: 34px; border-radius: 8px; background: var(--brand-blue); color: white;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-date-text { font-size: 0.88rem; font-weight: 500; color: var(--text-white); }
.hero-speakers { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.hero-speaker-chip {
    display: flex; align-items: center; gap: 5px;
    padding: 3px 10px 3px 3px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07); border-radius: 100px;
    font-size: 0.8rem; color: var(--text-light);
}
.hero-speaker-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.hero-speaker-avatar.placeholder {
    display: flex; align-items: center; justify-content: center;
    background: rgba(26,93,173,0.15); color: var(--brand-blue-light); font-size: 0.6rem; font-weight: 700;
}

/* Countdown */
.countdown {
    display: inline-flex; align-items: center; gap: 3px; margin-top: 1.25rem;
    padding: 0.85rem 1.5rem; background: rgba(26,93,173,0.06);
    border: 1px solid rgba(26,93,173,0.12); border-radius: var(--radius);
}
.countdown-unit { text-align: center; min-width: 48px; }
.countdown-num {
    display: block; font-family: var(--font-heading); font-size: 1.6rem;
    font-weight: 700; color: var(--text-white); line-height: 1;
}
.countdown-label {
    display: block; font-size: 0.58rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted); margin-top: 3px;
}
.countdown-sep { font-size: 1.1rem; color: rgba(255,255,255,0.12); padding-bottom: 10px; }

/* Content */
.detail-body { position: relative; z-index: 1; padding: 1.5rem 0 4rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 370px; gap: 2rem; align-items: start; }
.detail-sidebar { position: sticky; top: 85px; align-self: start; }

.content-card, .benefits-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 1.75rem;
    box-shadow: var(--shadow); margin-bottom: 1.25rem; color: var(--text-body);
}
.content-card h2, .benefits-card h2 {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.85rem;
}
.benefits-card { border-left: 3px solid var(--brand-blue); }
.benefits-content, .description { font-size: 0.92rem; line-height: 1.85; white-space: pre-line; }

.agenda-list { list-style: none; }
.agenda-list li {
    display: flex; gap: 0.85rem; padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04); align-items: center;
}
.agenda-list li:last-child { border-bottom: none; }
.agenda-time {
    font-weight: 600; color: var(--brand-blue); min-width: 55px; font-size: 0.85rem;
    background: rgba(26,93,173,0.05); padding: 2px 7px; border-radius: 5px; text-align: center;
}
.agenda-topic { font-size: 0.9rem; }

/* Speakers */
.speakers-section { margin-bottom: 1.25rem; }
.speakers-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.speaker-profile-card {
    display: flex; gap: 1.25rem; padding: 1.25rem;
    background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow);
}
.speaker-photo-xl {
    width: 90px; height: 90px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0;
}
.speaker-photo-xl.placeholder {
    display: flex; align-items: center; justify-content: center;
    background: rgba(26,93,173,0.06); color: var(--brand-blue); font-size: 2rem; font-weight: 700;
}
.speaker-profile-info h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.speaker-role { display: block; font-size: 0.8rem; color: var(--brand-blue); font-weight: 500; margin-top: 1px; }
.speaker-profile-info p { font-size: 0.85rem; color: var(--text-body); line-height: 1.55; margin-top: 0.35rem; }

/* CTA Banner */
.cta-banner {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    padding: 1.5rem; background: var(--bg-deep); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.25rem;
}
.cta-banner-content h3 {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    color: var(--text-white); margin-bottom: 0.25rem;
}
.cta-banner-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; }
.cta-banner .btn { flex-shrink: 0; }

/* Share */
.share-section { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.share-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.share-btn {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    color: var(--text-muted); transition: all 0.3s;
}
.share-btn:hover { background: rgba(26,93,173,0.08); border-color: var(--brand-blue); color: var(--brand-blue-light); }

/* Registration */
.register-card {
    background: var(--bg-card); border-radius: var(--radius-lg); padding: 1.75rem;
    box-shadow: var(--shadow-lg); border-top: 3px solid var(--brand-blue);
}
.register-header { margin-bottom: 1rem; }
.register-card h3 {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.6rem;
}
.spots-bar { height: 3px; background: #e8ecf0; border-radius: 2px; overflow: hidden; margin-bottom: 0.3rem; }
.spots-fill { height: 100%; background: var(--brand-blue); border-radius: 2px; transition: width 1s ease; }
.spots-text { font-size: 0.7rem; color: var(--text-muted); }
.register-form .field { margin-bottom: 0.75rem; }
.register-form label {
    display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-body);
    margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.02em;
}
.register-form input {
    width: 100%; padding: 0.6rem 0.75rem;
    border: 1px solid #dce1e8; border-radius: 8px;
    font-family: var(--font-body); font-size: 0.88rem; color: var(--text-dark);
    background: #f8f9fb; transition: border-color 0.2s, background 0.2s;
}
.register-form input:focus {
    outline: none; border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(26,93,173,0.06); background: white;
}
.register-form input::placeholder { color: #b5bcc7; }
.register-trust {
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 0.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-body); }
.trust-item svg { color: #22c55e; flex-shrink: 0; }

/* ── Confirmation ── */
.confirmation-section { position: relative; z-index: 1; padding: 4rem 0; }
.confirmation-card {
    max-width: 520px; margin: 0 auto; background: var(--bg-card);
    border-radius: var(--radius-lg); padding: 2.5rem; text-align: center;
    box-shadow: var(--shadow-lg); color: var(--text-body);
}
.confirmation-icon { color: #22c55e; margin-bottom: 1.25rem; }
.confirmation-card h1 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.confirmation-date { font-size: 0.95rem; font-weight: 600; color: var(--brand-blue); margin: 0.6rem 0; }
.confirmation-token { background: var(--bg-deep); border-radius: var(--radius); padding: 0.85rem; margin: 1.25rem 0; }
.confirmation-token p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.token-link { display: block; font-size: 0.85rem; color: var(--brand-blue-light); word-break: break-all; padding: 0.4rem; background: rgba(26,93,173,0.05); border-radius: 5px; }
.confirmation-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── Live Page ── */
.live-section { position: relative; z-index: 1; padding: 1.25rem 0 4rem; }
.live-grid { display: grid; grid-template-columns: 1fr 370px; gap: 1.25rem; align-items: start; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; background: #0b1829; }
.video-wrapper iframe, .video-wrapper .video-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-placeholder { display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.live-info { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; gap: 0.85rem; }
.live-info h1 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-white); }

/* Q&A Panel */
.qa-panel {
    background: rgba(15,31,53,0.95); border-radius: var(--radius);
    display: flex; flex-direction: column; height: calc(100vh - 120px);
    position: sticky; top: 1.25rem; border: 1px solid rgba(255,255,255,0.05);
}
.qa-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.qa-header h2 { font-size: 0.85rem; font-weight: 600; color: var(--text-white); }
.qa-badge { background: var(--brand-blue); color: white; font-size: 0.7rem; font-weight: 600; padding: 2px 9px; border-radius: 100px; }
.qa-list { flex: 1; overflow-y: auto; padding: 0.65rem; }
.qa-item { background: rgba(255,255,255,0.03); border-radius: var(--radius); padding: 0.75rem; margin-bottom: 0.4rem; border: 1px solid rgba(255,255,255,0.03); }
.qa-item:hover { background: rgba(255,255,255,0.05); }
.qa-item.pinned { border-color: var(--brand-blue); background: rgba(26,93,173,0.05); }
.qa-author { font-size: 0.75rem; font-weight: 600; color: var(--brand-blue-light); margin-bottom: 2px; }
.qa-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.45; }
.qa-meta { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.4rem; }
.qa-upvote { display: flex; align-items: center; gap: 3px; font-size: 0.75rem; color: var(--text-muted); background: none; border: 1px solid rgba(255,255,255,0.08); border-radius: 5px; padding: 1px 7px; cursor: pointer; }
.qa-upvote:hover { border-color: var(--brand-blue); color: var(--brand-blue-light); }
.qa-form { padding: 0.65rem; border-top: 1px solid rgba(255,255,255,0.05); }
.qa-form textarea { width: 100%; padding: 0.55rem 0.65rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; background: rgba(255,255,255,0.03); color: var(--text-white); font-family: var(--font-body); font-size: 0.85rem; resize: none; margin-bottom: 0.4rem; }
.qa-form textarea:focus { outline: none; border-color: var(--brand-blue); }
.qa-form textarea::placeholder { color: var(--text-muted); }
.qa-status { text-align: center; font-size: 0.75rem; color: var(--text-muted); padding: 0 0.65rem 0.3rem; min-height: 16px; }

/* ── Flash ── */
.flash { padding: 0.75rem 0.85rem; border-radius: 8px; margin-bottom: 0.65rem; font-size: 0.85rem; position: relative; z-index: 10; }
.flash-error { background: rgba(237,28,36,0.08); color: var(--brand-red); border: 1px solid rgba(237,28,36,0.12); }
.flash-success { background: rgba(34,197,94,0.08); color: #16a34a; border: 1px solid rgba(34,197,94,0.12); }
.flash-info { background: rgba(26,93,173,0.08); color: var(--brand-blue-light); border: 1px solid rgba(26,93,173,0.12); }

.empty-state { text-align: center; padding: 3.5rem 0; color: var(--text-muted); font-size: 0.95rem; }

/* ══════════════════════════════════
   MEDIATHEK
   ══════════════════════════════════ */

.mediathek-hero {
    position: relative; z-index: 1; padding: 3.5rem 0 1.5rem;
}
.mediathek-title {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900; color: var(--text-white); text-transform: uppercase;
}
.mediathek-subtitle {
    font-size: 1rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 500px;
}

/* Suche */
.mediathek-search { margin-top: 1.5rem; }
.search-form { display: flex; gap: 0.75rem; align-items: center; max-width: 500px; }
.search-input-wrap {
    flex: 1; position: relative;
}
.search-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); pointer-events: none;
}
.search-input {
    width: 100%; padding: 0.7rem 0.75rem 0.7rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    font-family: var(--font-body); font-size: 0.9rem; color: var(--text-white);
    background: rgba(255,255,255,0.05); transition: border-color 0.2s;
}
.search-input:focus {
    outline: none; border-color: var(--brand-blue-light);
    box-shadow: 0 0 0 3px rgba(26,93,174,0.12);
}
.search-input::placeholder { color: var(--text-muted); }
.search-clear {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    font-size: 1.25rem; color: var(--text-muted); cursor: pointer;
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 0.2s;
}
.search-clear:hover { color: var(--text-white); background: rgba(255,255,255,0.1); }

/* Tags */
.mediathek-tags {
    display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem;
}
.tag-chip {
    display: inline-block; padding: 5px 14px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 500; color: var(--text-light);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.tag-chip:hover { background: rgba(26,93,174,0.1); border-color: var(--brand-blue); color: var(--brand-blue-light); }
.tag-chip.active { background: var(--brand-blue); border-color: var(--brand-blue); color: white; }
.tag-chip.small { padding: 2px 8px; font-size: 0.7rem; }

.mediathek-results {
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem;
}

/* Content */
.mediathek-content { position: relative; z-index: 1; padding: 1rem 0 4rem; }

.mediathek-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem;
}

.mediathek-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg-card); box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mediathek-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mediathek-card-link { text-decoration: none; color: inherit; display: block; }

.mediathek-card-image {
    position: relative; overflow: hidden; height: 190px; background: #0f1f35;
}
.mediathek-card-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 4s ease;
}
.mediathek-card:hover .mediathek-card-image img { transform: scale(1.04); }
.mediathek-card-image.placeholder-bg {
    background: linear-gradient(135deg, #152238, #0b1829);
}

/* Play Overlay */
.mediathek-play-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25); opacity: 0; transition: opacity 0.3s;
}
.mediathek-card:hover .mediathek-play-overlay { opacity: 1; }
.mediathek-play-overlay svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.mediathek-play-overlay.always-visible { opacity: 1; background: none; }

/* Duration badge */
.mediathek-duration {
    position: absolute; bottom: 8px; right: 8px;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(0,0,0,0.7); color: white;
    font-size: 0.72rem; font-weight: 600;
}

.mediathek-card-body { padding: 1.25rem; }

.mediathek-date { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 0.35rem; }

.mediathek-card-title {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    color: var(--text-dark); line-height: 1.3; margin-bottom: 0.4rem;
}

.mediathek-speakers { font-size: 0.82rem; color: var(--brand-blue); margin-bottom: 0.5rem; }

.mediathek-card-tags { display: flex; gap: 4px; flex-wrap: wrap; }

/* ── Legal Pages ── */
.legal-card {
    background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem 3rem;
    box-shadow: var(--shadow-lg); color: var(--text-body); max-width: 800px;
}
.legal-card h1 {
    font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800;
    color: var(--text-dark); margin-bottom: 0.5rem;
}
.legal-card h2 {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
    color: var(--text-dark); margin: 1.75rem 0 0.6rem;
}
.legal-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.6rem; }
.legal-card ul { padding-left: 1.25rem; margin-bottom: 0.6rem; }
.legal-card li { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.25rem; }
.legal-card a { color: var(--brand-blue); }
.legal-card a:hover { text-decoration: underline; }
.legal-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 0.75rem 0; font-size: 0.85rem; }
.legal-table th, .legal-table td {
    padding: 0.5rem 0.75rem; border: 1px solid #e2e8f0; text-align: left;
}
.legal-table th { background: #f8f9fb; font-weight: 600; color: var(--text-dark); }

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(11, 24, 41, 0.97); backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.cookie-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cookie-text { flex: 1; }
.cookie-text strong { display: block; color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.cookie-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cookie-text a { color: var(--brand-blue-light); }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

/* YouTube consent placeholder */
.yt-consent-msg {
    text-align: center; color: var(--text-muted); padding: 2rem;
}
.yt-consent-msg strong { color: var(--text-white); display: block; margin-bottom: 0.5rem; }
.yt-consent-msg p { font-size: 0.88rem; margin-bottom: 0.75rem; }

/* Footer links */
.footer-link { color: var(--text-muted); font-size: 0.78rem; }
.footer-link:hover { color: var(--text-light); }

/* ── Footer ── */
.site-footer { position: relative; z-index: 1; padding: 1.75rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; }
.footer-brand { font-weight: 600; color: var(--text-light); }
.footer-sep { opacity: 0.25; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
    .landing-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-image img { min-height: 200px; }
    .detail-grid, .live-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static !important; }
    .qa-panel { position: static; height: 450px; }
    .webinar-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; }
    .speaker-profile-card { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 600px) {
    .landing-title { font-size: 1.65rem; }
    .hero-title-lg { font-size: 1.4rem; }
    .landing-features { flex-direction: column; gap: 0.65rem; }
    .hero-date-bar { flex-wrap: wrap; }
    .live-info { flex-direction: column; align-items: flex-start; }
    .container { padding: 0 1.15rem; }
    .landing-hero { padding: 3rem 0 2rem; }
    .hero-badge { font-size: 0.68rem; }
    .landing-subtitle { font-size: 0.92rem; }
    .stats-card { padding: 1.5rem; }
    .stat-big-num { font-size: 1.75rem; }
    .featured-content { padding: 1.5rem; }
    .featured-title { font-size: 1.15rem; }
    .featured-actions { flex-direction: column; }
    .card-body { padding: 1rem; }
    .countdown { padding: 0.65rem 1rem; flex-wrap: wrap; justify-content: center; }
    .countdown-num { font-size: 1.25rem; }
    .countdown-unit { min-width: 40px; }
    .register-card { padding: 1.25rem; }
    .benefits-card { padding: 1.25rem; }
    .content-card { padding: 1.25rem; }
    .speaker-profile-card { padding: 1rem; gap: 1rem; }
    .speaker-photo-xl { width: 70px; height: 70px; }
    .cta-banner { padding: 1.25rem; }
    .bottom-cta-card { padding: 2rem 1.25rem; }
    .newsletter-form { flex-direction: column; }
    .site-footer .footer-inner { flex-direction: column; gap: 0.25rem; }
    .header-nav { gap: 1rem; }
    .qa-panel { height: 400px; }
    .cookie-inner { flex-direction: column; gap: 1rem; }
    .legal-card { padding: 1.5rem; }
}
