/* ═══════════════════════════════════════════════════════════════════════════
   Events & Live Landing Page — Supplementary Stylesheet
   Classes specific to wydarzenia.php partial (Wydarzenia i Kalendarz)
   Extends landing.css — uses var(--csl-...) custom properties
   Mobile-first responsive (768px, 1024px)
   Prefix: csl-evt__
   ═══════════════════════════════════════════════════════════════════════════ */


/* ── 1. TRUST STRIP ──────────────────────────────────────────────────────── */

.csl-evt__trust-strip {
    background: rgba(82, 15, 125, 0.04);
    border-bottom: 1px solid var(--csl-border);
    padding: 32px 0;
}

.csl-evt__trust-eyebrow {
    color: var(--csl-purple);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.csl-evt__trust-desc {
    color: var(--csl-muted);
    font-size: 0.875rem;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 24px;
}

.csl-evt__trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.csl-evt__trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-full);
    padding: 8px 16px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--csl-dark);
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__trust-pill .csl-icon {
    color: var(--csl-purple);
    opacity: 0.8;
    flex-shrink: 0;
}


/* ── 2. HERO — WYDARZENIA VARIANT ───────────────────────────────────────── */

.csl-hero--wydarzenia {
    background: var(--csl-white);
    padding-top: 80px;
    padding-bottom: 64px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .csl-hero--wydarzenia {
        padding-top: 96px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .csl-hero--wydarzenia {
        padding-top: 112px;
        padding-bottom: 96px;
    }
}

/* Hero grid */
.csl-hero--wydarzenia .csl-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .csl-hero--wydarzenia .csl-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* Content side */
.csl-hero--wydarzenia .csl-hero__content {
    order: 1;
    text-align: left;
}

@media (min-width: 1024px) {
    .csl-hero--wydarzenia .csl-hero__content {
        order: 0;
    }
}

.csl-hero--wydarzenia .csl-hero__heading {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--csl-dark);
    margin-bottom: 24px;
    text-align: left;
}

@media (min-width: 768px) {
    .csl-hero--wydarzenia .csl-hero__heading {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .csl-hero--wydarzenia .csl-hero__heading {
        font-size: 3.25rem;
    }
}

.csl-hero--wydarzenia .csl-hero__text {
    font-size: 1.0625rem;
    color: var(--csl-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Badges */
.csl-evt__hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.csl-evt__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--csl-radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    cursor: default;
}

.csl-evt__hero-badge--gray {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: var(--csl-muted);
}

.csl-evt__hero-badge--teal {
    background: rgba(140, 210, 217, 0.2);
    color: #006670;
}

/* Tooltip */
.csl-evt__hero-badge-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    width: 240px;
    background: var(--csl-dark);
    color: var(--csl-white);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: var(--csl-radius-md);
    box-shadow: var(--csl-shadow-xl);
    z-index: 10;
    pointer-events: none;
}

.csl-evt__hero-badge--gray:hover .csl-evt__hero-badge-tooltip {
    display: block;
}

/* Hero checks */
.csl-evt__hero-checks {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

@media (min-width: 480px) {
    .csl-evt__hero-checks {
        grid-template-columns: 1fr 1fr;
    }
}

.csl-evt__hero-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--csl-muted);
}

.csl-evt__hero-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 210, 217, 0.2);
    color: #006670;
    border-radius: var(--csl-radius-full);
    padding: 6px;
    flex-shrink: 0;
}

/* CTA hints */
.csl-hero--wydarzenia .csl-hero__ctas {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 0;
}

.csl-hero--wydarzenia .csl-hero__cta-col {
    align-items: flex-start;
}

.csl-evt__cta-hint {
    font-size: 0.6875rem;
    color: var(--csl-muted);
    text-align: center;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Video link */
.csl-evt__video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--csl-purple);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-top: 28px;
    transition: opacity var(--csl-transition);
}

.csl-evt__video-link:hover {
    opacity: 0.8;
}

.csl-evt__video-link-icon {
    width: 32px;
    height: 32px;
    background: rgba(82, 15, 125, 0.1);
    border-radius: var(--csl-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--csl-transition);
}

.csl-evt__video-link:hover .csl-evt__video-link-icon {
    background: rgba(82, 15, 125, 0.2);
}

.csl-evt__video-link .csl-icon {
    margin-left: 2px;
}


/* ── 2a. HERO MOCKUP ─────────────────────────────────────────────────────── */

.csl-hero--wydarzenia .csl-hero__visual {
    order: 2;
}

@media (min-width: 1024px) {
    .csl-hero--wydarzenia .csl-hero__visual {
        order: 1;
    }
}

.csl-hero--wydarzenia .csl-hero__card {
    border-radius: 24px;
    border: 1px solid var(--csl-border);
    background: var(--csl-white);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
}

.csl-evt__hero-mockup {
    position: relative;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Topbar */
.csl-evt__mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.csl-evt__mockup-tabs {
    display: flex;
    gap: 20px;
}

.csl-evt__mockup-tab {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #9ca3af;
    padding-bottom: 4px;
    cursor: pointer;
}

.csl-evt__mockup-tab--active {
    font-weight: 700;
    color: var(--csl-purple);
    border-bottom: 2px solid var(--csl-purple);
}

.csl-evt__mockup-tab:not(.csl-evt__mockup-tab--active) {
    display: none;
}

@media (min-width: 480px) {
    .csl-evt__mockup-tab:not(.csl-evt__mockup-tab--active) {
        display: block;
    }
}

.csl-evt__mockup-search {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: var(--csl-radius-sm);
    padding: 6px 10px;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Mockup body */
.csl-evt__mockup-body {
    display: flex;
    gap: 12px;
    min-height: 240px;
}

/* Main event card */
.csl-evt__mockup-card-main {
    flex: 0 0 60%;
    background: rgba(249, 250, 251, 0.5);
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.csl-evt__mockup-featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--csl-purple);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.csl-evt__mockup-cover {
    height: 96px;
    background: #d1d5db url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&q=80&w=400') center/cover no-repeat;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #f3f4f6;
}

.csl-evt__mockup-organizer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.csl-evt__mockup-org-avatar {
    width: 32px;
    height: 32px;
    background: #d1d5db;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.csl-evt__mockup-org-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.csl-evt__mockup-org-role {
    font-size: 0.625rem;
    color: #6b7280;
    margin: 0;
}

.csl-evt__mockup-event-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

.csl-evt__mockup-social {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--csl-white);
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
}

.csl-evt__mockup-avatars {
    display: flex;
}

.csl-evt__mockup-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--csl-white);
    background: #d1d5db;
    display: block;
    flex-shrink: 0;
}

