/* ═══════════════════════════════════════════════════════════════════════════
   Ekosystem Hub Landing Page — Supplementary Stylesheet
   Classes specific to ekosystem.php
   Extends landing.css — uses var(--csl-...) custom properties
   CSS prefix: csl-eko__
   Mobile-first responsive (640px, 768px, 1024px, 1280px)
   ═══════════════════════════════════════════════════════════════════════════ */


/* ── 1. HERO ─────────────────────────────────────────────────────────────── */

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

@media (min-width: 640px) {
    .csl-hero--eko {
        padding-top: 160px;
    }
}

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

.csl-eko__hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

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

.csl-eko__hero-content {
    position: relative;
    z-index: 1;
}

/* Badge */
.csl-eko__hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(140, 210, 217, 0.2);
    color: #006670;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

/* Intro card */
.csl-eko__hero-intro-card {
    background: #F8F9FA;
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-md);
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: var(--csl-shadow-sm);
}

.csl-eko__hero-intro-card p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--csl-muted);
    line-height: 1.65;
    margin: 0;
}

/* Hero heading */
.csl-eko__hero-heading {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--csl-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

@media (min-width: 640px) {
    .csl-eko__hero-heading {
        font-size: 2.875rem;
    }
}

@media (min-width: 1024px) {
    .csl-eko__hero-heading {
        font-size: 3.25rem;
    }
}

/* Hero description */
.csl-eko__hero-desc {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--csl-muted);
    line-height: 1.7;
    margin: 0 0 32px;
}

/* CTAs */
.csl-eko__hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .csl-eko__hero-ctas {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Video link */
.csl-eko__hero-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--csl-purple);
    text-decoration: none;
    transition: opacity var(--csl-transition);
    margin-bottom: 24px;
}

.csl-eko__hero-video-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.csl-eko__hero-video-link .csl-icon {
    flex-shrink: 0;
}

/* Trust badges */
.csl-eko__hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.csl-eko__trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--csl-muted);
    box-shadow: var(--csl-shadow-sm);
}

.csl-eko__trust-icon {
    color: rgba(140, 210, 217, 0.9);
    flex-shrink: 0;
}


/* ── 2. HERO — ORBIT DIAGRAM ─────────────────────────────────────────────── */

.csl-eko__hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .csl-eko__hero-visual {
        min-height: 500px;
    }
}

.csl-eko__orbit-glow {
    position: absolute;
    inset: 0;
    background: rgba(82, 15, 125, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.csl-eko__orbit-wrap {
    position: relative;
    width: min(100%, 460px);
    aspect-ratio: 1;
    z-index: 1;
}

/* Spinning outer ring */
.csl-eko__orbit-ring--outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--csl-border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: csl-eko-spin 60s linear infinite;
}

.csl-eko__orbit-ring-inner {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1px dashed var(--csl-border);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes csl-eko-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Center core (counter-spins to stay upright) */
.csl-eko__orbit-core {
    position: absolute;
    width: 112px;
    height: 112px;
    background: var(--csl-white);
    border-radius: 50%;
    border: 4px solid var(--csl-purple);
    box-shadow: 0 8px 32px -4px rgba(82,15,125,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: csl-eko-counter-spin 60s linear infinite;
}

@keyframes csl-eko-counter-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

.csl-eko__orbit-logo {
    width: 72px;
    height: auto;
    object-fit: contain;
}

/* Orbiting nodes — positioned around the ring */
.csl-eko__orbit-node {
    position: absolute;
    width: 52px;
    height: 52px;
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-md);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-purple);
    animation: csl-eko-counter-spin 60s linear infinite;
}

/* 8 nodes at 45° increments, radius ~45% of parent */
.csl-eko__orbit-node--0 { top: calc(50% - 45% * 1   - 26px); left: calc(50% + 45% * 0   - 26px); }
.csl-eko__orbit-node--1 { top: calc(50% - 45% * 0.707 - 26px); left: calc(50% + 45% * 0.707 - 26px); }
.csl-eko__orbit-node--2 { top: calc(50% - 45% * 0   - 26px); left: calc(50% + 45% * 1   - 26px); }
.csl-eko__orbit-node--3 { top: calc(50% + 45% * 0.707 - 26px); left: calc(50% + 45% * 0.707 - 26px); }
.csl-eko__orbit-node--4 { top: calc(50% + 45% * 1   - 26px); left: calc(50% + 45% * 0   - 26px); }
.csl-eko__orbit-node--5 { top: calc(50% + 45% * 0.707 - 26px); left: calc(50% - 45% * 0.707 - 26px); }
.csl-eko__orbit-node--6 { top: calc(50% - 45% * 0   - 26px); left: calc(50% - 45% * 1   - 26px); }
.csl-eko__orbit-node--7 { top: calc(50% - 45% * 0.707 - 26px); left: calc(50% - 45% * 0.707 - 26px); }

/* Orbit video CTA button */
.csl-eko__orbit-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-md);
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--csl-purple);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: background var(--csl-transition);
    margin-top: 20px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.csl-eko__orbit-video-cta:hover {
    background: var(--csl-white);
    text-decoration: none;
}

