/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0f;
    --bg-secondary: #12121a;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --text: #e8e8ed;
    --text-secondary: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.3);
    --accent: #60a5fa;
    --accent-purple: #a78bfa;
    --accent-green: #34d399;
    --accent-orange: #fb923c;
    --accent-red: #f87171;
    --gradient: linear-gradient(135deg, #60a5fa, #a78bfa);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ===== BACKGROUND ===== */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(96, 165, 250, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(167, 139, 250, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(52, 211, 153, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.bg-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== GLASS MORPHISM ===== */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== TOP BAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    z-index: 100;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-logo-img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.topbar-logo-img:hover {
    opacity: 1;
}

.topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-center {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

.nav-dot.active {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
    transform: scale(1.3);
}

.btn-fullscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-fullscreen:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text);
}



.btn-auto {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-auto:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-auto.active {
    background: rgba(96, 165, 250, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-auto svg {
    width: 14px;
    height: 14px;
}

/* ===== SLIDE ARROWS ===== */
.slide-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text);
}

.arrow-left { left: 24px; }
.arrow-right { right: 24px; }

.slide-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 25%;
    transition: width 0.3s linear;
}

/* ===== SLIDES ===== */
.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.exit-left {
    opacity: 0;
    transform: translateX(-60px);
}

.slide-content {
    width: 100%;
    max-width: 1100px;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== HERO SLIDE ===== */
.hero-slide {
    justify-content: center;
    gap: 48px;
    padding-top: 56px;
    min-height: 100vh;
}

.hero-logo-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-logo-placeholder {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.logo-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.logo-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.2));
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 56px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    text-align: center;
    letter-spacing: -1px;
}

.subtitle-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #e879a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MODULE CARDS ===== */
.hero-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.module-card {
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.module-card:hover::before {
    opacity: 1;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.module-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(96, 165, 250, 0.1);
    color: var(--accent);
}

.module-card:nth-child(2) .module-icon {
    background: rgba(167, 139, 250, 0.1);
    color: var(--accent-purple);
}

.module-card:nth-child(3) .module-icon {
    background: rgba(52, 211, 153, 0.1);
    color: var(--accent-green);
}

.module-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.module-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== SLIDE HEADER ===== */
.slide-header {
    text-align: center;
    margin-bottom: 56px;
}

.slide-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.slide-header h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PROCESS FLOW (Slide 1) ===== */
.process-flow {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step {
    padding: 20px 16px;
    text-align: center;
    min-width: 110px;
    position: relative;
}

.flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.flow-human {
    background: rgba(96, 165, 250, 0.12);
    color: var(--accent);
}

.flow-ai {
    background: rgba(167, 139, 250, 0.12);
    color: var(--accent-purple);
}

.flow-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.flow-sublabel {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
}

.highlight-step {
    border-color: rgba(96, 165, 250, 0.2) !important;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.08);
}

.flow-connector {
    display: flex;
    align-items: center;
    width: 40px;
    position: relative;
}

.flow-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
}

.flow-arrow {
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(255, 255, 255, 0.2);
}

/* ===== ORBIT (Slide 1) ===== */
.orbit-container {
    position: relative;
    width: 900px;
    height: 490px;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.orbit-ring-1 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
}

.orbit-ring-2 {
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.orbit-center-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--accent);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.1);
}

.orbit-center-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.orbit-center-sublabel {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 2px;
}

.orbit-agent {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 3;
    transition: var(--transition);
}

.orbit-agent:hover {
    background: var(--glass-hover);
}

.agent-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-purple);
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    padding: 1px 6px;
    border-radius: 4px;
}

.agent-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    white-space: nowrap;
}

.agent-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.agent-desc {
    font-size: 13px;
    color: var(--text-dim);
}

.agent-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(167, 139, 250, 0.12);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 4 rows, equal spacing. Each agent card ~50px tall, gaps equal */
/* Row positions by top of card: 0%, 33.33%, 66.66%, ~calc(100%-card) */
.agent-1 { top: 0;          left: 50%;  transform: translateX(-50%); }
.agent-4 { top: 33.33%;     right: 70%;  transform: translateY(-50%); }
.agent-2 { top: 33.33%;     left: 70%;  transform: translateY(-50%); }
.agent-5 { top: 66.66%;     right: 70%; transform: translateY(-50%); }
.agent-3 { top: 66.66%;     left: 70%;  transform: translateY(-50%); }
.agent-6 { bottom: 0;       left: 50%;  transform: translateX(-50%); }