.csl-evt__mockup-avatars .csl-evt__mockup-avatar + .csl-evt__mockup-avatar {
    margin-left: -6px;
    background: #9ca3af;
}

.csl-evt__mockup-avatars .csl-evt__mockup-avatar + .csl-evt__mockup-avatar + .csl-evt__mockup-avatar {
    background: #6b7280;
}

.csl-evt__mockup-social-text {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 500;
}

.csl-evt__mockup-actions {
    margin-top: auto;
    display: flex;
    gap: 6px;
}

.csl-evt__mockup-btn-primary {
    flex: 1;
    background: var(--csl-purple);
    color: var(--csl-white);
    border: none;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 8px 12px;
    cursor: pointer;
}

.csl-evt__mockup-btn-icon {
    background: var(--csl-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 10px;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--csl-shadow-sm);
}

/* Side cards */
.csl-evt__mockup-side {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-evt__mockup-qr-card {
    flex: 1;
    background: var(--csl-white);
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--csl-shadow-sm);
    text-align: center;
}

.csl-evt__mockup-mappin {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #d1d5db;
    display: flex;
}

.csl-evt__mockup-qr-wrap {
    background: var(--csl-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 8px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__mockup-qr-svg {
    display: block;
    border-radius: 6px;
}

.csl-evt__mockup-qr-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
    display: block;
}

.csl-evt__mockup-qr-sub {
    font-size: 0.5625rem;
    color: #6b7280;
    display: block;
}

.csl-evt__mockup-next-card {
    background: linear-gradient(135deg, rgba(140, 210, 217, 0.2), rgba(140, 210, 217, 0.05));
    border: 1px solid rgba(140, 210, 217, 0.3);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.csl-evt__mockup-next-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #006670;
    opacity: 0.15;
    display: flex;
}

.csl-evt__mockup-next-label {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #006670;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    display: block;
}

.csl-evt__mockup-next-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.csl-evt__mockup-next-meta {
    font-size: 0.6875rem;
    color: #4b5563;
    margin-top: 4px;
    display: block;
}

/* Play overlay */
.csl-evt__mockup-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--csl-transition);
    border-radius: inherit;
}

.csl-evt__mockup-play-overlay:hover {
    background: rgba(0, 0, 0, 0.1);
}

.csl-evt__mockup-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-purple);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.2);
    transition: transform var(--csl-transition);
}

.csl-evt__mockup-play-overlay:hover .csl-evt__mockup-play-btn {
    transform: scale(1.1);
}

.csl-evt__mockup-play-btn .csl-icon {
    margin-left: 3px;
}


/* ── 3. PROBLEM SECTION ──────────────────────────────────────────────────── */

.csl-evt__problem {
    padding: var(--csl-section-py) 0;
    background: #F8F9FA;
}

.csl-evt__problem-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.csl-evt__problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .csl-evt__problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .csl-evt__problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.csl-evt__problem-card {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(82, 15, 125, 0.08);
    color: var(--csl-purple);
    border-radius: var(--csl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.csl-evt__problem-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 8px;
}

.csl-evt__problem-desc {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.6;
}

.csl-evt__problem-callout {
    margin-top: 40px;
    background: rgba(82, 15, 125, 0.05);
    border: 1px solid rgba(82, 15, 125, 0.1);
    border-radius: var(--csl-radius-xl);
    padding: 24px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.csl-evt__problem-callout p {
    color: var(--csl-purple);
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0;
}


/* ── 4. VISUAL SHOWCASE ──────────────────────────────────────────────────── */

.csl-evt__showcase {
    padding: var(--csl-section-py) 0;
    background: var(--csl-white);
    border-top: 1px solid var(--csl-border);
    border-bottom: 1px solid var(--csl-border);
}

.csl-evt__showcase-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.csl-evt__showcase-header .csl-badge--teal {
    margin-bottom: 16px;
    display: inline-block;
}

.csl-evt__showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .csl-evt__showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.csl-evt__showcase-card {
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__showcase-card--light {
    background: #F8F9FA;
    border: 1px solid var(--csl-border);
}

.csl-evt__showcase-card--dark {
    background: #0f172a;
    border: 1px solid #1e293b;
}

.csl-evt__showcase-card--purple-tint {
    background: rgba(82, 15, 125, 0.04);
    border: 1px solid rgba(82, 15, 125, 0.08);
}

.csl-evt__showcase-card--teal-tint {
    background: rgba(140, 210, 217, 0.1);
    border: 1px solid rgba(140, 210, 217, 0.3);
}

.csl-evt__showcase-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
}

.csl-evt__showcase-card-title--white {
    color: var(--csl-white);
}

.csl-evt__showcase-label {
    font-size: 0.75rem;
    color: var(--csl-muted);
    text-align: center;
    margin-top: 20px;
}

.csl-evt__showcase-label--muted {
    color: #64748b;
}

/* Event card (Karta 1) */
.csl-evt__showcase-event-card {
    width: 100%;
    max-width: 320px;
    background: var(--csl-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: var(--csl-shadow-md);
    transition: transform var(--csl-transition-md);
}

.csl-evt__showcase-card:hover .csl-evt__showcase-event-card {
    transform: scale(1.04);
}

.csl-evt__showcase-event-cover {
    height: 120px;
    background: #d1d5db url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&q=80&w=400') center/cover no-repeat;
    position: relative;
}

.csl-evt__showcase-event-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--csl-purple);
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__showcase-event-body {
    padding: 16px;
}

.csl-evt__showcase-event-date {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 4px;
}

.csl-evt__showcase-event-name {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 12px;
}

.csl-evt__showcase-event-avatars {
    display: flex;
    margin-bottom: 12px;
}

.csl-evt__mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--csl-white);
    background: #d1d5db;
    display: block;
    flex-shrink: 0;
}

.csl-evt__mini-avatar + .csl-evt__mini-avatar {
    margin-left: -6px;
    background: #9ca3af;
}