.csl-eko__orbit-video-cta .csl-icon {
    fill: currentColor;
}


/* ── 3. BRIDGE SECTION ───────────────────────────────────────────────────── */

.csl-eko__bridge {
    background: #F8F9FA;
    text-align: center;
}

.csl-eko__bridge-inner {
    max-width: 800px;
}

.csl-eko__bridge-text {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--csl-muted);
    line-height: 1.7;
    margin: 0;
}


/* ── 4. PROBLEMS SECTION ─────────────────────────────────────────────────── */

.csl-eko__problems {
    background: var(--csl-white);
}

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

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

.csl-eko__problem-card {
    padding: 24px;
}

@media (min-width: 1024px) {
    .csl-eko__problem-card {
        padding: 32px;
    }
}

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


/* ── 5. MODULES (Z-PATTERN) ──────────────────────────────────────────────── */

.csl-eko__modules {
    background: #F8F9FA;
    border-top: 1px solid var(--csl-border);
    border-bottom: 1px solid var(--csl-border);
}

.csl-eko__modules-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

@media (min-width: 1024px) {
    .csl-eko__modules-list {
        gap: 96px;
    }
}

/* A single module row */
.csl-eko__module {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

    .csl-eko__module--reverse {
        flex-direction: row-reverse;
    }
}

.csl-eko__module-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Module meta badges */
.csl-eko__module-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.csl-eko__module-layer {
    background: var(--csl-purple);
    color: var(--csl-white);
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 999px;
}

.csl-eko__module-status {
    background: var(--csl-white);
    color: var(--csl-muted);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--csl-border);
}

.csl-eko__module-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--csl-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 16px;
}

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

.csl-eko__module-promise {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--csl-purple);
    line-height: 1.45;
    margin: 0 0 16px;
}

.csl-eko__module-desc {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--csl-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Features list */
.csl-eko__module-features {
    margin-bottom: 32px;
}

.csl-eko__module-features-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--csl-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}

.csl-eko__module-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-eko__module-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--csl-dark);
}

.csl-eko__feature-icon {
    color: rgba(140, 210, 217, 0.9);
    flex-shrink: 0;
}

/* Module footer */
.csl-eko__module-footer {
    border-top: 1px solid var(--csl-border);
    padding-top: 20px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .csl-eko__module-footer {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.csl-eko__module-for-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--csl-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px;
}

.csl-eko__module-for-val {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--csl-muted);
    margin: 0;
}

.csl-eko__module-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .csl-eko__module-actions {
        align-items: flex-end;
    }
}

.csl-eko__module-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--csl-purple);
    text-decoration: none;
    transition: color var(--csl-transition);
}

.csl-eko__module-cta:hover {
    color: #3e0b5e;
    text-decoration: none;
}

.csl-eko__module-cta .csl-icon {
    transition: transform 0.2s ease;
}

.csl-eko__module-cta:hover .csl-icon {
    transform: translateX(3px);
}

.csl-eko__module-pdf {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--csl-muted);
    text-decoration: underline;
    text-decoration-color: rgba(108,117,125,0.4);
    transition: color var(--csl-transition);
    cursor: pointer;
}