/* Orbit ring pulse during audio */
.orbit-ring.pulsing {
    animation: orbitPulse 2s ease-in-out infinite;
    border-color: rgba(96, 165, 250, 0.25);
}

.orbit-ring-2.pulsing {
    animation-delay: 0.5s;
}

@keyframes orbitPulse {
    0%, 100% {
        border-color: rgba(96, 165, 250, 0.08);
        box-shadow: 0 0 0 rgba(96, 165, 250, 0);
    }
    50% {
        border-color: rgba(96, 165, 250, 0.3);
        box-shadow: 0 0 30px rgba(96, 165, 250, 0.08);
    }
}

/* Connection lines via pseudo-elements */
.orbit-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(167, 139, 250, 0.12);
    animation: orbitRotate 40s linear infinite;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dept-message {
    padding: 20px 28px;
    max-width: 700px;
    text-align: center;
}

.dept-message p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== INFO CARDS ===== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.info-card {
    padding: 24px;
    position: relative;
}

.info-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    opacity: 0.4;
}

.info-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== KS SLIDE (Slide 2) ===== */
.ks-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    width: 100%;
    margin-bottom: 24px;
}

.chart-area {
    padding: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-header h4 {
    font-size: 16px;
    font-weight: 500;
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.expected { background: var(--accent); }
.legend-dot.actual { background: var(--accent-green); }

.chart-body {
    position: relative;
}

.chart-body canvas {
    width: 100%;
    height: 220px;
}

.chart-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.15);
    border-radius: var(--radius-sm);
    color: var(--accent-red);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.chart-alert.visible {
    opacity: 1;
}

/* KPI Cards */
.ks-kpis {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kpi-card {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kpi-value {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.kpi-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Features row */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--accent-purple);
}

/* ===== WEATHER SLIDE (Slide 3) ===== */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 32px;
}

.weather-card {
    padding: 32px 24px;
    text-align: center;
}

.weather-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(52, 211, 153, 0.08);
    color: var(--accent-green);
}

.weather-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.weather-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.weather-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-orange);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== CUE HIGHLIGHTS ===== */
.hero-subtitle[data-cue] {
    transition: opacity 0.6s ease, transform 0.6s ease, text-shadow 0.6s ease;
}

.hero-subtitle.cue-active {
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.3), 0 0 80px rgba(167, 139, 250, 0.15);
}

.cue-logo-pulse .logo-img {
    filter: drop-shadow(0 0 24px rgba(96, 165, 250, 0.35)) drop-shadow(0 0 60px rgba(167, 139, 250, 0.15));
    transition: filter 1s ease;
}

.module-card[data-cue] {
    transition: var(--transition), box-shadow 0.5s ease, border-color 0.5s ease;
}

.module-card.cue-active {
    border-color: rgba(96, 165, 250, 0.35) !important;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.07) !important;
}

.orbit-agent.cue-active {
    border-color: rgba(167, 139, 250, 0.4) !important;
    box-shadow: 0 0 24px rgba(167, 139, 250, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3);
    background: rgba(167, 139, 250, 0.1) !important;
}

.orbit-agent.cue-active .agent-icon {
    background: rgba(167, 139, 250, 0.25);
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.2);
}

/* ===== ANIMATIONS ===== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.active .anim-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-modules {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .hero-title {
        font-size: 40px;
    }
    .process-flow {
        flex-direction: column;
    }
    .flow-connector {
        width: 1px;
        height: 24px;
        flex-direction: column;
    }
    .flow-line {
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    }
    .flow-arrow {
        border-top: 6px solid rgba(255,255,255,0.2);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: none;
        bottom: 0;
        right: auto;
    }
    .info-cards,
    .weather-grid {
        grid-template-columns: 1fr;
    }
    .ks-layout {
        grid-template-columns: 1fr;
    }
    .ks-kpis {
        flex-direction: row;
    }
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .slide-header h2 {
        font-size: 28px;
    }
    .slide-content {
        padding: 70px 20px 20px;
    }
}

@media (max-width: 600px) {
    .features-row {
        grid-template-columns: 1fr;
    }
    .ks-kpis {
        flex-direction: column;
    }
    .topbar {
        padding: 0 16px;
    }
    .slide-arrow {
        width: 36px;
        height: 36px;
    }
    .arrow-left { left: 8px; }
    .arrow-right { right: 8px; }
}