.csl-evt__mini-avatar + .csl-evt__mini-avatar + .csl-evt__mini-avatar {
    margin-left: -6px;
    background: #6b7280;
}

.csl-evt__mini-avatar--count {
    margin-left: -6px;
    background: #f3f4f6;
    font-size: 0.5rem;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csl-evt__showcase-join-btn {
    width: 100%;
    background: var(--csl-purple);
    color: var(--csl-white);
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px;
    cursor: pointer;
    box-shadow: var(--csl-shadow-sm);
    transition: background var(--csl-transition);
}

.csl-evt__showcase-join-btn:hover {
    background: var(--csl-purple-hover);
}

/* Live card (Karta 2) */
.csl-evt__showcase-live-card {
    width: 100%;
    max-width: 320px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #374151;
    display: flex;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    transition: transform var(--csl-transition-md);
    cursor: pointer;
}

.csl-evt__showcase-card:hover .csl-evt__showcase-live-card {
    transform: translateY(-6px);
}

.csl-evt__showcase-live-player {
    flex: 0 0 66%;
    height: 160px;
    background: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&q=80&w=300') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csl-evt__showcase-live-player::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.csl-evt__showcase-live-player .csl-icon {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
}

.csl-evt__showcase-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc2626;
    color: var(--csl-white);
    font-size: 0.5rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.csl-evt__live-dot {
    width: 6px;
    height: 6px;
    background: var(--csl-white);
    border-radius: 50%;
    display: block;
    animation: csl-evt-pulse 1.5s infinite;
}

@keyframes csl-evt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.csl-evt__showcase-live-chat {
    flex: 0 0 34%;
    background: #1f2937;
    border-left: 1px solid #374151;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.csl-evt__showcase-chat-header {
    border-bottom: 1px solid #374151;
    padding-bottom: 6px;
    margin-bottom: 8px;
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--csl-white);
    text-align: center;
}

.csl-evt__showcase-chat-msg {
    background: #374151;
    border-radius: 4px;
    padding: 6px;
    margin-bottom: 6px;
}

.csl-evt__showcase-chat-msg--donation {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.csl-evt__chat-user {
    font-size: 0.4375rem;
    font-weight: 700;
    color: #93c5fd;
    margin: 0 0 2px;
}

.csl-evt__chat-user--yellow {
    color: #fbbf24;
}

.csl-evt__chat-text {
    font-size: 0.5rem;
    color: var(--csl-white);
    line-height: 1.3;
    margin: 0;
}

.csl-evt__showcase-chat-input {
    margin-top: auto;
    height: 16px;
    background: #374151;
    border-radius: 8px;
    width: 100%;
}

/* Calendar card (Karta 3) */
.csl-evt__showcase-cal {
    width: 100%;
    max-width: 320px;
    background: var(--csl-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: var(--csl-shadow-md);
    padding: 16px;
    transition: transform var(--csl-transition-md);
}

.csl-evt__showcase-card:hover .csl-evt__showcase-cal {
    transform: scale(1.04);
}

.csl-evt__showcase-cal-days {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.csl-evt__cal-day {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    color: #6b7280;
}

.csl-evt__cal-day span {
    font-size: 0.625rem;
    display: block;
    margin-bottom: 2px;
}

.csl-evt__cal-day strong {
    font-size: 1rem;
    font-weight: 700;
    display: block;
}

.csl-evt__cal-day--active {
    background: var(--csl-purple);
    border-color: var(--csl-purple);
    color: var(--csl-white);
    box-shadow: var(--csl-shadow-md);
}

.csl-evt__showcase-agenda {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.csl-evt__agenda-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.csl-evt__agenda-time {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #1f2937;
    width: 36px;
    flex-shrink: 0;
}

.csl-evt__agenda-time--muted {
    color: #9ca3af;
}

.csl-evt__agenda-item {
    flex: 1;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
}

.csl-evt__agenda-item--purple {
    background: rgba(82, 15, 125, 0.08);
    border-left: 4px solid var(--csl-purple);
    color: var(--csl-purple);
}

.csl-evt__agenda-item--teal {
    background: rgba(140, 210, 217, 0.2);
    border-left: 4px solid #006670;
    color: #006670;
}

/* Ticket card (Karta 4) */
.csl-evt__showcase-ticket {
    width: 100%;
    max-width: 260px;
    background: var(--csl-white);
    border-radius: 16px;
    border: 2px dashed #d1d5db;
    overflow: visible;
    position: relative;
    box-shadow: var(--csl-shadow-md);
    transition: transform var(--csl-transition-md);
}

.csl-evt__showcase-card:hover .csl-evt__showcase-ticket {
    transform: translateY(-6px);
}

.csl-evt__ticket-notch {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: rgba(140, 210, 217, 0.1);
    border-radius: 50%;
    display: block;
}

.csl-evt__ticket-notch--left  { left: -8px; }
.csl-evt__ticket-notch--right { right: -8px; }

.csl-evt__ticket-header {
    background: #111827;
    padding: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.csl-evt__ticket-header::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 60px;
    height: 60px;
    background: #eab308;
    border-radius: 50%;
    opacity: 0.2;
}

.csl-evt__ticket-header h4 {
    color: var(--csl-white);
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.csl-evt__ticket-header p {
    color: #fbbf24;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.csl-evt__ticket-qr {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px dashed #f3f4f6;
}

.csl-evt__ticket-qr svg {
    margin-bottom: 6px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    padding: 4px;
}

.csl-evt__ticket-qr span {
    font-size: 0.625rem;
    color: #6b7280;
}

.csl-evt__ticket-footer {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    border-radius: 0 0 14px 14px;
}

.csl-evt__ticket-footer span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
}

.csl-evt__ticket-footer strong {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--csl-dark);
}


/* ── 5. CORE FEATURES (Tab-switcher) ─────────────────────────────────────── */

.csl-evt__features {
    padding: var(--csl-section-py) 0;
    background: var(--csl-white);
    border-top: 1px solid var(--csl-border);
    border-bottom: 1px solid var(--csl-border);
}

.csl-evt__features-heading {
    margin-bottom: 48px;
}

.csl-evt__features-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .csl-evt__features-layout {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }
}

/* Tab list */
.csl-evt__features-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 1024px) {
    .csl-evt__features-tabs {
        flex: 0 0 33%;
    }
}

.csl-evt__feature-tab {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--csl-transition), border-color var(--csl-transition);
}