.csl-eko__module-pdf:hover {
    color: var(--csl-dark);
    text-decoration: underline;
}

/* Visual side (mockup + play overlay) */
.csl-eko__module-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.csl-eko__module-visual:hover .csl-eko__module-mockup {
    transform: scale(1.02);
    box-shadow: 0 16px 48px -8px rgba(0,0,0,0.12);
}

/* Fake mockup UI */
.csl-eko__module-mockup {
    aspect-ratio: 4 / 3;
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-lg);
    box-shadow: var(--csl-shadow-sm);
    overflow: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@media (min-width: 640px) {
    .csl-eko__module-mockup {
        padding: 24px;
    }
}

/* Chrome bar inside mockup */
.csl-eko__mockup-chrome {
    height: 32px;
    background: #F8F9FA;
    border-bottom: 1px solid var(--csl-border);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    margin: -16px -16px 16px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .csl-eko__mockup-chrome {
        margin: -24px -24px 20px;
    }
}

.csl-eko__mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--csl-border);
    display: block;
}

/* Main mockup content */
.csl-eko__mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F8F9FA;
    border-radius: var(--csl-radius-md);
    border: 1px solid var(--csl-border);
    gap: 12px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
}

.csl-eko__mockup-icon {
    color: rgba(82, 15, 125, 0.2);
    flex-shrink: 0;
}

/* Skeleton lines */
.csl-eko__mockup-line {
    height: 12px;
    background: var(--csl-border);
    border-radius: 6px;
}

.csl-eko__mockup-line--half { width: 50%; }
.csl-eko__mockup-line--third { width: 33%; height: 8px; }

/* Play button overlay */
.csl-eko__module-play-overlay {
    position: absolute;
    inset: 0 0 28px;
    background: rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--csl-radius-lg);
    transition: background 0.3s ease;
    pointer-events: none;
}

.csl-eko__module-visual:hover .csl-eko__module-play-overlay {
    background: rgba(0,0,0,0.16);
}

.csl-eko__module-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--csl-purple);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.csl-eko__module-play-btn .csl-icon {
    fill: currentColor;
    margin-left: 2px;
}

.csl-eko__module-visual:hover .csl-eko__module-play-btn {
    transform: scale(1);
}

/* Video label below mockup */
.csl-eko__module-video-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--csl-muted);
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.csl-eko__video-label-icon {
    color: var(--csl-purple);
    flex-shrink: 0;
}


/* ── 6. FLOW STEPS ───────────────────────────────────────────────────────── */

.csl-eko__flow {
    background: #F8F9FA;
    border-top: 1px solid var(--csl-border);
}

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

@media (min-width: 640px) {
    .csl-eko__flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.csl-eko__flow-step {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-lg);
    padding: 24px;
    box-shadow: var(--csl-shadow-sm);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .csl-eko__flow-step {
        padding: 32px;
    }
}

.csl-eko__flow-num {
    font-size: clamp(80px, 15vw, 120px);
    font-weight: 900;
    color: #F0F0F0;
    position: absolute;
    top: -10px;
    right: -8px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

@media (min-width: 1024px) {
    .csl-eko__flow-num {
        font-size: 120px;
        top: -16px;
        right: -12px;
    }
}

.csl-eko__flow-content {
    position: relative;
    z-index: 1;
}

.csl-eko__flow-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--csl-dark);
    margin: 0 0 10px;
}

@media (min-width: 1024px) {
    .csl-eko__flow-title {
        font-size: 1.1875rem;
    }
}

.csl-eko__flow-desc {
    font-size: 0.875rem;
    color: var(--csl-muted);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}


/* ── 7. TECH DARK SECTION ────────────────────────────────────────────────── */

.csl-eko__tech-dark {
    background: #131524;
    padding: 64px 16px;
}

@media (min-width: 1024px) {
    .csl-eko__tech-dark {
        padding: 96px 16px;
    }
}

.csl-eko__tech-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--csl-white);
    margin: 0 0 20px;
    text-align: center;
    letter-spacing: -0.01em;
}

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

