.ecosystem-flow-container {
    display: flex;
    gap: 3rem;
    padding: 3rem 0;
}

.flow-indicators {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.flow-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(168, 181, 160, 0.3);
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
}

.flow-indicator.active {
    background: var(--sage);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(168, 181, 160, 0.3);
}

.flow-indicator:not(.active):hover {
    background: rgba(168, 181, 160, 0.5);
    transform: scale(1.15);
}

.ecosystem-flow-content {
    flex: 1;
    position: relative;
    min-height: 200px;
}

.ecosystem-flow-content .flow-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--ivory);
    border: 1px solid rgba(168, 181, 160, 0.15);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(168, 181, 160, 0.08);
}

.ecosystem-flow-content .flow-item.active {
    opacity: 1;
    transform: translateY(0);
}

.flow-step {
    color: var(--soft-black);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-serif);
}

.flow-description {
    color: var(--warm-grey);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .ecosystem-flow-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-indicators {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .flow-indicator {
        width: 15px;
        height: 15px;
    }
    
    .ecosystem-flow-content .flow-item {
        padding: 1.5rem;
    }
    
    .flow-step {
        font-size: 1.5rem;
    }
}