.csl-evt__feature-tab:hover {
    background: #f9fafb;
}

.csl-evt__feature-tab--active {
    background: #F8F9FA;
    border-color: var(--csl-border);
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__feature-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--csl-radius-sm);
    flex-shrink: 0;
    transition: background var(--csl-transition), color var(--csl-transition);
    background: #f3f4f6;
    color: #6b7280;
}

.csl-evt__feature-tab--active .csl-evt__feature-tab-icon {
    background: rgba(82, 15, 125, 0.08);
    color: var(--csl-purple);
}

.csl-evt__feature-tab-text h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--csl-muted);
    margin-bottom: 0;
    transition: color var(--csl-transition);
}

.csl-evt__feature-tab--active .csl-evt__feature-tab-text h4 {
    color: var(--csl-dark);
}

.csl-evt__feature-tab-text p {
    font-size: 0.75rem;
    color: var(--csl-muted);
    line-height: 1.5;
    margin-top: 6px;
    display: none;
}

.csl-evt__feature-tab--active .csl-evt__feature-tab-text p {
    display: block;
}

/* Panel wrap */
.csl-evt__features-panel-wrap {
    flex: 1;
}

.csl-evt__feature-panel {
    display: none;
}

.csl-evt__feature-panel--active {
    display: block;
}

.csl-evt__feature-panel .csl-evt__feat-mockup {
    background: #F8F9FA;
    border: 1px solid var(--csl-border);
    border-radius: 24px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    box-shadow: var(--csl-shadow-sm);
    position: relative;
}

.csl-evt__feature-label {
    font-size: 0.875rem;
    color: var(--csl-muted);
    font-style: italic;
    margin-top: 16px;
}

/* Mockup: Radar */
.csl-evt__feat-mockup--radar {
    background: #e5e7eb;
    justify-content: center;
    align-items: center;
}

.csl-evt__radar-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

.csl-evt__radar-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 112, 0.5);
    background: rgba(140, 210, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.csl-evt__radar-dot {
    width: 12px;
    height: 12px;
    background: #006670;
    border-radius: 50%;
    display: block;
    animation: csl-evt-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes csl-evt-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.csl-evt__radar-popup {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--csl-white);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--csl-shadow-md);
    z-index: 2;
}

.csl-evt__radar-popup-thumb {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 8px;
    flex-shrink: 0;
}

.csl-evt__radar-popup-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin: 0;
}

.csl-evt__radar-popup-dist {
    font-size: 0.625rem;
    color: var(--csl-muted);
    margin: 2px 0 0;
}

/* Mockup: Cinema */
.csl-evt__feat-mockup--cinema {
    background: #111827;
    padding: 8px;
    gap: 8px;
}

.csl-evt__cinema-player {
    flex: 1;
    background: #000;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csl-evt__cinema-player .csl-icon {
    color: rgba(255, 255, 255, 0.2);
}

.csl-evt__cinema-live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc2626;
    color: var(--csl-white);
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

.csl-evt__cinema-viewers {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--csl-white);
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
}

.csl-evt__cinema-sidebar {
    width: 33%;
    background: #1f2937;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.csl-evt__cinema-chat-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #374151;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.csl-evt__cinema-chat-tab {
    font-size: 0.5625rem;
    color: #6b7280;
    padding-bottom: 2px;
}

.csl-evt__cinema-chat-tab--active {
    color: var(--csl-white);
    font-weight: 700;
    border-bottom: 1px solid var(--csl-teal);
}

.csl-evt__cinema-chat-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.5;
}

.csl-evt__cinema-line {
    height: 10px;
    background: #374151;
    border-radius: 4px;
    width: 75%;
}

.csl-evt__cinema-line--full { width: 100%; }
.csl-evt__cinema-line--half { width: 50%; }

.csl-evt__cinema-input {
    height: 20px;
    background: #374151;
    border-radius: 10px;
    margin-top: auto;
}

/* Mockup: Agenda */
.csl-evt__feat-mockup--agenda {
    background: var(--csl-white);
    padding: 16px;
    flex-direction: column;
}