.csl-eko__tech-subtitle {
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(156, 163, 175, 1);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

.csl-eko__tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.csl-eko__tech-card {
    background: #1A1D2D;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--csl-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

@media (min-width: 768px) {
    .csl-eko__tech-card {
        padding: 32px;
    }
}

.csl-eko__tech-card:hover {
    border-color: rgba(255,255,255,0.1);
}

.csl-eko__tech-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.csl-eko__tech-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--csl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(140, 210, 217, 1);
    flex-shrink: 0;
}

.csl-eko__tech-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--csl-white);
    margin: 0 0 4px;
}

.csl-eko__tech-card-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(156, 163, 175, 1);
    margin: 0;
}

.csl-eko__tech-card-desc {
    font-size: 0.875rem;
    color: rgba(156, 163, 175, 1);
    font-weight: 500;
    line-height: 1.65;
    flex: 1;
    margin: 0 0 32px;
}

.csl-eko__tech-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csl-eko__tech-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(140, 210, 217, 1);
    text-decoration: none;
    transition: color 0.2s ease;
}

.csl-eko__tech-cta:hover {
    color: var(--csl-white);
    text-decoration: none;
}

.csl-eko__tech-cta .csl-icon {
    transition: transform 0.2s ease;
}

.csl-eko__tech-cta:hover .csl-icon {
    transform: translateX(3px);
}

.csl-eko__tech-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--csl-radius-sm);
    padding: 6px 12px;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.csl-eko__tech-video-link:hover {
    color: var(--csl-white);
    text-decoration: none;
}

.csl-eko__tech-video-link .csl-icon {
    fill: currentColor;
}


/* ── 8. FAQ ──────────────────────────────────────────────────────────────── */

.csl-eko__faq {
    background: #F8F9FA;
}

.csl-eko__faq-inner {
    max-width: 800px;
}

.csl-eko__faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.csl-eko__faq-item {
    background: var(--csl-white);
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-lg);
    overflow: hidden;
    box-shadow: var(--csl-shadow-sm);
    transition: border-color 0.2s ease;
}

.csl-eko__faq-item:hover,
.csl-eko__faq-item.is-open {
    border-color: rgba(82, 15, 125, 0.3);
}

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

.csl-eko__faq-btn span {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--csl-dark);
    flex: 1;
}

@media (min-width: 640px) {
    .csl-eko__faq-btn span {
        font-size: 1rem;
    }
}

.csl-eko__faq-chevron {
    color: var(--csl-muted);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.csl-eko__faq-item.is-open .csl-eko__faq-chevron {
    transform: rotate(180deg);
}

.csl-eko__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.csl-eko__faq-answer p {
    font-size: 0.875rem;
    color: var(--csl-muted);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.csl-eko__faq-item.is-open .csl-eko__faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}


/* ── 9. BOFU CTA ─────────────────────────────────────────────────────────── */

.csl-eko__bofu {
    background: var(--csl-purple);
    position: relative;
    overflow: hidden;
    padding: 64px 16px;
    text-align: center;
}

@media (min-width: 1024px) {
    .csl-eko__bofu {
        padding: 96px 16px;
    }
}

.csl-eko__bofu-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(140, 210, 217, 1);
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(100px);
    pointer-events: none;
}

.csl-eko__bofu-glow--top {
    top: 0;
    right: 0;
    opacity: 0.3;
    transform: translate(33%, -33%);
}

.csl-eko__bofu-glow--bottom {
    bottom: 0;
    left: 0;
    opacity: 0.2;
    transform: translate(-33%, 33%);
}

.csl-eko__bofu-inner {
    position: relative;
    z-index: 1;
    max-width: 768px;
}

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

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

.csl-eko__bofu-desc {
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(233, 216, 255, 0.9);
    margin: 0 0 48px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .csl-eko__bofu-desc {
        font-size: 1.1875rem;
    }
}

.csl-eko__bofu-ctas {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .csl-eko__bofu-ctas {
        flex-direction: row;
        align-items: flex-start;
    }
}

.csl-eko__bofu-cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