.csl-evt__agenda-days {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.csl-evt__feat-cal-day {
    width: 48px;
    height: 56px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.csl-evt__feat-cal-day span { font-size: 0.5625rem; }
.csl-evt__feat-cal-day strong { font-size: 0.875rem; font-weight: 700; }

.csl-evt__feat-cal-day--active {
    background: var(--csl-purple);
    border-color: var(--csl-purple);
    color: var(--csl-white);
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__agenda-events {
    flex: 1;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.csl-evt__agenda-feat-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.csl-evt__agenda-feat-time {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #1f2937;
    width: 36px;
    flex-shrink: 0;
}

.csl-evt__agenda-feat-time--muted { color: #9ca3af; }

.csl-evt__agenda-feat-item {
    flex: 1;
    height: 32px;
    background: var(--csl-white);
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 0.625rem;
    color: #6b7280;
}

.csl-evt__agenda-feat-item--purple {
    background: rgba(82, 15, 125, 0.08);
    border-left: 4px solid var(--csl-purple);
    border-top: none;
    border-right: none;
    border-bottom: none;
    color: var(--csl-purple);
    font-weight: 600;
}

/* Mockup: Limits */
.csl-evt__feat-mockup--limits {
    background: var(--csl-white);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.csl-evt__limits-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--csl-dark);
    border-bottom: 1px solid var(--csl-border);
    padding-bottom: 10px;
    margin: 0;
}

.csl-evt__limits-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #374151;
}

.csl-evt__limits-toggle {
    width: 32px;
    height: 16px;
    background: var(--csl-purple);
    border-radius: 8px;
    position: relative;
    display: block;
}

.csl-evt__limits-toggle-knob {
    width: 12px;
    height: 12px;
    background: var(--csl-white);
    border-radius: 50%;
    position: absolute;
    right: 2px;
    top: 2px;
    display: block;
}

.csl-evt__limits-bar-label {
    font-size: 0.625rem;
    color: var(--csl-muted);
    display: block;
    margin-bottom: 6px;
}

.csl-evt__limits-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: var(--csl-radius-full);
}

.csl-evt__limits-bar-fill {
    height: 100%;
    width: 25%;
    background: var(--csl-purple);
    border-radius: var(--csl-radius-full);
}

.csl-evt__limits-stream-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #374151;
}

.csl-evt__limits-on {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #16a34a;
}

/* Mockup: Formal */
.csl-evt__feat-mockup--formal {
    background: var(--csl-white);
    flex-direction: column;
}

.csl-evt__formal-warning {
    background: #fefce8;
    border-bottom: 1px solid #fef08a;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.csl-evt__formal-warning .csl-icon {
    color: #ca8a04;
    flex-shrink: 0;
}

.csl-evt__formal-warning span {
    font-size: 0.5625rem;
    color: #92400e;
    font-weight: 500;
}

.csl-evt__formal-msgs {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-evt__formal-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.csl-evt__formal-avatar {
    width: 24px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.csl-evt__formal-bubble {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    border-top-left-radius: 2px;
    padding: 8px;
}

.csl-evt__formal-user {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--csl-purple);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.csl-evt__formal-line {
    height: 6px;
    width: 80px;
    background: #d1d5db;
    border-radius: 4px;
}

.csl-evt__formal-line--long {
    width: 110px;
}

/* SEO paragraph and tags */
.csl-evt__features-seo {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.7;
    margin-top: 40px;
    max-width: 720px;
}

.csl-evt__features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.csl-evt__tag {
    background: #F8F9FA;
    color: var(--csl-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--csl-radius-full);
    border: 1px solid var(--csl-border);
}


/* ── 6. EVENT-FUNNEL ─────────────────────────────────────────────────────── */

.csl-evt__funnel {
    padding: var(--csl-section-py) 0;
    background: #F8F9FA;
}

.csl-evt__funnel-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.csl-evt__funnel-block {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .csl-evt__funnel-block {
        flex-direction: row;
        align-items: center;
        gap: 64px;
        padding: 48px;
    }
}

/* Steps */
.csl-evt__funnel-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.csl-evt__funnel-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13px;
    width: 2px;
    background: var(--csl-border);
}

.csl-evt__funnel-step {
    display: flex;
    gap: 24px;
    padding-left: 4px;
    position: relative;
}

.csl-evt__funnel-step-num {
    width: 28px;
    height: 28px;
    background: var(--csl-white);
    border: 2px solid var(--csl-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--csl-purple);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 2px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__funnel-step-body h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 6px;
}

.csl-evt__funnel-path {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--csl-purple);
    margin-bottom: 4px;
    line-height: 1.5;
}

.csl-evt__funnel-result {
    font-size: 0.75rem;
    color: var(--csl-muted);
    line-height: 1.5;
}

/* Funnel video mockup */
.csl-evt__funnel-visual {
    flex: 1;
}

.csl-evt__funnel-video {
    width: 100%;
    background: #131524;
    border-radius: 16px;
    border: 1px solid var(--csl-border);
    overflow: hidden;
    position: relative;
    padding: 24px;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: var(--csl-shadow-xl);
    transition: filter var(--csl-transition);
}

.csl-evt__funnel-video:hover .csl-evt__funnel-nodes {
    opacity: 0.4;
}

.csl-evt__funnel-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    opacity: 0.6;
}

.csl-evt__funnel-video-header span {
    color: var(--csl-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.csl-evt__funnel-active-badge {
    background: var(--csl-purple);
    color: var(--csl-white);
    font-size: 0.5625rem;
    padding: 3px 8px;
    border-radius: 4px;
}

.csl-evt__funnel-nodes {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.8;
    transition: opacity var(--csl-transition);
}

.csl-evt__funnel-node {
    flex: 0 0 30%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.csl-evt__funnel-node .csl-icon { color: var(--csl-teal); }
.csl-evt__funnel-node span { font-size: 0.5625rem; font-weight: 700; color: var(--csl-white); }

.csl-evt__funnel-node--highlight {
    background: rgba(82, 15, 125, 0.2);
    border-color: var(--csl-purple);
    box-shadow: 0 0 15px rgba(82, 15, 125, 0.5);
}

.csl-evt__funnel-node--highlight .csl-icon { color: var(--csl-white); }

.csl-evt__funnel-arrow {
    flex: 0 0 16px;
    height: 2px;
    background: rgba(140, 210, 217, 0.3);
}

.csl-evt__funnel-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.csl-evt__funnel-play-btn .csl-icon {
    display: none;
}

.csl-evt__funnel-video:hover .csl-evt__funnel-play-btn {
    background: transparent;
}

/* Show play circle */
.csl-evt__funnel-video::after {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play button via pseudo-element workaround — use actual element */
.csl-evt__funnel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--csl-white);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-purple);
    z-index: 10;
    pointer-events: none;
    transition: transform var(--csl-transition);
}

.csl-evt__funnel-play-btn .csl-icon {
    display: block;
    margin-left: 3px;
}

.csl-evt__funnel-video:hover .csl-evt__funnel-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.csl-evt__funnel-video-caption {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 5;
    pointer-events: none;
}

.csl-evt__funnel-video-hint {
    font-size: 0.75rem;
    color: var(--csl-muted);
    text-align: center;
    margin-top: 12px;
}

/* Perspectives */
.csl-evt__perspectives {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .csl-evt__perspectives {
        grid-template-columns: 1fr 1fr;
    }
}

.csl-evt__perspective-card {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--csl-shadow-sm);
    display: flex;
    flex-direction: column;
}

.csl-evt__perspective-mockup {
    aspect-ratio: 16 / 9;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Organizer mockup */
.csl-evt__perspective-mockup--organizer {
    padding: 20px;
    gap: 12px;
    background: var(--csl-white);
}

.csl-evt__porg-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 4px;
}

.csl-evt__porg-line--short { width: 33%; }

.csl-evt__porg-tabs {
    display: flex;
    gap: 8px;
}

.csl-evt__porg-tab {
    height: 24px;
    width: 80px;
    background: #f3f4f6;
    border-radius: 6px;
}

.csl-evt__porg-tab--active {
    background: rgba(82, 15, 125, 0.1);
}

.csl-evt__porg-body {
    flex: 1;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.csl-evt__porg-main {
    flex: 0 0 75%;
    background: var(--csl-white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__porg-main-title {
    height: 10px;
    width: 25%;
    background: #e5e7eb;
    border-radius: 4px;
}

.csl-evt__porg-main-content {
    flex: 1;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px dashed #d1d5db;
}

.csl-evt__porg-sidebar {
    flex: 0 0 25%;
    background: var(--csl-white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__porg-sidebar-item {
    height: 20px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 4px;
}

.csl-evt__porg-sidebar-item--green {
    background: #f0fdf4;
    border-color: #dcfce7;
}

/* Participant mockup */
.csl-evt__perspective-mockup--participant {
    background: var(--csl-white);
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.csl-evt__ppart-dots {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 4px;
}

.csl-evt__ppart-dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    display: block;
}

.csl-evt__ppart-dot--red { background: #ef4444; }

.csl-evt__ppart-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(140, 210, 217, 0.3), rgba(140, 210, 217, 0.1));
    border: 1px solid rgba(140, 210, 217, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006670;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__ppart-title-bar {
    height: 12px;
    width: 50%;
    background: #1f2937;
    border-radius: 4px;
}

.csl-evt__ppart-sub-bar {
    height: 8px;
    width: 33%;
    background: #9ca3af;
    border-radius: 4px;
}

.csl-evt__ppart-cta {
    background: var(--csl-purple);
    color: var(--csl-white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: var(--csl-shadow-md);
}

.csl-evt__perspective-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 8px;
}

.csl-evt__perspective-desc {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.65;
}

/* Monetization */
.csl-evt__monetization-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .csl-evt__monetization-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.csl-evt__monetization-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin: 0;
}

.csl-evt__monetization-video-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--csl-purple);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: opacity var(--csl-transition);
}

.csl-evt__monetization-video-link:hover { opacity: 0.7; }
.csl-evt__monetization-video-link .csl-icon { fill: currentColor; }

.csl-evt__monetization-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .csl-evt__monetization-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .csl-evt__monetization-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.csl-evt__monet-card {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__monet-icon {
    width: 40px;
    height: 40px;
    background: rgba(82, 15, 125, 0.08);
    color: var(--csl-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.csl-evt__monet-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 8px;
}

.csl-evt__monet-card p {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.6;
}


/* ── 7. RESULTS ──────────────────────────────────────────────────────────── */

.csl-evt__results {
    padding: var(--csl-section-py) 0;
    background: var(--csl-white);
    border-top: 1px solid var(--csl-border);
}

.csl-evt__results .csl-section__title {
    margin-bottom: 40px;
}

.csl-evt__results-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .csl-evt__results-layout {
        flex-direction: row;
        align-items: center;
    }
}

.csl-evt__results-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.csl-evt__result-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.csl-evt__result-icon {
    background: rgba(140, 210, 217, 0.2);
    color: #006670;
    border-radius: 8px;
    padding: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
}

.csl-evt__result-item h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 4px;
}

.csl-evt__result-item p {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.6;
}

/* Chart */
.csl-evt__results-chart {
    flex: 1;
    width: 100%;
    background: #F8F9FA;
    border: 1px solid var(--csl-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--csl-shadow-sm);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
}

.csl-evt__results-chart h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 16px;
}

.csl-evt__chart-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    gap: 16px;
}

.csl-evt__chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 64px;
}

.csl-evt__chart-label {
    font-size: 0.6875rem;
    color: #6b7280;
    text-align: center;
    order: -1;
}

.csl-evt__chart-label--purple {
    color: var(--csl-purple);
    font-weight: 700;
}

.csl-evt__chart-bar {
    width: 48px;
    background: rgba(140, 210, 217, 0.3);
    border-radius: 4px 4px 0 0;
}

.csl-evt__chart-bar--30 { height: 30%; }
.csl-evt__chart-bar--45 { height: 45%; background: rgba(140, 210, 217, 0.6); }
.csl-evt__chart-bar--90 { height: 90%; }
.csl-evt__chart-bar--purple { background: var(--csl-purple); }

.csl-evt__chart-caption {
    font-size: 0.75rem;
    color: var(--csl-muted);
    text-align: center;
    margin-top: 12px;
}


/* ── 8. SCENARIOS (Dark) ─────────────────────────────────────────────────── */

.csl-evt__scenarios {
    padding: var(--csl-section-py) 0;
    background: #131524;
    color: var(--csl-white);
}

.csl-evt__scenarios-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.csl-evt__scenarios-title {
    color: var(--csl-white);
}

.csl-evt__scenarios-subtitle {
    color: #9ca3af;
}

.csl-evt__scenarios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .csl-evt__scenarios-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.csl-evt__scenario-card {
    background: #1E2136;
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--csl-shadow-lg);
}

.csl-evt__scenario-pill {
    display: inline-block;
    background: rgba(140, 210, 217, 0.1);
    color: var(--csl-teal);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--csl-radius-full);
    margin-bottom: 16px;
}

.csl-evt__scenario-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--csl-white);
    margin-bottom: 12px;
}

.csl-evt__scenario-card p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.65;
}


/* ── 9. ECOSYSTEM ────────────────────────────────────────────────────────── */

.csl-evt__ecosystem {
    padding: var(--csl-section-py) 0;
    background: #F8F9FA;
    border-bottom: 1px solid var(--csl-border);
}

.csl-evt__ecosystem-header {
    text-align: center;
    margin-bottom: 36px;
}

.csl-evt__ecosystem-header h2 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--csl-dark);
    margin-bottom: 8px;
}

.csl-evt__ecosystem-header p {
    font-size: 0.875rem;
    color: var(--csl-muted);
}

.csl-evt__ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .csl-evt__ecosystem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.csl-evt__eco-card {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: box-shadow var(--csl-transition), border-color var(--csl-transition);
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__eco-card:hover {
    box-shadow: var(--csl-shadow-md);
    border-color: rgba(82, 15, 125, 0.2);
}

.csl-evt__eco-icon {
    width: 48px;
    height: 48px;
    background: #F8F9FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-muted);
    margin-bottom: 10px;
    transition: background var(--csl-transition), color var(--csl-transition);
}

.csl-evt__eco-card:hover .csl-evt__eco-icon {
    background: rgba(82, 15, 125, 0.06);
    color: var(--csl-purple);
}

.csl-evt__eco-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--csl-dark);
}


/* ── 10. FAQ & IMPLEMENTATION ────────────────────────────────────────────── */

.csl-evt__faq {
    padding: var(--csl-section-py) 0;
    background: var(--csl-white);
}

/* Steps */
.csl-evt__steps-wrap {
    margin-bottom: 64px;
}