@media (min-width: 640px) {
    .csl-eko__bofu-cta-col {
        width: auto;
    }
}

.csl-eko__bofu-hint {
    font-size: 0.75rem;
    color: rgba(196, 181, 253, 0.8);
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.csl-eko__bofu-pdf-link {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    transition: color 0.2s ease;
}

.csl-eko__bofu-pdf-link:hover {
    color: var(--csl-white);
    text-decoration: underline;
}


/* ── 10. DEMO MODAL MULTI-STEP ───────────────────────────────────────────── */

.csl-eko__demo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--csl-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.csl-eko__demo-scenarios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .csl-eko__demo-scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.csl-eko__demo-scenario-btn {
    text-align: left;
    padding: 14px 16px;
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--csl-dark);
    background: var(--csl-white);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.csl-eko__demo-scenario-btn:hover {
    border-color: var(--csl-purple);
    background: rgba(82, 15, 125, 0.04);
}


/* ── 11. FORMS ───────────────────────────────────────────────────────────── */

.csl-eko__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.csl-eko__form-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--csl-purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    transition: opacity 0.2s ease;
    margin-bottom: 4px;
}

.csl-eko__form-back:hover {
    opacity: 0.7;
}

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

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

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

.csl-eko__form-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--csl-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.csl-eko__form-req {
    color: #E53E3E;
}

.csl-eko__form-opt {
    font-weight: 400;
    text-transform: none;
    color: var(--csl-muted);
    font-size: 0.7rem;
}

.csl-eko__form-input,
.csl-eko__form-select,
.csl-eko__form-textarea {
    width: 100%;
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-md);
    padding: 12px 16px;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--csl-dark);
    background: var(--csl-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.csl-eko__form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

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

.csl-eko__form-textarea {
    resize: none;
    line-height: 1.6;
}

/* Radio group */
.csl-eko__radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 640px) {
    .csl-eko__radio-group {
        flex-direction: row;
    }
}

.csl-eko__radio-option {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--csl-border);
    border-radius: var(--csl-radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--csl-muted);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.csl-eko__radio-option.is-selected {
    border-color: var(--csl-purple);
    background: rgba(82, 15, 125, 0.05);
    color: var(--csl-purple);
}

.csl-eko__radio-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* Phone field */
.csl-eko__phone-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Full-width button helper */
.csl-btn--full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}


/* ── 12. SUCCESS STATES ───────────────────────────────────────────────────── */

.csl-eko__demo-success,
.csl-eko__brief-success {
    text-align: center;
    padding: 40px 16px;
}

.csl-eko__success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.csl-eko__success-check {
    color: #38A169;
}

.csl-eko__success-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--csl-dark);
    margin: 0 0 12px;
}

.csl-eko__success-desc {
    font-size: 0.875rem;
    color: var(--csl-muted);
    font-weight: 500;
    line-height: 1.65;
    max-width: 360px;
    margin: 0 auto 24px;
}


/* ── 13. VIDEO MODAL BODY ─────────────────────────────────────────────────── */

.csl-eko__video-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.csl-eko__video-context-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--csl-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.csl-eko__video-body {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a14;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.csl-eko__video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(82,15,125,0.4) 0%, rgba(140,210,217,0.2) 100%);
    opacity: 0.5;
}

.csl-eko__video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.csl-eko__video-play-icon {
    color: rgba(255,255,255,0.8);
    transition: transform 0.2s ease;
}

.csl-eko__video-body:hover .csl-eko__video-play-icon {
    transform: scale(1.1);
}

.csl-eko__video-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 24px;
    margin: 0;
}


/* ── 14. BUDDYBOSS OVERRIDES ─────────────────────────────────────────────── */

#buddypress .csl-eko__hero-heading,
#buddypress .csl-eko__bofu-title,
#buddypress .csl-eko__module-title {
    font-size: unset;
}

.bb-grid .csl-eko__tech-card,
.bb-grid .csl-eko__flow-step {
    float: none;
    width: auto;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .csl-eko__orbit-ring--outer,
    .csl-eko__orbit-core,
    .csl-eko__orbit-node {
        animation: none;
    }
}