.csl-evt__steps-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--csl-dark);
    margin-bottom: 32px;
}

.csl-evt__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
}

@media (min-width: 1024px) {
    .csl-evt__steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .csl-evt__steps::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: var(--csl-border);
        z-index: 0;
    }
}

.csl-evt__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.csl-evt__step-num {
    width: 48px;
    height: 48px;
    background: var(--csl-white);
    border: 2px solid var(--csl-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-purple);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__step h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 6px;
}

.csl-evt__step p {
    font-size: 0.875rem;
    color: var(--csl-muted);
}

.csl-evt__steps-more {
    margin-top: 32px;
    text-align: center;
}

.csl-evt__steps-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--csl-purple);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: opacity var(--csl-transition);
}

.csl-evt__steps-link:hover { opacity: 0.7; }

/* Transparency box */
.csl-evt__transparency {
    max-width: 720px;
    margin: 0 auto 64px;
    background: #F8F9FA;
    border: 1px solid var(--csl-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--csl-shadow-sm);
}

@media (min-width: 640px) {
    .csl-evt__transparency {
        flex-direction: row;
        gap: 24px;
    }
}

.csl-evt__transparency-icon {
    width: 64px;
    height: 64px;
    background: rgba(82, 15, 125, 0.08);
    color: var(--csl-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.csl-evt__transparency-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 12px;
}

.csl-evt__transparency-body {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.7;
}

.csl-evt__transparency-body p {
    margin-bottom: 10px;
}

.csl-evt__transparency-body ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Accordion */
.csl-evt__accordion-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.csl-evt__accordion-heading {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--csl-dark);
    text-align: center;
    margin-bottom: 24px;
}

.csl-evt__accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-evt__accordion-item {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--csl-shadow-sm);
}

.csl-evt__accordion-btn {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--csl-font);
    transition: background var(--csl-transition);
}

.csl-evt__accordion-btn:hover {
    background: #f9fafb;
}

.csl-evt__accordion-btn span {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    line-height: 1.4;
}

.csl-evt__accordion-btn .csl-icon {
    color: var(--csl-muted);
    flex-shrink: 0;
    transition: transform var(--csl-transition);
}

.csl-evt__accordion-item--open .csl-evt__accordion-btn .csl-icon {
    transform: rotate(180deg);
}

.csl-evt__accordion-panel {
    padding: 0 24px 20px;
    border-top: 1px solid #f9fafb;
}

.csl-evt__accordion-panel p {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.7;
    padding-top: 16px;
}


/* ── 11. BOFU CTA ────────────────────────────────────────────────────────── */

.csl-evt__bofu {
    background: var(--csl-purple);
    padding: 80px 0;
    text-align: center;
}

@media (min-width: 768px) {
    .csl-evt__bofu {
        padding: 96px 0;
    }
}

.csl-evt__bofu-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--csl-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .csl-evt__bofu-title {
        font-size: 2.75rem;
    }
}

.csl-evt__bofu-desc {
    font-size: 1rem;
    color: #e5e7eb;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.csl-evt__bofu-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .csl-evt__bofu-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.csl-evt__bofu-cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.csl-evt__bofu-hint {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.csl-evt__bofu-eco-link {
    margin-top: 32px;
}

.csl-evt__bofu-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color var(--csl-transition);
}

.csl-evt__bofu-link:hover {
    color: var(--csl-white);
}

.csl-evt__bofu-link .csl-icon {
    transition: transform var(--csl-transition);
}

.csl-evt__bofu-link:hover .csl-icon {
    transform: translateX(3px);
}


/* ── BUTTONS — white + outline-white variants ────────────────────────────── */

.csl-btn--white {
    background: var(--csl-white);
    color: var(--csl-purple);
    box-shadow: var(--csl-shadow-lg);
    border: none;
}

.csl-btn--white:hover {
    background: #f9fafb;
}

.csl-btn--outline-white {
    background: transparent;
    color: var(--csl-white);
    border: 1px solid var(--csl-white);
}

.csl-btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

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


/* ── MODALS ──────────────────────────────────────────────────────────────── */

/* Scrollock */
body.csl-modal-open {
    overflow: hidden;
}

/* Base modal wrapper */
.csl-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: csl-modal-fadein 0.2s ease;
}

.csl-modal[hidden] {
    display: none;
}

@keyframes csl-modal-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.csl-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

/* Modal box */
.csl-modal__box {
    position: relative;
    background: var(--csl-white);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    animation: csl-modal-slidein 0.25s ease;
    z-index: 1;
}

.csl-modal__box--wide {
    max-width: 640px;
}

@keyframes csl-modal-slidein {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.csl-modal__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--csl-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F9FA;
    gap: 16px;
}

.csl-modal__header--sticky {
    position: sticky;
    top: 0;
    z-index: 5;
}

.csl-modal__header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin: 0 0 2px;
}

.csl-modal__header p {
    font-size: 0.6875rem;
    color: var(--csl-muted);
    margin: 0;
}

.csl-modal__close-sm {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-muted);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: var(--csl-shadow-sm);
    transition: color var(--csl-transition);
}

.csl-modal__close-sm:hover { color: var(--csl-dark); }

.csl-modal__body {
    padding: 24px;
}

.csl-modal__body--scroll {
    max-height: 70vh;
    overflow-y: auto;
}

/* Video modal */
.csl-evt__video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid #374151;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csl-evt__video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-white);
    cursor: pointer;
    z-index: 10;
    transition: background var(--csl-transition);
}

.csl-evt__video-modal-close:hover { background: rgba(0, 0, 0, 0.7); }

.csl-evt__video-placeholder {
    text-align: center;
    color: #6b7280;
}

.csl-evt__video-placeholder .csl-icon {
    display: block;
    margin: 0 auto 16px;
    opacity: 0.4;
}

/* Contact sheet */
.csl-modal__sheet {
    position: relative;
    background: var(--csl-white);
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: csl-modal-slidein 0.25s ease;
    z-index: 1;
}

@media (max-width: 640px) {
    .csl-modal--bottom {
        align-items: flex-end;
        padding: 0;
    }

    .csl-modal__sheet {
        border-radius: 24px 24px 0 0;
        max-width: 100%;
    }
}

.csl-evt__contact-body {
    padding: 16px;
}

.csl-evt__contact-lead {
    font-size: 0.875rem;
    color: var(--csl-muted);
    padding: 0 8px;
    margin-bottom: 12px;
}

.csl-evt__contact-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.csl-evt__contact-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: var(--csl-font);
    transition: background var(--csl-transition), border-color var(--csl-transition);
    text-decoration: none;
    color: inherit;
}

.csl-evt__contact-option:hover {
    background: #F8F9FA;
    border-color: var(--csl-border);
}

.csl-evt__contact-opt-icon {
    background: rgba(82, 15, 125, 0.08);
    color: var(--csl-purple);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.csl-evt__contact-opt-text {
    flex: 1;
}

.csl-evt__contact-opt-text strong {
    display: block;
    font-size: 0.875rem;
    color: var(--csl-dark);
    margin-bottom: 2px;
}

.csl-evt__contact-opt-text span {
    font-size: 0.75rem;
    color: var(--csl-muted);
}

.csl-evt__contact-option > .csl-icon {
    color: var(--csl-muted);
    opacity: 0;
    transition: opacity var(--csl-transition);
    flex-shrink: 0;
}

.csl-evt__contact-option:hover > .csl-icon {
    opacity: 1;
}

/* Form modal */
.csl-evt__form-modal .csl-modal__header {
    align-items: flex-start;
}

.csl-evt__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.csl-evt__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.csl-evt__form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--csl-dark);
}

.csl-evt__form-group input,
.csl-evt__form-group select,
.csl-evt__form-group textarea {
    font-family: var(--csl-font);
    font-size: 0.875rem;
    color: var(--csl-dark);
    border: 1px solid var(--csl-border);
    border-radius: 12px;
    padding: 10px 14px;
    background: var(--csl-white);
    transition: border-color var(--csl-transition), box-shadow var(--csl-transition);
    width: 100%;
}

.csl-evt__form-group input:focus,
.csl-evt__form-group select:focus,
.csl-evt__form-group textarea:focus {
    outline: none;
    border-color: var(--csl-purple);
    box-shadow: 0 0 0 3px rgba(82, 15, 125, 0.15);
}

.csl-evt__form-group select {
    background: #f9fafb;
    cursor: pointer;
}

.csl-evt__form-group textarea {
    resize: none;
}

.csl-evt__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 480px) {
    .csl-evt__form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.csl-evt__form-hint {
    font-size: 0.75rem;
    color: var(--csl-muted);
    font-weight: 400;
}

/* Checklist */
.csl-evt__checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 480px) {
    .csl-evt__checklist {
        grid-template-columns: 1fr 1fr;
    }
}

.csl-evt__check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--csl-border);
    border-radius: 12px;
    cursor: pointer;
    transition: background var(--csl-transition);
}

.csl-evt__check-item:hover {
    background: #f9fafb;
}

.csl-evt__check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: var(--csl-purple);
    flex-shrink: 0;
    border: none;
    padding: 0;
    border-radius: 4px;
}

.csl-evt__check-item span {
    font-size: 0.875rem;
    color: var(--csl-dark);
    line-height: 1.4;
}

.csl-evt__form-footer {
    padding-top: 16px;
    border-top: 1px solid var(--csl-border);
}

.csl-evt__form-rodo {
    font-size: 0.625rem;
    color: var(--csl-muted);
    text-align: center;
    margin-top: 10px;
}

/* Success state */
.csl-evt__form-success {
    text-align: center;
    padding: 32px 16px;
}

.csl-evt__success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.csl-evt__success-icon--teal {
    background: rgba(140, 210, 217, 0.2);
    color: #006670;
}

.csl-evt__success-icon--purple {
    background: rgba(82, 15, 125, 0.1);
    color: var(--csl-purple);
}

.csl-evt__form-success h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin-bottom: 10px;
}

.csl-evt__form-success p {
    font-size: 0.9375rem;
    color: var(--csl-muted);
    max-width: 360px;
    margin: 0 auto 24px;
    line-height: 1.65;
}

.csl-evt__form-close-link {
    background: none;
    border: none;
    color: var(--csl-purple);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: var(--csl-font);
}

/* Floating button */
.csl-evt__float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--csl-purple);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-white);
    cursor: pointer;
    z-index: 40;
    box-shadow: 0 8px 30px rgba(82, 15, 125, 0.3);
    transition: transform var(--csl-transition);
    animation: csl-evt-float-pulse 3s ease-in-out infinite;
}

.csl-evt__float-btn:hover {
    transform: scale(1.08);
    animation: none;
}

@keyframes csl-evt-float-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(82, 15, 125, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(82, 15, 125, 0.5); }
}


/* ── BUDDYBOSS OVERRIDES ─────────────────────────────────────────────────── */

.csl-landing-body .csl-evt__trust-strip,
.csl-landing-body .csl-hero--wydarzenia,
.csl-landing-body .csl-evt__problem,
.csl-landing-body .csl-evt__showcase,
.csl-landing-body .csl-evt__features,
.csl-landing-body .csl-evt__funnel,
.csl-landing-body .csl-evt__results,
.csl-landing-body .csl-evt__scenarios,
.csl-landing-body .csl-evt__ecosystem,
.csl-landing-body .csl-evt__faq,
.csl-landing-body .csl-evt__bofu {
    box-sizing: border-box;
}

.csl-landing-body .csl-evt__accordion-btn,
.csl-landing-body .csl-evt__feature-tab,
.csl-landing-body .csl-evt__eco-card,
.csl-landing-body .csl-evt__float-btn,
.csl-landing-body .csl-evt__contact-option,
.csl-landing-body .csl-evt__showcase-join-btn,
.csl-landing-body .csl-evt__mockup-btn-primary,
.csl-landing-body .csl-evt__mockup-btn-icon,
.csl-landing-body .csl-evt__funnel-video,
.csl-landing-body .csl-evt__showcase-live-card,
.csl-landing-body .csl-evt__mockup-play-overlay,
.csl-landing-body .csl-evt__video-modal-close,
.csl-landing-body .csl-evt__form-close-link,
.csl-landing-body .csl-evt__monetization-video-link,
.csl-landing-body .csl-evt__video-link {
    font-family: var(--csl-font);
    -webkit-appearance: none;
    appearance: none;
}

.csl-landing-body *,
.csl-landing-body *::before,
.csl-landing-body *::after {
    box-sizing: border-box;
}
